summaryrefslogtreecommitdiffstats
path: root/test/configurableViews
diff options
context:
space:
mode:
authorAdam Wudzinski <adam.wudzinski@nokia.com>2019-03-26 16:47:06 +0100
committerawudzins <adam.wudzinski@nokia.com>2019-03-26 16:47:06 +0100
commitb0f2f345cc2d1cc3812ad8a06fc1898daf5842d0 (patch)
treee6022e92e026a02912548e313ff2a02b5c27ddec /test/configurableViews
parentb2c7546f9027099161aeaf5791f1d0f3a52b92d2 (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/configurableViews')
-rw-r--r--test/configurableViews/ConfigurableViewActions.test.js208
-rw-r--r--test/configurableViews/ConfigurableViewReducer.test.js54
2 files changed, 0 insertions, 262 deletions
diff --git a/test/configurableViews/ConfigurableViewActions.test.js b/test/configurableViews/ConfigurableViewActions.test.js
deleted file mode 100644
index 9d7bc9e..0000000
--- a/test/configurableViews/ConfigurableViewActions.test.js
+++ /dev/null
@@ -1,208 +0,0 @@
-import configureStore from 'redux-mock-store';
-import thunk from 'redux-thunk'
-import fetchMock from 'fetch-mock';
-import {
- configurableViewsActionTypes
-} from 'app/configurableViews/ConfigurableViewConstants.js';
-import {
- newCustomComponentsEvent,
- setCustomRoutes,
- getConfigurableViewConfigs
-} from 'app/configurableViews/ConfigurableViewActions.js'
-
-
-describe('ConfigurableViewActionTests', () => {
- const sampleConfig = {
- "id": "aggregateReport",
- "title": "Aggregate Report",
- "iconURL": "resources/images/sampleAggReportIcon.svg",
- "iconHoverURL": "resources/images/sampleAggReportIconHover.svg",
- "viewType": "ConfigurableCardView",
- "layout": {
- "draggable": true,
- "resizable": true,
- "rowHeight": 100,
- "cardMargin": [
- 20,
- 20
- ],
- "cardPadding": [
- 20,
- 20
- ],
- "breakpoints": [
- {
- "id": "lg",
- "col": 12,
- "width": 1400
- },
- {
- "id": "md",
- "col": 8,
- "width": 1200
- },
- {
- "id": "sm",
- "col": 6,
- "width": 1024
- }
- ]
- },
- "components": [
- {
- "id": "visualization1",
- "title": "Total VNFs",
- "queryData": {
- "eventId": "visualization1",
- "api": "/get-component-data",
- "method": "POST",
- "headers": {
- "accept": "application/json"
- },
- "componentDataDescriptor": {
- "index": "aggregate_generic-vnf_index",
- "queryType": "aggregation",
- "query": {
- "filter": {},
- "queries": [],
- "aggregations": [
- {
- "name": "prov-status",
- "aggregation": {
- "group-by": {
- "field": "prov-status",
- "size": 0
- }
- }
- },
- {
- "name": "orchestration-status",
- "aggregation": {
- "group-by": {
- "field": "orchestration-status",
- "size": 0
- }
- }
- },
- {
- "name": "nf-type",
- "aggregation": {
- "group-by": {
- "field": "nf-type",
- "size": 0
- }
- }
- },
- {
- "name": "nf-role",
- "aggregation": {
- "group-by": {
- "field": "nf-role",
- "size": 0
- }
- }
- }
- ]
- },
- "responseTransformation": {
- "type": "count",
- "spec": {
- "countType": "total",
- "countResponseLabel": "display"
- }
- }
- }
- },
- "containerData": {
- "containerType": "NetworkQueryCard",
- "visualizationType": "text",
- "visualizationProp": {
- "display": "",
- "style": {
- "textAlign": "center",
- "fontSize": "50px",
- "fontWeight": "bold",
- "paddingTop": "50px"
- }
- },
- "breakpoints": {
- "lg": {
- "w": 2,
- "h": 2,
- "x": 0,
- "y": 0
- },
- "md": {
- "w": 2,
- "h": 2,
- "x": 0,
- "y": 0
- },
- "sm": {
- "w": 6,
- "h": 2,
- "x": 0,
- "y": 0
- }
- }
- }
- }
- ]
- };
-
- it('newCustomComponentsEvent', () => {
- const components = [
- {
- compId: 'someId',
- compName: 'Some Name'
- }
- ];
- const middlewares = [thunk];
- const mockStore = configureStore(middlewares);
- const store = mockStore({});
- store.dispatch(newCustomComponentsEvent(components));
- const actions = store.getActions();
- expect(actions).toEqual([{
- type: configurableViewsActionTypes.CUSTOM_COMPONENTS_RECEIVED,
- data: components
- }]);
- });
-
- it('setCustomRoutes', () => {
- const routes = [
- {
- routeName: 'Some Custom Route',
- path: 'some/route/path'
- }
- ];
- const middlewares = [thunk];
- const mockStore = configureStore(middlewares);
- const store = mockStore({});
- store.dispatch(setCustomRoutes(routes));
- const actions = store.getActions();
- expect(actions).toEqual([{
- type: configurableViewsActionTypes.CUSTOM_ROUTES,
- data: routes
- }]);
- });
-
- it('getConfigurableViewConfigs', () => {
- const middlewares = [thunk];
- const mockStore = configureStore(middlewares);
- const store = mockStore({});
- const expectedActions = [
- {
- type: configurableViewsActionTypes.CONFIGURABLE_VIEWS_CONFIG_RECEIVED,
- data: sampleConfig
- }
- ];
- fetchMock.mock('*', sampleConfig);
-
- return store.dispatch(getConfigurableViewConfigs())
- .then( () => {
- const actions = store.getActions();
- expect(actions).toEqual(expectedActions);
- fetchMock.restore();
- });
- });
-})
diff --git a/test/configurableViews/ConfigurableViewReducer.test.js b/test/configurableViews/ConfigurableViewReducer.test.js
deleted file mode 100644
index 0c5c46e..0000000
--- a/test/configurableViews/ConfigurableViewReducer.test.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import {
- configurableViewsActionTypes
-} from 'app/configurableViews/ConfigurableViewConstants.js';
-import ConfigurableViewReducer from 'app/configurableViews/ConfigurableViewReducer.js'
-describe('ConfigurableViewsReducerTests', () => {
- it('Action Type: CONFIGURABLE_VIEWS_CONFIG_RECEIVED', () => {
- const data = {
- viewId: 'someViewId',
- viewName: 'Some View Name',
- viewRoute: 'some/view/route'
- };
- const action = {
- type: configurableViewsActionTypes.CONFIGURABLE_VIEWS_CONFIG_RECEIVED,
- data: data
- };
- let state = {};
- state = ConfigurableViewReducer(state, action);
- expect(state).toEqual({
- configurableViewsConfig: data
- });
- });
-
- it('Action Type: CUSTOM_COMPONENTS_RECEIVED', () => {
- const data = {
- componentName: 'someComponentName',
- componentData: {
- blah: 'blah',
- filler: 'filler'
- }
- };
- const action = {
- type: configurableViewsActionTypes.CUSTOM_COMPONENTS_RECEIVED,
- data: data
- };
- let state = {};
- state = ConfigurableViewReducer(state, action);
- expect(state).toEqual({
- customComponents: data
- });
- });
-
- it('Action Type: CUSTOM_ROUTES', () => {
- const data = 'some/custom/route';
- const action = {
- type: configurableViewsActionTypes.CUSTOM_ROUTES,
- data: data
- };
- let state = {};
- state = ConfigurableViewReducer(state, action);
- expect(state).toEqual({
- customRoutes: data
- });
- });
-})