From: Arundathi Patil Date: Thu, 6 Sep 2018 10:50:02 +0000 (+0530) Subject: build-artifacts.component: added test case X-Git-Tag: 1.4.0~17 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=aaa7a6bff269b7ee7a6277722cee5fd0ae081aa9;p=appc%2Fcdt.git build-artifacts.component: added test case wrote test case to test and cover newly added lines of code in build-artifacts component. Issue-ID: APPC-1064 Change-Id: I0cf6a4973b13dd493b48a96a34ca708bcb4a6ceb Signed-off-by: Arundathi Patil --- diff --git a/src/app/vnfs/build-artifacts/build-artifacts.component.spec.ts b/src/app/vnfs/build-artifacts/build-artifacts.component.spec.ts index 4635d1d..435c8b7 100644 --- a/src/app/vnfs/build-artifacts/build-artifacts.component.spec.ts +++ b/src/app/vnfs/build-artifacts/build-artifacts.component.spec.ts @@ -181,4 +181,27 @@ describe('BuildDesignComponent', () => { it('Should test setAllowOtherUpdates method', ()=> { component.setAllowOtherUpdates(true); }); + + it('Should test setAllowOtherUpdates method', ()=> { + let refData = {"action":"ConfigScaleOut", + "action-level":"vnf", + "scope": { + "vnf-type":"ticktack", + "vnfc-type":"" + }, + "template":"Y", + "vm":[], + "device-protocol":"CHEF", + "user-name":"", + "port-number":"", + "artifact-list":[ + {"artifact-name":"template_Configure_ticktack_0.0.1V.json","artifact-type":"config_template"}, + {"artifact-name":"pd_Configure_ticktack_0.0.1V.yaml","artifact-type":"parameter_definitions"}], + "scopeType":"vnf-type" + }; + + let reqObj = {'reqField': true} + component.getRefData(refData, reqObj); + expect(component.refDataRequiredFiels).toBe(true); + }); });