Add collaboration feature
[sdc.git] / openecomp-ui / test-utils / factories / softwareProduct / SoftwareProductEditorFactories.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 IdMixin from 'test-utils/factories/mixins/IdMixin.js';
18 import randomstring from 'randomstring';
19
20 Factory.define('VSPBaseFactory')
21         .attrs(
22         {
23                 name: 'VSP2',
24                 description: 'sdsd',
25                 category: 'resourceNewCategory.application l4+',
26                 subCategory: 'resourceNewCategory.application l4+.media servers',
27                 vendorName: 'V1 ',
28                 vendorId: () => randomstring.generate(33),
29                 licensingVersion: {id: '1', label: '1'},
30                 licensingData: {},
31                 icon: 'icon',
32                 version: {id: '123'}
33         }
34 );
35
36 Factory.define('LicensingDataMixin')
37         .attrs({
38                 licensingData: {
39                         licenseAgreement: () => randomstring.generate(33),
40                         featureGroups: [
41                                 () => randomstring.generate(33)
42                         ]
43                 }
44         });
45
46 export const VSPEditorFactory = new Factory()
47         .extend('VSPBaseFactory')
48         .extend(IdMixin);
49
50 export const VSPEditorPostFactory = new Factory()
51         .extend('VSPBaseFactory');
52
53 export const VSPEditorFactoryWithLicensingData = new Factory()
54         .extend('VSPBaseFactory')
55         .extend('LicensingDataMixin')
56         .extend(IdMixin);
57
58 export const VSPEditorPostFactoryWithLicensingData = new Factory()
59         .extend('VSPBaseFactory')
60         .extend('LicensingDataMixin');