diff options
Diffstat (limited to 'openecomp-ui/test-utils/factories/licenseModel/LicenseKeyGroupFactories.js')
-rw-r--r-- | openecomp-ui/test-utils/factories/licenseModel/LicenseKeyGroupFactories.js | 56 |
1 files changed, 29 insertions, 27 deletions
diff --git a/openecomp-ui/test-utils/factories/licenseModel/LicenseKeyGroupFactories.js b/openecomp-ui/test-utils/factories/licenseModel/LicenseKeyGroupFactories.js index dc71237e9a..b42b03e371 100644 --- a/openecomp-ui/test-utils/factories/licenseModel/LicenseKeyGroupFactories.js +++ b/openecomp-ui/test-utils/factories/licenseModel/LicenseKeyGroupFactories.js @@ -1,5 +1,5 @@ /*! - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2016-2018 European Support Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,37 +13,39 @@ * or implied. See the License for the specific language governing * permissions and limitations under the License. */ -import {Factory} from 'rosie'; -import {overviewEditorHeaders} from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js'; +import { Factory } from 'rosie'; +import { overviewEditorHeaders } from 'sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewConstants.js'; -Factory.define('LicenseKeyGroupBaseFactory') - .attrs({ - name: 'License Key Group', - description: 'wewe', - type: 'Unique' - }); +Factory.define('LicenseKeyGroupBaseFactory').attrs({ + manufacturerReferenceNumber: '1231322', + name: 'License Key Group', + description: 'wewe', + type: 'Unique' +}); export const LicenseKeyGroupListItemFactory = new Factory() - .extend('LicenseKeyGroupBaseFactory') - .attrs({ - id: () => Math.floor(Math.random() * (1000 - 1) + 1), - itemType: overviewEditorHeaders.LICENSE_KEY_GROUP - }); + .extend('LicenseKeyGroupBaseFactory') + .attrs({ + id: () => Math.floor(Math.random() * (1000 - 1) + 1), + versionUUID: () => Math.floor(Math.random() * (1000 - 1) + 1), + itemType: overviewEditorHeaders.LICENSE_KEY_GROUP + }); export const LicenseKeyGroupStoreFactory = new Factory() - .extend('LicenseKeyGroupBaseFactory') - .attrs({ - id: () => Math.floor(Math.random() * (1000 - 1) + 1), - referencingFeatureGroups: [] - }); + .extend('LicenseKeyGroupBaseFactory') + .attrs({ + id: () => Math.floor(Math.random() * (1000 - 1) + 1), + referencingFeatureGroups: [] + }); export const LicenseKeyGroupDataListFactory = new Factory() - .extend('LicenseKeyGroupBaseFactory') - .attrs({ - id: () => Math.floor(Math.random() * (1000 - 1) + 1), - referencingFeatureGroups: [], - itemType: overviewEditorHeaders.LICENSE_KEY_GROUP - }); + .extend('LicenseKeyGroupBaseFactory') + .attrs({ + id: () => Math.floor(Math.random() * (1000 - 1) + 1), + referencingFeatureGroups: [], + itemType: overviewEditorHeaders.LICENSE_KEY_GROUP + }); -export const LicenseKeyGroupPostFactory = new Factory() - .extend('LicenseKeyGroupBaseFactory'); +export const LicenseKeyGroupPostFactory = new Factory().extend( + 'LicenseKeyGroupBaseFactory' +); |