b2131ceed5587be39732f528f70cf3c46dad86bd
[sdc.git] / openecomp-ui / test / onboard / test.js
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 import { storeCreator } from 'sdc-app/AppStore.js';
17 import { OnboardStoreFactory } from 'test-utils/factories/onboard/OnboardFactories.js';
18 import OnboardActionHelper from 'sdc-app/onboarding/onboard/OnboardActionHelper.js';
19 import OnboardingCatalogActionHelper from 'sdc-app/onboarding/onboard/onboardingCatalog/OnboardingCatalogActionHelper.js';
20 import { tabsMapping as onboardTabsMapping } from 'sdc-app/onboarding/onboard/OnboardConstants.js';
21 import { tabsMapping as onboardCatalogTabsMapping } from 'sdc-app/onboarding/onboard/onboardingCatalog/OnboardingCatalogConstants.js';
22 import { FilterFactory } from 'test-utils/factories/onboard/FilterFactories.js';
23 import mockRest from 'test-utils/MockRest.js';
24 import {
25     itemStatus,
26     versionStatus
27 } from 'sdc-app/common/helpers/ItemsHelperConstants.js';
28
29 describe('Onboard Module Tests', () => {
30     it('should return default state', () => {
31         const store = storeCreator();
32         const expectedStore = OnboardStoreFactory.build();
33         expect(store.getState().onboard).toEqual(expectedStore);
34     });
35
36     it('should change active tab to Catalog', () => {
37         const store = storeCreator();
38         const expectedStore = OnboardStoreFactory.build({
39             activeTab: onboardTabsMapping.CATALOG,
40             filter: FilterFactory.build({ versionStatus: 'Certified' })
41         });
42
43         mockRest.addHandler('fetch', ({ data, options, baseUrl }) => {
44             expect(baseUrl).toEqual(
45                 `/onboarding-api/v1.0/items?&itemStatus=${
46                     itemStatus.ACTIVE
47                 }&versionStatus=${versionStatus.CERTIFIED}`
48             );
49             expect(data).toEqual(undefined);
50             expect(options).toEqual(undefined);
51             return { results: [] };
52         });
53
54         OnboardActionHelper.changeActiveTab(
55             store.dispatch,
56             onboardTabsMapping.CATALOG
57         );
58         expect(store.getState().onboard).toEqual(expectedStore);
59     });
60
61     it('should change searchValue', () => {
62         const store = storeCreator();
63         const expectedStore = OnboardStoreFactory.build({
64             searchValue: 'hello'
65         });
66         OnboardActionHelper.changeSearchValue(store.dispatch, 'hello');
67         expect(store.getState().onboard).toEqual(expectedStore);
68     });
69
70     it('should clear searchValue', () => {
71         const store = storeCreator();
72         const expectedStore = OnboardStoreFactory.build();
73         OnboardActionHelper.changeSearchValue(store.dispatch, 'hello');
74         OnboardActionHelper.clearSearchValue(store.dispatch);
75         expect(store.getState().onboard).toEqual(expectedStore);
76     });
77
78     it('should reset store', () => {
79         const store = storeCreator();
80         const expectedStore = OnboardStoreFactory.build();
81         OnboardActionHelper.changeSearchValue(store.dispatch, 'hello');
82
83         mockRest.addHandler('fetch', ({ data, options, baseUrl }) => {
84             expect(baseUrl).toEqual(
85                 `/onboarding-api/v1.0/items?&itemStatus=${
86                     itemStatus.ACTIVE
87                 }&versionStatus=${versionStatus.CERTIFIED}`
88             );
89             expect(data).toEqual(undefined);
90             expect(options).toEqual(undefined);
91             return { results: [] };
92         });
93
94         OnboardActionHelper.changeActiveTab(
95             store.dispatch,
96             onboardTabsMapping.CATALOG
97         );
98         OnboardingCatalogActionHelper.changeActiveTab(
99             store.dispatch,
100             onboardCatalogTabsMapping.ACTIVE
101         );
102
103         OnboardActionHelper.resetOnboardStore(store.dispatch, 'hello');
104         expect(store.getState().onboard).toEqual(expectedStore);
105     });
106 });