[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / test-utils / factories / licenseModel / LicenseModelFactories.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 { Factory } from 'rosie';
17 import { selectedButton } from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js';
18 import IdMixin from 'test-utils/factories/mixins/IdMixin.js';
19 import randomstring from 'randomstring';
20 import VersionControllerUtilsFactory from 'test-utils/factories/softwareProduct/VersionControllerUtilsFactory.js';
21
22 Factory.define('LicenseModelBaseFactory')
23         .attrs({
24                 vendorName: 'vlm1',
25                 description: 'string',
26                 iconRef: 'icon'
27         });
28
29 export const LicenseModelCreationFactory = new Factory()
30         .attrs({
31                 data: {
32                         vendorName: () => randomstring.generate(),
33                         description: () => randomstring.generate()
34                 }
35         });
36
37 export const LicenseModelPostFactory = new Factory()
38         .extend('LicenseModelBaseFactory');
39
40 export const LicenseModelDispatchFactory = new Factory()
41         .extend('LicenseModelBaseFactory');
42
43 export const LicenseModelStoreFactory = new Factory()
44         .extend('LicenseModelBaseFactory')
45         .extend(IdMixin);
46
47
48 export 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
60 export 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 });