template-configuartion spec- fixed test cases 41/60241/2
authorArundathi Patil <arundpil@in.ibm.com>
Mon, 13 Aug 2018 09:38:36 +0000 (15:08 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 13 Aug 2018 23:52:43 +0000 (23:52 +0000)
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 <arundpil@in.ibm.com>
src/app/vnfs/build-artifacts/template-holder/template-configuration/template-configuration.component.spec.ts

index 06cea21..bba9673 100644 (file)
@@ -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: [] };