blob: 7cda105ff767cfe212a7e558a551eac1571e81af [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';
AviZi280f8012017-06-09 02:39:56 +030020
21Factory.define('LicenseModelBaseFactory')
22 .attrs({
23 vendorName: 'vlm1',
24 description: 'string',
25 iconRef: 'icon'
26 });
27
28export const LicenseModelCreationFactory = new Factory()
29 .attrs({
30 data: {
talig8e9c0652017-12-20 14:30:43 +020031 name: () => randomstring.generate(),
AviZi280f8012017-06-09 02:39:56 +030032 description: () => randomstring.generate()
33 }
34 });
35
36export const LicenseModelPostFactory = new Factory()
37 .extend('LicenseModelBaseFactory');
38
39export const LicenseModelDispatchFactory = new Factory()
40 .extend('LicenseModelBaseFactory');
41
42export const LicenseModelStoreFactory = new Factory()
43 .extend('LicenseModelBaseFactory')
44 .extend(IdMixin);
45
46
47export const FinalizedLicenseModelFactory = new Factory()
48 .extend(IdMixin)
49 .attrs({
talig8e9c0652017-12-20 14:30:43 +020050 name: randomstring.generate(),
51 description: randomstring.generate()
AviZi280f8012017-06-09 02:39:56 +030052 });
53
54export const LicenseModelOverviewFactory = new Factory()
55.attrs({
56 licenseModelEditor: {
57 data: {
58 ...Factory.attributes('LicenseModelBaseFactory'),
talig8e9c0652017-12-20 14:30:43 +020059 id: () => Math.floor(Math.random() * 1000 + 1),
60 version: {
61 id: Math.floor(Math.random() * 1000 + 1)
62 }
AviZi280f8012017-06-09 02:39:56 +030063 }
64 },
65 entitlementPool: {},
66 licenseAgreement: {},
67 featureGroup: {},
68 licenseKeyGroup: {},
69 licenseModelOverview: {
70 descriptionEditor : { data : { description : undefined}},
71 selectedTab: selectedButton.VLM_LIST_VIEW
72 }
73});