AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 2 | * Copyright © 2016-2018 European Support Limited |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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 | */ |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 16 | import { Factory } from 'rosie'; |
| 17 | import { overviewEditorHeaders } from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 18 | |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 19 | Factory.define('LicenseKeyGroupBaseFactory').attrs({ |
| 20 | manufacturerReferenceNumber: '1231322', |
| 21 | name: 'License Key Group', |
| 22 | description: 'wewe', |
| 23 | type: 'Unique' |
| 24 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 25 | |
| 26 | export const LicenseKeyGroupListItemFactory = new Factory() |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 27 | .extend('LicenseKeyGroupBaseFactory') |
| 28 | .attrs({ |
| 29 | id: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 30 | versionUUID: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 31 | itemType: overviewEditorHeaders.LICENSE_KEY_GROUP |
| 32 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 33 | |
| 34 | export const LicenseKeyGroupStoreFactory = new Factory() |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 35 | .extend('LicenseKeyGroupBaseFactory') |
| 36 | .attrs({ |
| 37 | id: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 38 | referencingFeatureGroups: [] |
| 39 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 40 | |
| 41 | export const LicenseKeyGroupDataListFactory = new Factory() |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 42 | .extend('LicenseKeyGroupBaseFactory') |
| 43 | .attrs({ |
| 44 | id: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 45 | referencingFeatureGroups: [], |
| 46 | itemType: overviewEditorHeaders.LICENSE_KEY_GROUP |
| 47 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 48 | |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 49 | export const LicenseKeyGroupPostFactory = new Factory().extend( |
| 50 | 'LicenseKeyGroupBaseFactory' |
| 51 | ); |