X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fapp%2FvnfSearch%2FVnfSearchOrchestratedStatusVisualization.test.js;fp=src%2Fapp%2FvnfSearch%2FVnfSearchOrchestratedStatusVisualization.test.js;h=0000000000000000000000000000000000000000;hb=75597ac2b51ba62bee33f72a7b55a549cf43a16f;hp=1257f3a1600790ba944fc34744891791caa33e86;hpb=4cbfb73eebc578c62ff38c82f969782e229ce969;p=aai%2Fsparky-fe.git diff --git a/src/app/vnfSearch/VnfSearchOrchestratedStatusVisualization.test.js b/src/app/vnfSearch/VnfSearchOrchestratedStatusVisualization.test.js deleted file mode 100644 index 1257f3a..0000000 --- a/src/app/vnfSearch/VnfSearchOrchestratedStatusVisualization.test.js +++ /dev/null @@ -1,154 +0,0 @@ -import React from 'react'; -import { shallow, mount } from 'enzyme'; -import {Provider} from 'react-redux' -import configureStore from 'redux-mock-store'; -import { BarChart } from 'recharts'; - -import ConnectedVnfSearchOrchStatusVisualizations, - { VnfSearchOrchStatusVisualizations } from './VnfSearchOrchestratedStatusVisualization.jsx'; -import { CHART_ORCH_STATUS } from './VnfSearchConstants.js'; -import Spinner from 'utils/SpinnerContainer.jsx'; - -describe('VnfSearchOrchStatusVisualizations - Shallow render of component', () => { - let wrapper; - const processedOrchStatusCountChartDataProp = { - values: [ - {x: 'col 1', y: 3}, - {x: 'col 2', y: 7}, - {x: 'col 3', y: 2} - ] - }; - - beforeEach( () => { - wrapper = shallow( - - ); - }) - - it('Render basic component', () => { - expect(wrapper.length).toEqual(1); - expect(wrapper.hasClass('visualizations')).toEqual(true); - }); - - it('Verify Spinner is present but not visible', () => { - expect(wrapper.find(Spinner)).toHaveLength(1); - expect(wrapper.find(Spinner).props().loading).toEqual(false); - }); - - it('Verify BarChart is displayed', () => { - expect(wrapper.find(BarChart)).toHaveLength(1); - expect(wrapper.find(BarChart).props().data).toEqual(processedOrchStatusCountChartDataProp.values); - }); -}) - -describe('VnfSearchOrchStatusVisualizations - Shallow render of component with no chart data', () => { - let wrapper; - const processedOrchStatusCountChartDataProp = { - values: null - }; - - beforeEach( () => { - wrapper = shallow( - - ); - }) - - it('Visualization graph hidden', () => { - expect(wrapper.length).toEqual(1); - expect(['visualizations', 'hidden'].every(className => wrapper.hasClass(className))).toEqual(true); - }); -}) - -describe('VnfSearchOrchStatusVisualizations - Shallow render of component with busy feedback', () => { - let wrapper; - const processedOrchStatusCountChartDataProp = { - values: [ - {x: 'col 1', y: 3}, - {x: 'col 2', y: 7}, - {x: 'col 3', y: 2} - ] - }; - - beforeEach( () => { - wrapper = shallow( - - ); - }) - - it('Render basic component', () => { - expect(wrapper.length).toEqual(1); - expect(wrapper.hasClass('visualizations')).toEqual(true); - }); - - it('Verify Spinner is present and visible', () => { - expect(wrapper.find(Spinner)).toHaveLength(1); - expect(wrapper.find(Spinner).props().loading).toEqual(true); - }); - - it('Verify BarChart is displayed', () => { - expect(wrapper.find(BarChart)).toHaveLength(1); - expect(wrapper.find(BarChart).props().data).toEqual(processedOrchStatusCountChartDataProp.values); - }); -}) - -describe('VnfSearchOrchStatusVisualizations - Render React Component (wrapped in )', () => { - const initialState = { - vnfSearch: { - processedOrchStatusCountChartData: { - values: [ - {x: 'col 1', y: 3}, - {x: 'col 2', y: 7}, - {x: 'col 3', y: 2} - ] - }, - enableBusyFeedback: false - } - }; - const mockStore = configureStore(); - let store, wrapper; - - beforeEach( () => { - store = mockStore(initialState); - wrapper = mount(); - }) - - it('Render the connected component', () => { - expect(wrapper.find(ConnectedVnfSearchOrchStatusVisualizations).length).toEqual(1); - }); - - it('Validate props from store', () => { - expect(wrapper.find(VnfSearchOrchStatusVisualizations).props().enableBusyFeedback).toEqual(initialState.vnfSearch.enableBusyFeedback); - expect(wrapper.find(VnfSearchOrchStatusVisualizations).props().processedOrchStatusCountChartData).toEqual(initialState.vnfSearch.processedOrchStatusCountChartData); - }); -}) - -describe('VnfSearchOrchStatusVisualizations - Render React Component (wrapped in ) with default props', () => { - const initialState = { - vnfSearch: {} - }; - const mockStore = configureStore(); - let store, wrapper; - - beforeEach( () => { - store = mockStore(initialState); - wrapper = mount(); - }) - - it('Render the connected component', () => { - expect(wrapper.find(ConnectedVnfSearchOrchStatusVisualizations).length).toEqual(1); - }); - - it('Validate default props loaded', () => { - expect(wrapper.find(VnfSearchOrchStatusVisualizations).props().enableBusyFeedback).toEqual(false); - expect(wrapper.find(VnfSearchOrchStatusVisualizations).props().processedOrchStatusCountChartData).toEqual(CHART_ORCH_STATUS.emptyData); - }); -})