diff options
author | Adam Wudzinski <adam.wudzinski@nokia.com> | 2019-03-26 16:47:06 +0100 |
---|---|---|
committer | awudzins <adam.wudzinski@nokia.com> | 2019-03-26 16:47:06 +0100 |
commit | b0f2f345cc2d1cc3812ad8a06fc1898daf5842d0 (patch) | |
tree | e6022e92e026a02912548e313ff2a02b5c27ddec /test/vnfSearch/VnfSearchTotalCountVisualization.test.js | |
parent | b2c7546f9027099161aeaf5791f1d0f3a52b92d2 (diff) |
Remove unused code
Remove unsed code from generic-components and change tests directory structure to reflect src structure
Change-Id: Iada2efb0f7cfb05557eb7cd709b8a0ed75976b03
Issue-ID: AAI-1618
Signed-off-by: awudzins <adam.wudzinski@nokia.com>
Diffstat (limited to 'test/vnfSearch/VnfSearchTotalCountVisualization.test.js')
-rw-r--r-- | test/vnfSearch/VnfSearchTotalCountVisualization.test.js | 131 |
1 files changed, 0 insertions, 131 deletions
diff --git a/test/vnfSearch/VnfSearchTotalCountVisualization.test.js b/test/vnfSearch/VnfSearchTotalCountVisualization.test.js deleted file mode 100644 index a397ff2..0000000 --- a/test/vnfSearch/VnfSearchTotalCountVisualization.test.js +++ /dev/null @@ -1,131 +0,0 @@ -import React from 'react'; -import { shallow, mount } from 'enzyme'; -import {Provider} from 'react-redux' -import configureStore from 'redux-mock-store'; - -import ConnectedVnfSearchTotalCountVisualization, - { VnfSearchTotalCountVisualization } from 'app/vnfSearch/VnfSearchTotalCountVisualization.jsx'; -import { TOTAL_VNF_COUNT } from 'app/vnfSearch/VnfSearchConstants.js'; -import Spinner from 'utils/SpinnerContainer'; - -describe('VnfSearchTotalCountVisualization - Shallow render of component', () => { - let wrapper; - const countProp = 25; - - beforeEach( () => { - wrapper = shallow( - <VnfSearchTotalCountVisualization - enableBusyFeedback={false} - count={countProp} - /> - ); - }) - - 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 total count is displayed', () => { - expect(wrapper.contains(<span>{countProp}</span>)).toBe(true); - }); -}) - -describe('VnfSearchTotalCountVisualization - Shallow render of component with no chart data', () => { - let wrapper; - const countProp = null; - - beforeEach( () => { - wrapper = shallow( - <VnfSearchTotalCountVisualization - enableBusyFeedback={false} - count={countProp} - /> - ); - }) - - it('Visualization graph hidden', () => { - expect(wrapper.length).toEqual(1); - expect(['visualizations', 'hidden'].every(className => wrapper.hasClass(className))).toEqual(true); - }); -}) - -describe('VnfSearchTotalCountVisualization - Shallow render of component with busy feedback', () => { - let wrapper; - const countProp = 25; - - beforeEach( () => { - wrapper = shallow( - <VnfSearchTotalCountVisualization - enableBusyFeedback={true} - count={countProp} - /> - ); - }) - - 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 total count is displayed', () => { - expect(wrapper.contains(<span>{countProp}</span>)).toBe(true); - }); -}) - -describe('VnfSearchTotalCountVisualization - Render React Component (wrapped in <Provider>)', () => { - const initialState = { - vnfSearch: { - count: 25, - enableBusyFeedback: false - } - }; - const mockStore = configureStore(); - let store, wrapper; - - beforeEach( () => { - store = mockStore(initialState); - wrapper = mount(<Provider store={store}><ConnectedVnfSearchTotalCountVisualization /></Provider>); - }) - - it('Render the connected component', () => { - expect(wrapper.find(ConnectedVnfSearchTotalCountVisualization).length).toEqual(1); - }); - - it('Validate props from store', () => { - expect(wrapper.find(VnfSearchTotalCountVisualization).props().enableBusyFeedback).toEqual(initialState.vnfSearch.enableBusyFeedback); - expect(wrapper.find(VnfSearchTotalCountVisualization).props().count).toEqual(initialState.vnfSearch.count); - }); -}) - -describe('VnfSearchTotalCountVisualization - Render React Component (wrapped in <Provider>) with default props', () => { - const initialState = { - vnfSearch: {} - }; - const mockStore = configureStore(); - let store, wrapper; - - beforeEach( () => { - store = mockStore(initialState); - wrapper = mount(<Provider store={store}><ConnectedVnfSearchTotalCountVisualization /></Provider>); - }) - - it('Render the connected component', () => { - expect(wrapper.find(ConnectedVnfSearchTotalCountVisualization).length).toEqual(1); - }); - - it('Validate default props loaded', () => { - expect(wrapper.find(VnfSearchTotalCountVisualization).props().enableBusyFeedback).toEqual(false); - expect(wrapper.find(VnfSearchTotalCountVisualization).props().count).toEqual(TOTAL_VNF_COUNT.emptyValue); - }); -}) |