summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorraine Welch <lb2391@att.com>2020-03-05 15:44:35 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-05 15:44:35 +0000
commit1bf0702ce9ef81f8a3c918cad79e4478080c9bab (patch)
tree9157aa04f6d9e8fb12e23f31c9c6c692d76c607f
parentc474441fa6beeea163113aba60e0c5ea97407364 (diff)
parentfdca94b6c8b208640397cd76126e56b15971dea2 (diff)
Merge "added test cases for run-report component"
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.spec.ts107
1 files changed, 63 insertions, 44 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.spec.ts
index 4d4fe269..509aa82e 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.spec.ts
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.spec.ts
@@ -10,7 +10,8 @@ import { MatMenuModule } from '@angular/material';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { RunService } from '../run.service';
-import { GridsterConfig, GridsterItem, GridType } from 'angular-gridster2';
+import 'rxjs/add/observable/empty';
+import 'rxjs/add/observable/of';
describe('RunReportComponent', () => {
let component: RunReportComponent;
@@ -21,6 +22,9 @@ describe('RunReportComponent', () => {
let change : SimpleChanges;
let runService : RunService;
let options1 = {};
+ let dashboard;
+ let dashboard2;
+ let responseformfield = 1;
beforeEach(async(() => {
TestBed.configureTestingModule({
@@ -41,6 +45,7 @@ describe('RunReportComponent', () => {
}));
beforeEach(() => {
+ //dashboard = {"item":{"hasContent":{"name":"rupi","id":"check#check"}}};
fixture = TestBed.createComponent(RunReportComponent);
runService = TestBed.get(RunService);
component = fixture.componentInstance;
@@ -48,58 +53,40 @@ describe('RunReportComponent', () => {
component.displayedColumnsArr = displayedColumnsArr1;
component.TriggerFFArr = trigger;
component.options = options1;
+ component.dashboard = dashboard;
+ component.responseFormFieldListLength = responseformfield;
fixture.detectChanges();
});
it('should compile', () => {
- expect(component).toBeTruthy();
+ expect(component).toBeTruthy();
});
+
+ it('should test the ngOnChanges second If condition', () => {
+ component.queryString = "test"
+ component.runButtonHitCnt = 1;
+ component.initialQueryString = "abc";
+ component.initCounter = 4;
+ component.hitCnt = 2;
+ component.ngOnChanges(change);
- it('should test the ngOnChanges method', () => {
- fixture.detectChanges();
- component.reportMode !== "Regular";
- component.initCnt > 0;
- component.TriggerFFArr.length == 0;
-
- component.ngOnChanges(change);
- expect(component.showMoreVert).toEqual(false);
- expect(component.initCnt).toEqual(1);
- expect(component.showDashboardReport).toEqual(false);
- expect(component.displayedRowObj).toEqual(new Array());
- expect(component.displayedColumns).toEqual(new Array());
- expect(component.formFieldList).toEqual(new Array());
- expect(component.showSpinner).toEqual(true);
- expect(component.NEWdisplayedColumns).toEqual(new Array());
- expect(component.isReady).toEqual(false);
-
- runService.getReportDataWithFormFields("for", "test").subscribe((Response) => {
- component.reportMode !== "FormField";
- expect(component.showMoreVert).toEqual(true);
- expect(component.showDashboardReport).toEqual(true);
- });
-
- component.initialQueryString !== component.queryString;
- component.initCounter > 0;
- component.hitCnt !== component.runButtonHitCnt;
- expect(component.runButtonHitCnt).toEqual(component.hitCnt);
- expect(component.initialQueryString).toEqual(component.queryString);
- });
+ expect(component.runButtonHitCnt).toEqual(component.hitCnt);
+ expect(component.initialQueryString).toEqual("test");
+ spyOn(component, 'initialProcesses');
+ spyOn(component, 'afterViewInitialProcesses');
+ component.initialProcesses();
+ component.afterViewInitialProcesses();
- it('should test initialProcess method', () => {
- component.initialProcesses();
- component.DashboardReportObj.length > 0;
- expect(component.dashboard).toEqual(component.DashboardReportObj);
- expect(component.hitCnt).toEqual(component.runButtonHitCnt);
- expect(component.initialQueryString).toEqual(component.queryString);
- expect(component.initCounter).toEqual(component.initCounter++);
- });
+ expect(component.initialProcesses).toHaveBeenCalled();
+ expect(component.afterViewInitialProcesses).toHaveBeenCalled();
+});
it('should test afterViewInitialProcesses method', () => {
+ component.DashboardReportObj.length = 0;
+ component.reportMode = "Regular";
+ component.initCnt = 0;
component.afterViewInitialProcesses();
- component.DashboardReportObj.length === 0;
- component.reportMode === "Regular";
- component.initCnt == 0;
-
+
expect(component.showMoreVert).toEqual(false);
expect(component.displayedColumnsArr).toEqual(new Array());
expect(component.displayedRowObj).toEqual(new Array());
@@ -118,18 +105,50 @@ describe('RunReportComponent', () => {
expect(component.stackTrace).toEqual("test"[stcktrace]);
expect(component.error).toEqual(true);
expect(component.showSpinner).toEqual(false);
-
});
+ it('should test linkToReport', () => {
+ component.linkToReport("test", "abc");
+ })
+
+ it('should test linkToFeedback', () => {
+ component.linkToFeedback("test", "abc");
+ })
+
+ it('should test linkToMail', () => {
+ component.linkToMail("test");
+ })
+
it('should test openOptions method', () => {
component.openOptions();
expect(component.openOptionsFlag).toEqual(component.openOptionsFlag);
});
+ it('should test downloadReportExcel method', () => {
+ component.downloadReportExcel();
+ });
+
it('should test applyFilter method', () => {
let filterValue = "test"
component.applyFilter(filterValue);
expect(component.dataSource.filter).toEqual(filterValue.trim().toLowerCase());
});
+
+ it('should test the ngOnChanges first If condition', () => {
+ change = {};
+ component.reportMode !== "Regular"
+ component.initCnt = 1;
+ component.TriggerFFArr.length = 0;
+ component.ngOnChanges(change);
+ expect(component.showMoreVert).toEqual(false);
+ expect(component.initCnt).toEqual(1);
+ expect(component.showDashboardReport).toEqual(false);
+ expect(component.displayedRowObj).toEqual(new Array());
+ expect(component.displayedColumns).toEqual(new Array());
+ expect(component.formFieldList).toEqual(new Array());
+ expect(component.showSpinner).toEqual(true);
+ expect(component.NEWdisplayedColumns).toEqual(new Array());
+ expect(component.isReady).toEqual(false);
+ });
});