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