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('EntitlementPoolBaseFactory').attrs({ |
| 20 | name: 'EntitlementPoolName', |
| 21 | description: 'description' |
| 22 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 23 | |
| 24 | Factory.define('EntitlementPoolExtendedBaseFactory') |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 25 | .extend('EntitlementPoolBaseFactory') |
| 26 | .attrs({ |
| 27 | manufacturerReferenceNumber: '1231322', |
| 28 | thresholdValue: 76, |
| 29 | thresholdUnits: '%', |
| 30 | increments: 'string', |
Ben David, Elad (eb7504) | ec7da6a | 2020-03-17 18:12:17 +0200 | [diff] [blame] | 31 | type: 'Universal', |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 32 | startDate: new Date().getTime(), |
| 33 | expiryDate: new Date().getTime() |
| 34 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 35 | |
| 36 | export const EntitlementPoolListItemFactory = new Factory() |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 37 | .extend('EntitlementPoolBaseFactory') |
| 38 | .attrs({ |
| 39 | id: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 40 | versionUUID: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 41 | itemType: overviewEditorHeaders.ENTITLEMENT_POOL |
| 42 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 43 | |
| 44 | export const EntitlementPoolStoreFactory = new Factory() |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 45 | .extend('EntitlementPoolExtendedBaseFactory') |
| 46 | .attrs({ |
| 47 | id: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 48 | referencingFeatureGroups: [] |
| 49 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 50 | |
| 51 | export const EntitlementPoolDataListFactory = new Factory() |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 52 | .extend('EntitlementPoolExtendedBaseFactory') |
| 53 | .attrs({ |
| 54 | id: () => Math.floor(Math.random() * (1000 - 1) + 1), |
| 55 | referencingFeatureGroups: [], |
| 56 | itemType: overviewEditorHeaders.ENTITLEMENT_POOL |
| 57 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 58 | |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 59 | export const EntitlementPoolPostFactory = new Factory().extend( |
| 60 | 'EntitlementPoolExtendedBaseFactory' |
| 61 | ); |