diff options
Diffstat (limited to 'openecomp-ui/test/licenseModel/licenseKeyGroups/test.js')
-rw-r--r-- | openecomp-ui/test/licenseModel/licenseKeyGroups/test.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/openecomp-ui/test/licenseModel/licenseKeyGroups/test.js b/openecomp-ui/test/licenseModel/licenseKeyGroups/test.js index 1326025e5d..ec091a411a 100644 --- a/openecomp-ui/test/licenseModel/licenseKeyGroups/test.js +++ b/openecomp-ui/test/licenseModel/licenseKeyGroups/test.js @@ -153,6 +153,17 @@ describe('License Key Groups Module Tests', function() { }; }); + mockRest.addHandler('fetch', ({ data, options, baseUrl }) => { + expect(baseUrl).toEqual( + `/onboarding-api/v1.0/vendor-license-models/${LICENSE_MODEL_ID}/versions/${ + version.id + }/license-key-groups` + ); + expect(data).toEqual(undefined); + expect(options).toEqual(undefined); + return { results: [] }; + }); + return LicenseKeyGroupsActionHelper.deleteLicenseKeyGroup( store.dispatch, { @@ -237,6 +248,17 @@ describe('License Key Groups Module Tests', function() { }; }); + mockRest.addHandler('fetch', ({ data, options, baseUrl }) => { + expect(baseUrl).toEqual( + `/onboarding-api/v1.0/vendor-license-models/${LICENSE_MODEL_ID}/versions/${ + version.id + }/license-key-groups` + ); + expect(data).toEqual(undefined); + expect(options).toEqual(undefined); + return { results: [LicenseKeyGroupStore] }; + }); + return LicenseKeyGroupsActionHelper.saveLicenseKeyGroup( store.dispatch, { @@ -338,6 +360,17 @@ describe('License Key Groups Module Tests', function() { }; }); + mockRest.addHandler('fetch', ({ data, options, baseUrl }) => { + expect(baseUrl).toEqual( + `/onboarding-api/v1.0/vendor-license-models/${LICENSE_MODEL_ID}/versions/${ + version.id + }/license-key-groups` + ); + expect(data).toEqual(undefined); + expect(options).toEqual(undefined); + return { results: [licenseKeyGroupUpdatedData] }; + }); + return LicenseKeyGroupsActionHelper.saveLicenseKeyGroup( store.dispatch, { |