[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / test / licenseModel / test.js
1 /*!
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 import deepFreeze from 'deep-freeze';
17 import mockRest from 'test-utils/MockRest.js';
18 import {storeCreator} from 'sdc-app/AppStore.js';
19 import LicenseModelCreationActionHelper from 'sdc-app/onboarding/licenseModel/creation/LicenseModelCreationActionHelper.js';
20
21 import {LicenseModelPostFactory, LicenseModelDispatchFactory} from 'test-utils/factories/licenseModel/LicenseModelFactories.js';
22
23 describe('License Model Module Tests', function () {
24         it('Add License Model', () => {
25                 const store = storeCreator();
26                 deepFreeze(store.getState());
27
28                 const licenseModelPostRequest = LicenseModelPostFactory.build();
29
30                 const licenseModelToAdd = LicenseModelDispatchFactory.build();
31
32                 const licenseModelIdFromResponse = 'ADDED_ID';
33                 
34                 mockRest.addHandler('post', ({options, data, baseUrl}) => {
35                         expect(baseUrl).toEqual('/onboarding-api/v1.0/vendor-license-models/');
36                         expect(data).toEqual(licenseModelPostRequest);
37                         expect(options).toEqual(undefined);
38                         return {
39                                 value: licenseModelIdFromResponse
40                         };
41                 });
42
43                 return LicenseModelCreationActionHelper.createLicenseModel(store.dispatch, {
44                         licenseModel: licenseModelToAdd
45                 }).then((response) => {
46                         expect(response.value).toEqual(licenseModelIdFromResponse);
47                 });
48         });
49 });