blob: 11422b4d18a04210c90ddef772d257f5bc6342ac [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
svishnev8f133302018-08-06 23:08:39 +03002 * Copyright © 2016-2018 European Support Limited
AviZi280f8012017-06-09 02:39:56 +03003 *
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 */
svishnev8f133302018-08-06 23:08:39 +030016import { Factory } from 'rosie';
17import { overviewEditorHeaders } from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js';
AviZi280f8012017-06-09 02:39:56 +030018
svishnev8f133302018-08-06 23:08:39 +030019Factory.define('EntitlementPoolBaseFactory').attrs({
20 name: 'EntitlementPoolName',
21 description: 'description'
22});
AviZi280f8012017-06-09 02:39:56 +030023
24Factory.define('EntitlementPoolExtendedBaseFactory')
svishnev8f133302018-08-06 23:08:39 +030025 .extend('EntitlementPoolBaseFactory')
26 .attrs({
27 manufacturerReferenceNumber: '1231322',
28 thresholdValue: 76,
29 thresholdUnits: '%',
30 increments: 'string',
31 startDate: new Date().getTime(),
32 expiryDate: new Date().getTime()
33 });
AviZi280f8012017-06-09 02:39:56 +030034
35export const EntitlementPoolListItemFactory = new Factory()
svishnev8f133302018-08-06 23:08:39 +030036 .extend('EntitlementPoolBaseFactory')
37 .attrs({
38 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
39 versionUUID: () => Math.floor(Math.random() * (1000 - 1) + 1),
40 itemType: overviewEditorHeaders.ENTITLEMENT_POOL
41 });
AviZi280f8012017-06-09 02:39:56 +030042
43export const EntitlementPoolStoreFactory = new Factory()
svishnev8f133302018-08-06 23:08:39 +030044 .extend('EntitlementPoolExtendedBaseFactory')
45 .attrs({
46 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
47 referencingFeatureGroups: []
48 });
AviZi280f8012017-06-09 02:39:56 +030049
50export const EntitlementPoolDataListFactory = new Factory()
svishnev8f133302018-08-06 23:08:39 +030051 .extend('EntitlementPoolExtendedBaseFactory')
52 .attrs({
53 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
54 referencingFeatureGroups: [],
55 itemType: overviewEditorHeaders.ENTITLEMENT_POOL
56 });
AviZi280f8012017-06-09 02:39:56 +030057
svishnev8f133302018-08-06 23:08:39 +030058export const EntitlementPoolPostFactory = new Factory().extend(
59 'EntitlementPoolExtendedBaseFactory'
60);