From 4a95047a23c2a361f9d18675c2f77e01e65faa1c Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Mon, 13 Aug 2018 15:08:36 +0530 Subject: template-configuartion spec- fixed test cases 5 of the test cases in template-configuration spec file failed as these tets cases were trying to access the component instance which was only declared but not defined. Fixed this issue. Issue-ID: APPC-1064 Change-Id: Iadbc3b7b66ed30089400e35cf5632a72f5a34991 Signed-off-by: Arundathi Patil --- .../template-configuration.component.spec.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/app/vnfs/build-artifacts/template-holder/template-configuration/template-configuration.component.spec.ts b/src/app/vnfs/build-artifacts/template-holder/template-configuration/template-configuration.component.spec.ts index 06cea21..bba9673 100644 --- a/src/app/vnfs/build-artifacts/template-holder/template-configuration/template-configuration.component.spec.ts +++ b/src/app/vnfs/build-artifacts/template-holder/template-configuration/template-configuration.component.spec.ts @@ -378,6 +378,8 @@ describe('GoldenConfigurationComponent', () => { // fileChange method it('Should validatte fileChange method if file type is xml', async(() => { + fixture = TestBed.createComponent(GoldenConfigurationComponent); + component = fixture.componentInstance; let reader = new FileReader(); let file = new File(["testing"], "foo.xml", { type: "text/xml" }); let input = { files: [file] }; @@ -393,6 +395,8 @@ describe('GoldenConfigurationComponent', () => { })); it('Should validatte fileChange method if file type is json', async(() => { + fixture = TestBed.createComponent(GoldenConfigurationComponent); + component = fixture.componentInstance; let reader = new FileReader(); let file = new File(["testing"], "foo.json", { type: "text/json" }); let input = { files: [file] }; @@ -408,6 +412,8 @@ describe('GoldenConfigurationComponent', () => { })); it('Should validatte fileChange method if file type is none ', async(() => { + fixture = TestBed.createComponent(GoldenConfigurationComponent); + component = fixture.componentInstance; let reader = new FileReader(); let file = new File(["testing"], "foo", { type: "" }); let input = { files: [file] }; @@ -424,6 +430,8 @@ describe('GoldenConfigurationComponent', () => { })); it('Should validate if files is false', () => { + fixture = TestBed.createComponent(GoldenConfigurationComponent); + component = fixture.componentInstance; let spy = spyOn(NotificationsService.prototype, 'error'); let reader = new FileReader(); let input = { files: [] }; @@ -435,6 +443,8 @@ describe('GoldenConfigurationComponent', () => { }); it('Should validate if refObj is undefined', () => { + fixture = TestBed.createComponent(GoldenConfigurationComponent); + component = fixture.componentInstance; let spy = spyOn(NotificationsService.prototype, 'error'); let reader = new FileReader(); let input = { files: [] }; -- cgit 1.2.3-korg