blob: eac1297f3e102121f63ecff003b753f59b5cb6e3 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
Michael Landoefa037d2017-02-19 12:57:33 +02002 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
AviZi280f8012017-06-09 02:39:56 +03003 *
Michael Landoefa037d2017-02-19 12:57:33 +02004 * 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
AviZi280f8012017-06-09 02:39:56 +03007 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
Michael Landoefa037d2017-02-19 12:57:33 +020010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
AviZi280f8012017-06-09 02:39:56 +030012 * 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.
Michael Landoefa037d2017-02-19 12:57:33 +020015 */
Michael Landoefa037d2017-02-19 12:57:33 +020016import deepFreeze from 'deep-freeze';
17import mockRest from 'test-utils/MockRest.js';
Michael Landoefa037d2017-02-19 12:57:33 +020018import {storeCreator} from 'sdc-app/AppStore.js';
19import LicenseModelCreationActionHelper from 'sdc-app/onboarding/licenseModel/creation/LicenseModelCreationActionHelper.js';
20
AviZi280f8012017-06-09 02:39:56 +030021import {LicenseModelPostFactory, LicenseModelDispatchFactory} from 'test-utils/factories/licenseModel/LicenseModelFactories.js';
22
Michael Landoefa037d2017-02-19 12:57:33 +020023describe('License Model Module Tests', function () {
24 it('Add License Model', () => {
25 const store = storeCreator();
26 deepFreeze(store.getState());
27
AviZi280f8012017-06-09 02:39:56 +030028 const licenseModelPostRequest = LicenseModelPostFactory.build();
Michael Landoefa037d2017-02-19 12:57:33 +020029
AviZi280f8012017-06-09 02:39:56 +030030 const licenseModelToAdd = LicenseModelDispatchFactory.build();
Michael Landoefa037d2017-02-19 12:57:33 +020031
32 const licenseModelIdFromResponse = 'ADDED_ID';
AviZi280f8012017-06-09 02:39:56 +030033
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);
Michael Landoefa037d2017-02-19 12:57:33 +020038 return {
39 value: licenseModelIdFromResponse
40 };
41 });
42
43 return LicenseModelCreationActionHelper.createLicenseModel(store.dispatch, {
44 licenseModel: licenseModelToAdd
AviZi280f8012017-06-09 02:39:56 +030045 }).then((response) => {
46 expect(response.value).toEqual(licenseModelIdFromResponse);
Michael Landoefa037d2017-02-19 12:57:33 +020047 });
48 });
49});