From 19382d6fe3a4ee18d5dc234e29cfbcb0af7d5977 Mon Sep 17 00:00:00 2001 From: Indrijeet kumar Date: Mon, 4 May 2020 20:16:36 +0530 Subject: some test cases in definition component some test cases in definition component Issue-ID: PORTAL-813 Change-Id: I2547c7dbd34a451a954f245bba745481d064d35c Signed-off-by: Indrijeet Kumar --- .../Report/definition/definition.component.spec.ts | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'ecomp-sdk/epsdk-app-overlay') diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.spec.ts index 93636519..cffd5290 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.spec.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.spec.ts @@ -1,4 +1,5 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + import { DefinitionComponent } from './definition.component'; import { CUSTOM_ELEMENTS_SCHEMA} from '@angular/core'; import { HttpClientTestingModule } from '@angular/common/http/testing'; @@ -18,7 +19,7 @@ describe('DefinitionComponent', () => { "reportId":123, "reportName":"reportName", "reportDescr":"reportDescr", - "reportType":"reportType", + "reportType":"Linear", "dbInfo":"dbInfo", "formHelpText":"formHelpText", "repDefType":"repDefType", @@ -44,7 +45,8 @@ describe('DefinitionComponent', () => { "weeklyRec":true, "monthlyRec":true, "dashboardLayoutJSON":'"data"', - "dashboardLayoutHTML":"dashboardLayoutHTML" + "dashboardLayoutHTML":"dashboardLayoutHTML", + "displayArea":{"selected":true} } beforeEach(async(() => { @@ -74,19 +76,25 @@ describe('DefinitionComponent', () => { }); it('should test ngOnInit method',()=>{ - var params={ - "reportId":100 - }; component.IncomingReportId=-1; component.reportMode="Create"; - //spyOn(activatedRoute,'params').and.returnValue(Observable.of(params)); let spy=spyOn(_definitionService,'getDefinitionPageDetails').and.returnValue(Observable.of(response)); component.ngOnInit(); expect(spy).toHaveBeenCalled(); + expect(_definitionService.getDefinitionPageDetails).toHaveBeenCalled(); expect(component.isEdit).toBe(true); expect(component.showDialog).toBe(false); }); + it('should test ngOnInit method',()=>{ + component.IncomingReportId=1; + component.reportMode="Edit"; + let spy=spyOn(_definitionService,'getDefinitionPageDetails').and.returnValue(Observable.of(response)); + component.ngOnInit(); + expect(spy).toHaveBeenCalled(); + expect(_definitionService.getDefinitionPageDetails).toHaveBeenCalled(); + }); + it('should test first if condition in saveDefinitionInfo method',()=>{ component.IncomingReportId=-1; component.reportMode="Create"; -- cgit 1.2.3-korg