aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts')
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts819
1 files changed, 796 insertions, 23 deletions
diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
index 67ba8f5..1570e9c 100644
--- a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
+++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
@@ -20,48 +20,821 @@ limitations under the License.
ECOMP is a trademark and service mark of AT&T Intellectual Property.
============LICENSE_END============================================
*/
-
/* tslint:disable:no-unused-variable */
-import {async, ComponentFixture, TestBed} from '@angular/core/testing';
+
+import {ComponentFixture, TestBed, async, inject} from '@angular/core/testing';
+import {Http, Response, ResponseOptions, XHRBackend} from '@angular/http';
+import {BuildDesignComponent} from '../build-artifacts.component';
+import {DialogService} from 'ng2-bootstrap-modal';
+import {FormsModule} from '@angular/forms';
+import {HttpModule} from '@angular/http';
+import {HttpUtilService} from '../../../shared/services/httpUtil/http-util.service';
+import {MappingEditorService} from '../../..//shared/services/mapping-editor.service';
import {NO_ERRORS_SCHEMA} from '@angular/core';
+import {NgModule} from '@angular/core';
+import {NgProgress} from 'ngx-progressbar';
+import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
+import {NotificationService} from '../../../shared/services/notification.service';
+import {Observable} from 'rxjs/Observable';
+import {ParamShareService} from '../../..//shared/services/paramShare.service';
import {ReferenceDataformComponent} from './reference-dataform.component';
-import {FormsModule} from '@angular/forms';
-import { NotificationService } from '../../../shared/services/notification.service';
-import { ParamShareService } from '../../..//shared/services/paramShare.service';
-import { MappingEditorService } from '../../..//shared/services/mapping-editor.service';
-import {DialogService} from 'ng2-bootstrap-modal';
import {RouterTestingModule} from '@angular/router/testing';
-import { HttpUtilService } from '../../../shared/services/httpUtil/http-util.service';
-import { NgModule } from '@angular/core';
-import { NgProgress } from 'ngx-progressbar';
-import { HttpModule } from '@angular/http';
-import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
-import { SharedModule } from '../../../shared/shared.module';
-
+import {SharedModule} from '../../../shared/shared.module';
+import {environment} from '../../../../environments/environment';
describe('ReferenceDataformComponent', () => {
- let component: ReferenceDataformComponent;
- let fixture: ComponentFixture<ReferenceDataformComponent>;
-
+ let component : ReferenceDataformComponent;
+ let fixture : ComponentFixture < ReferenceDataformComponent >;
+ let service : MockMappingService;
+
+ let httpMock : HttpUtilService
+ //mockingthe data for mappingEditorService
+
+ class HttpMock {
+ post(req) {
+ if(req.url==""){
+
+ return Observable.of({
+ output: {
+ data: {block:'{"artifactInfo": [ {"artifact-content": "{"reference_data": [{ "action": "Configure","scopeType":"tetsScope"}] }" } ]}'},
+ status:{code:"400",message:"success"}
+ }
+ })
+ } }
+ }
+ class MockMappingService {
+ public latestAction; // = {"action":"Configure"}
+ appDataObject= { reference: {}, template: { templateData: {}, nameValueData: {} }, pd: {} };
+ downloadDataObject={reference: {},
+ template: { templateData: {}, nameValueData: {}, templateFileName: '', nameValueFileName: '' },
+ pd: { pdData: '', pdFileName: '' }}
+ referenceNameObjects = [
+ {
+ action: "Configure"
+ }, {
+ action: "StartApplication"
+ }
+ ]
+
+ setTemplateMappingDataFromStore(data){
+ return "test"
+ }
+ getReferenceList() {
+ return ["test data"]
+ }
+ changeNav() {
+ return "test data"
+ }
+ setParamContent(data){
+ return "test"
+ }
+ setSessionParamData(data){
+ return "test"
+ }
+
+ saveLatestAction() {}
+ saveLatestIdentifier() {}
+ changeNavDownloadData() {}
+ changeNavAppData() {}
+ }
+ class MockreferenceDataObject {}
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ReferenceDataformComponent],
schemas: [NO_ERRORS_SCHEMA],
- imports: [FormsModule, RouterTestingModule,HttpModule,NgbModule.forRoot()],
- providers: [NgProgress, ParamShareService, DialogService, NotificationService, HttpUtilService, MappingEditorService]
-
- })
- .compileComponents();
- }));
+ imports: [
+
+ FormsModule, RouterTestingModule, HttpModule, NgbModule.forRoot(),
+ SharedModule.forRoot()
+ ],
+ providers: [
+ BuildDesignComponent, {
+ provide: MappingEditorService,
+ useClass: MockMappingService
+ },
+ ParamShareService,
+ DialogService,
+ NotificationService, {
+ provide: HttpUtilService,
+ useClass: HttpMock
+ }
+ ]
+ }).compileComponents();
+ }));
beforeEach(() => {
fixture = TestBed.createComponent(ReferenceDataformComponent);
component = fixture.componentInstance;
+ // component = new ReferenceDataformComponent(service)
fixture.detectChanges();
+ service = TestBed.get(MappingEditorService)
+ httpMock = TestBed.get(HttpUtilService)
+ sessionStorage.setItem('vnfParams',JSON.stringify({vnfType:"test",vnfcType:"testVnfcType"}));
+ // component = new ReferenceDataformComponent(service)
+ });
+ it('should create reference component', () => {
+ expect(component).toBeTruthy();
});
+ it('Should load data from mapping sevice', () => {
+ component.ngOnInit()
+ expect(component.tempAllData.length).toBe(2)
+ })
+ it('testing init method', () => {
+ component.ngOnInit()
+ expect(component.tempAllData.length).toBe(2)
+ })
+
+ it("should set app data from service", ()=>{
+ component.ngOnInit()
+ expect(component.appData).not.toBe(undefined)
+ })
+ it("should set download from service", ()=>{
+ component.ngOnInit()
+ expect(component.downloadData).not.toBe(undefined)
+ })
+ it('Should reset form', () => {
+ component.resetForm()
+ expect(component.referenceDataObject['device-protocol']).toBe('')
+ expect(component.referenceDataObject['action-level']).toBe('vnf')
+ expect(component.referenceDataObject.template).toBe('Y')
+ expect(component.referenceDataObject['user-name']).toBe('')
+ expect(component.Sample['vnfc-type']).toBe('')
+ expect(component.refernceScopeObj.sourceType).toBe('')
+ expect(component.referenceDataObject['port-number']).toBe('')
+ })
+ it("prepare reference method at vnf level", () => {
+
+ component.referenceDataObject = {
+ action: 'Configure',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ component.prepareReferenceObject();
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+
+ it("prepare reference method at vnf level", () => {
+
+ component.referenceDataObject = {
+ action: 'Configure',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '123',
+ 'vnfc-type': '346'
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+
+ component.prepareReferenceObject();
+ expect(component.referenceDataObject['action-level']).toBe("vnfc")
+ })
+
+ it("prepare reference method at vnf and vnfc level", () => {
+
+ component.referenceDataObject = {
+ action: 'starttApplication',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '123',
+ 'vnfc-type': '346'
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': 'ANSIBLE',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ component.prepareReferenceObject();
+
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+ //deviceprotocols netconf
+ it("prepare reference method testing with netconf", () => {
+
+ component.referenceDataObject = {
+ action: 'starttApplication',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '123',
+ 'vnfc-type': '346'
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': 'NETCONF-XML',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+
+ component.prepareReferenceObject();
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+ //template id list
+ it("prepare reference method at template id list", () => {
+
+ component.referenceDataObject = {
+ action: 'ConfigScaleOut',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '123',
+ 'vnfc-type': '346'
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': 'NETCONF-XML',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+
+ }
+
+ component.referenceDataObject['template-id-list'] = ['id1', 'id2']
+
+ component.prepareReferenceObject();
+
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+ it("prepare reference method at vnfc level", () => {
+
+ component.referenceDataObject = {
+ action: 'startApplication',
+ 'action-level': 'vnfc',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ component.prepareReferenceObject();
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+ it("prepare reference method at vnf level", () => {
+
+ component.referenceDataObject = {
+ action: 'ConfigScaleOut',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ component.prepareReferenceObject();
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
it('should create reference component', () => {
+
expect(component).toBeTruthy();
});
+ it('configscaleout test', () => {
+ service.latestAction = {
+ action: 'ConfigScaleOut',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ service.referenceNameObjects = [
+ {
+ action: "Configure"
+ }, {
+ action: "StartApplication"
+ }
+ ]
+ component.ngOnInit()
+ expect(component.referenceDataObject.action).toBe("ConfigScaleOut");
+
+ });
+
+ it('shoud add vms with template id when the acti0on is configscaleout ', () => {
+ component.referenceDataObject = {
+ action: 'ConfigScaleOut',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [
+ {
+ vnfc: [
+ {
+ test: "123"
+ }
+ ]
+
+ }
+ ],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+
+ component.refernceScopeObj.from = "3"
+ // let arr = [1, 2];
+ component.addVms()
+ expect(component.referenceDataObject.vm.length).toBe(4);
+ });
+ it('shoud add vms with template id when the action is not configscaleout', () => {
+ component.referenceDataObject = {
+ action: 'Config',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [
+ {
+ vnfc: [
+ {
+ test: "123"
+ }
+ ]
+
+ }
+ ],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+
+ component.refernceScopeObj.from = "3"
+ // let arr = [1, 2];
+ component.addVms()
+ expect(component.referenceDataObject.vm[0]['template-id']).toBe(undefined);
+ });
+
+ it('testing ngdestroy', () => {
+ this.uploadFileName = 'testing'
+ component.ngOnDestroy()
+ expect(component.uploadedDataArray.length).toBe(0);
+ expect(component.uploadFileName).toBe('');
+ });
+ it('should validate numbers', () => {
+
+ component.numberValidation(1)
+ expect(component.numberOfVmTest).toBe(true);
+
+ });
+
+ it('should validate numbers if input is string', () => {
+
+ component.numberValidation('test')
+ expect(component.numberOfVmTest).toBe(false);
+
+ });
+
+ it('testing check if elements exixts in an array', () => {
+
+ let x = component.checkIfelementExistsInArray(2, [1, 2, 3])
+ expect(x).toBeTruthy();
+ });
+
+ it('should set action in session if type is action', () => {
+
+ component.updateSessionValues("test event for action", "action")
+
+ expect(sessionStorage.getItem('action')).toBe('test event for action');
+ });
+ it('should set action in session if type is vnfType', () => {
+
+ component.updateSessionValues("test event for vnfType", "vnfType")
+
+ expect(sessionStorage.getItem('vnfType')).toBe('test event for vnfType');
+ });
+
+ it('should add vnfs on to reference Object ', () => {
+
+ component.referenceDataObject = {
+ action: '',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [
+ {
+ vnfc: [
+ {
+ test: "123"
+ }
+ ]
+
+ }
+ ],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ };
+
+ component.addVnfcData(0)
+
+ expect(component.referenceDataObject.vm[0].vnfc.length).toBe(2);
+ });
+
+ it("should remove feature from the reference object ", () => {
+ component.referenceDataObject = {
+ action: '',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [
+ {
+ vnfc: [
+ {
+ test: "123"
+ }
+ ]
+
+ }, {
+ vnfc: [
+ {
+ test: "123"
+ }
+ ]
+
+ }
+ ],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ };
+
+ component.removeFeature(0, 0)
+
+ expect(component.referenceDataObject.vm.length).toBe(1)
+ })
+
+ it("should add capabilities", () => {
+ component.uploadedDataArray = [
+ ['y', 'n']
+ ]
+ component.addVmCapabilitiesData()
+
+ expect(component.tempAllData.length).toBe(3)
+ })
+ it("should add capabilities", () => {
+ service.latestAction = {
+ action: 'OpenStack Actions',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ service.referenceNameObjects = [
+ {
+ action: "Configure"
+ }, {
+ action: "StartApplication"
+ }
+ ]
+
+ component.prepareReferenceObject();
+
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+
+ it("should add capabilities", () => {
+ service.latestAction = {
+ action: 'OpenStack Actions',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+
+ component.referenceDataObject.action="OpenStack Actions"
+ service.referenceNameObjects = [
+ {
+ action: "Configure"
+ }, {
+ action: "StartApplication"
+ }
+ ]
+
+ component.prepareReferenceObject();
+
+ expect(component.referenceDataObject['action-level']).toBe("vnf")
+ })
+
+ it("should switch vms if action is configscaleout", () => {
+
+ component.currentAction = "ConfigScaleOut"
+ service.latestAction = {
+ action: 'OpenStack Actions',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ service.referenceNameObjects = [
+ {
+ action: "Configure"
+ }, {
+ action: "StartApplication"
+ }
+ ]
+
+ component.tempAllData = [
+ {
+ action: "ConfigScaleOut",
+ vm: [{}, {}]
+ }
+ ]
+
+ component.prepareReferenceObject();
+
+ expect(component.referenceDataObject.vm.length).toBe(2)
+ })
+ it("should switch vms if action is configscaleout", () => {
+
+ component.currentAction = "ConfigScaleOut"
+ service.latestAction = {
+ action: 'OpenStack Actions',
+ 'action-level': 'vnf',
+ scope: {
+ 'vnf-type': '',
+ 'vnfc-type': ''
+ },
+ 'template': 'Y',
+ vm: [],
+ 'device-protocol': '',
+ 'user-name': '',
+ 'port-number': '',
+ 'artifact-list': []
+ }
+ service.referenceNameObjects = [
+ {
+ action: "Configure"
+ }, {
+ action: "StartApplication"
+ }
+ ]
+
+ component.tempAllData = [
+ {
+ action: "startAplicaton"
+ }
+ ]
+
+ component.prepareReferenceObject();
+
+ expect(component.referenceDataObject.vm.length).toBe(0)
+ })
+ it('shoud show template identifier when action is config scaleout', () => {
+ let data = 'ConfigScaleOut'
+ component.toggleIdentifier(data)
+ expect(component.isConfigScaleOut).toBe(true);
+ });
+ it('shoud show template identifier when action is config scaleout', () => {
+ let data = 'startApplication'
+ component.toggleIdentifier(data)
+ expect(component.isConfigScaleOut).toBe(false);
+ });
+
+ it('Should call get artifact', () => {
+
+ service.referenceNameObjects = undefined
+ component.ngOnInit()
+ expect(component.tempAllData.length).toBe(2)
+ })
+
+ it('Should call get artifact', () => {
+ sessionStorage.setItem('updateParams', JSON.stringify({vnf: 123, userID: 'testUser'}))
+ component.getArtifact()
+ expect(component.tempAllData.length).toBe(2)
+ })
+
+ it('Save file - should not process if action is null ', () => {
+ component.referenceDataObject.action =""
+ let fileSaved = component.save({},true)
+ expect(fileSaved).toBe(undefined)
+ })
+ it('Save file - should not process if device protocol is null ', () => {
+ component.referenceDataObject['device-protocol'] =""
+ let fileSaved = component.save({},true)
+ expect(fileSaved).toBe(undefined)
+ })
+ it('Save file - should not process if device protocol is null ', () => {
+ component.referenceDataObject.action ="Configure"
+ component.referenceDataObject['device-protocol'] ="test"
+ let fileSaved = component.save({},true)
+ //expect(fileSaved).toBe(undefined)
+ })
+
+ it('Save to appc file - should not process if action is null ', () => {
+ component.referenceDataObject.action =""
+ let fileSaved = component.saveToAppc(true,{})
+ expect(fileSaved).toBe(undefined)
+ })
+ it('Save to app cfile - should not process if device protocol is null ', () => {
+ component.referenceDataObject['device-protocol'] =""
+ let fileSaved = component.saveToAppc(true,{})
+ expect(fileSaved).toBe(undefined)
+ })
+ it('Save to appc file - should not process if device protocol is null ', () => {
+ component.referenceDataObject.action ="Configure"
+ component.referenceDataObject['device-protocol'] ="test"
+ let fileSaved = component.saveToAppc(true,{})
+ //expect(fileSaved).toBe(undefined)
+ })
+
+ // it('uploadfile ', () => {
+
+ // let files = { 0: {name:'foo.XLS', size: 500001} };
+ // var mockEVet = {
+ // target:{files:files}
+ // }
+ // component.upload(mockEVet)
+ // //expect(fileSaved).toBe(undefined)
+ // })
+
+ it('downloadTemplate() of reference dataform',()=>{
+ component.downloadTemplate()
+
+ })
+ it('downloadNameValue() of reference dataform',()=>{
+ component.downloadNameValue()
+ })
+
+ it('downloadPd() of reference dataform',()=>{
+ component.downloadPd()
+ })
+ it('validateTempAllData() of reference dataform',()=>{
+ component.validateTempAllData()
+ })
+ it('retriveFromAppc() of reference dataform',()=>{
+ sessionStorage.setItem('updateParams', JSON.stringify({vnf: 123, userID: 'testUser'}))
+ component.retriveFromAppc()
+ expect(component.noCacheData).toBeFalsy()
+ })
+ it('retriveFromAppc() of reference dataform for false',()=>{
+
+ component.retriveFromAppc()
+ expect(component.noCacheData).toBeFalsy()
+ })
+ it(' cloneMessage(servermessage) of reference dataform',()=>{
+ let servermessage = {test:"test"}
+ component.cloneMessage(servermessage)
+ })
+
+ it('resetGroupNotation() of reference dataform for false case',()=>{
+ component.resetGroupNotation()
+ expect(component.disableGrpNotationValue).toBeFalsy()
+ })
+ it('resetGroupNotation() of reference dataform for true case',()=>{
+ component.Sample['group-notation-type'] == "existing-group-name"
+ component.resetGroupNotation()
+ expect(component.disableGrpNotationValue).toBeTruthy()
+ })
+ it('resetVms() of reference dataform',()=>{
+ component.resetVms()
+ expect(component.referenceDataObject.vm).toBe([])
+ })
+ it('dataModified() of reference dataform',()=>{
+ component.dataModified()
+ expect(component.referenceDataObject.vm).toBe(this.referenceDataObject.vm)
+ })
+
+ it('Clear cache ', () => {
+ component.clearCache()
+ expect(component.downloadData.reference['name']).toBe(undefined);
+ //expect(fileSaved).toBe(undefined)
+ })
+
+ it('sholud reset group notification ', () => {
+ component.Sample['group-notation-type'] = "existing-group-name"
+ component.resetGroupNotation()
+ expect(component.disableGrpNotationValue).toBe(true);
+ //expect(fileSaved).toBe(undefined)
+ })
+ it('sholud reset group notification if value does not match ', () => {
+ component.Sample['group-notation-type'] = "123"
+ component.resetGroupNotation()
+ expect(component.disableGrpNotationValue).toBe(false);
+ //expect(fileSaved).toBe(undefined)
+ })
+ it('add identity group', () => {
+ component.referenceDataObject['template-id-list'] = undefined
+ component.templateId="test"
+ component.addToIdentDrp()
+ expect(component.referenceDataObject['template-id-list'].length).toBe(1);
+ //expect(fileSaved).toBe(undefined)
+ })
+
+ it('add identity group', () => {
+
+ component.resetVms()
+ expect(component.referenceDataObject.vm.length).toBe(0);
+ //expect(fileSaved).toBe(undefined)
+ })
+ it('data modified', () => {
+
+ component.dataModified()
+
+ component.referenceDataObject.vm =[1,2]
+ expect(component.referenceDataObject.vm.length).toBe(2);
+ //expect(fileSaved).toBe(undefined)
+ })
+
+ it("should set values on action change ConfigScaleOut",()=>{
+ component.actionChange("ConfigScaleOut","",{})
+
+ expect(component.groupAnotationType.length).toBe(5)
+ })
+
+ it("should set values on action change when action is HealthCheck ",()=>{
+ component.populateExistinAction("HealthCheck")
+
+ expect(component.deviceProtocols.length).toBe(4)
+
+
+ })
+ it("should set values on action change when action is UpgradeBackout",()=>{
+ component.populateExistinAction("UpgradeBackout")
+
+ expect(component.deviceProtocols.length).toBe(3)
+
+
+ })
+ it("should set values on action change when action is OpenStack Actions",()=>{
+ component.populateExistinAction("OpenStack Actions")
+
+ expect(component.deviceProtocols.length).toBe(2)
+
+
+ })
+ it("should set values on action change when action is Configure",()=>{
+
+ component.tempAllData=[{action:"Configure",scope:{'vnf-type':"testVnf"}}]
+ component.populateExistinAction("Configure")
+
+ expect(component.referenceDataObject.scope['vnf-type']).toBe('testVnf')
+
+
+ })
});