blob: 716eb15559ef3e20eb6dca76826341f3e073a37a [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
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 */
16import { Factory } from 'rosie';
17import { selectedButton } from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js';
18import IdMixin from 'test-utils/factories/mixins/IdMixin.js';
19import randomstring from 'randomstring';
20import VersionControllerUtilsFactory from 'test-utils/factories/softwareProduct/VersionControllerUtilsFactory.js';
21
22Factory.define('LicenseModelBaseFactory')
23 .attrs({
24 vendorName: 'vlm1',
25 description: 'string',
26 iconRef: 'icon'
27 });
28
29export const LicenseModelCreationFactory = new Factory()
30 .attrs({
31 data: {
32 vendorName: () => randomstring.generate(),
33 description: () => randomstring.generate()
34 }
35 });
36
37export const LicenseModelPostFactory = new Factory()
38 .extend('LicenseModelBaseFactory');
39
40export const LicenseModelDispatchFactory = new Factory()
41 .extend('LicenseModelBaseFactory');
42
43export const LicenseModelStoreFactory = new Factory()
44 .extend('LicenseModelBaseFactory')
45 .extend(IdMixin);
46
47
48export const FinalizedLicenseModelFactory = new Factory()
49 .extend(IdMixin)
50 .attrs({
51 vendorName: randomstring.generate(),
52 description: randomstring.generate(),
53 iconRef: 'iconRef_lBpEgzhuiY1',
54 version: {id: '1.0', label: '1.0'},
55 status: 'Final',
56 viewableVersion: [{id: '1.0', label: '1.0'}],
57 finalVersions: [{id: '1.0', label: '1.0'}]
58 });
59
60export const LicenseModelOverviewFactory = new Factory()
61.attrs({
62 licenseModelEditor: {
63 data: {
64 ...Factory.attributes('LicenseModelBaseFactory'),
65 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
66 ...VersionControllerUtilsFactory.build()
67 }
68 },
69 entitlementPool: {},
70 licenseAgreement: {},
71 featureGroup: {},
72 licenseKeyGroup: {},
73 licenseModelOverview: {
74 descriptionEditor : { data : { description : undefined}},
75 selectedTab: selectedButton.VLM_LIST_VIEW
76 }
77});