[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / test-utils / factories / licenseModel / EntitlementPoolFactories.js
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 {overviewEditorHeaders} from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js';
18
19 Factory.define('EntitlementPoolBaseFactory')
20         .attrs({
21                 name: 'EntitlementPoolName',
22                 description: 'description',
23                 entitlementMetric: {'choice': 'User', 'other': ''},
24                 manufacturerReferenceNumber: '123'
25         });
26
27 Factory.define('EntitlementPoolExtendedBaseFactory')
28         .extend('EntitlementPoolBaseFactory')
29         .attrs({
30                 thresholdValue: 75,
31                 thresholdUnits: '%',
32                 increments: 'string',
33                 aggregationFunction: {'choice': 'Average', 'other': ''},
34                 operationalScope: {'choices': ['Other'], 'other': 'blabla'},
35                 time: {'choice': 'Hour', 'other': ''}
36         });
37
38 export const EntitlementPoolListItemFactory = new Factory()
39         .extend('EntitlementPoolBaseFactory')
40         .attrs({
41                 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
42                 itemType: overviewEditorHeaders.ENTITLEMENT_POOL
43         });
44
45 export const EntitlementPoolStoreFactory = new Factory()
46         .extend('EntitlementPoolExtendedBaseFactory')
47         .attrs({
48                 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
49                 referencingFeatureGroups: []
50         });
51
52 export const EntitlementPoolDataListFactory = new Factory()
53         .extend('EntitlementPoolExtendedBaseFactory')
54         .attrs({
55                 id: () => Math.floor(Math.random() * (1000 - 1) + 1),
56                 referencingFeatureGroups: [],
57                 itemType: overviewEditorHeaders.ENTITLEMENT_POOL
58         });
59
60 export const EntitlementPoolPostFactory = new Factory()
61         .extend('EntitlementPoolExtendedBaseFactory');