diff options
author | Lorraine Welch <lb2391@att.com> | 2020-02-27 15:12:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-27 15:12:53 +0000 |
commit | 7a96de55ae49a6a1e98877ae04f5e424c7488d60 (patch) | |
tree | c5bbd3b820a8e5666209b4e4fd25f7ebfbc4977b | |
parent | 0f08aea401f83dd18fe1ee8c18cfd4426576cd74 (diff) | |
parent | aa6b9be8389d0387517d9be6b3dd38ab2d84b080 (diff) |
Merge "wrote test cases for dashboard-report-grid component"
-rw-r--r-- | ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.component.spec.ts | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.component.spec.ts index 5cd70a7c..b9d63853 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.component.spec.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.component.spec.ts @@ -1,6 +1,8 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - +import { FormsModule } from '@angular/forms'; import { DashboardReportGridComponent } from './dashboard-report-grid.component'; +import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('DashboardReportGridComponent', () => { let component: DashboardReportGridComponent; @@ -8,10 +10,12 @@ describe('DashboardReportGridComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ DashboardReportGridComponent ] + schemas: [CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA], + declarations: [ DashboardReportGridComponent ], + imports: [FormsModule, HttpClientTestingModule] }) .compileComponents(); - })); + })); beforeEach(() => { fixture = TestBed.createComponent(DashboardReportGridComponent); @@ -22,4 +26,33 @@ describe('DashboardReportGridComponent', () => { it('should create', () => { expect(component).toBeTruthy(); }); -}); + + it('should test ngOnInit method', () => { + component.ngOnInit(); + expect(component.showSpinner).toEqual(true); + expect(component.options.outerMargin).toEqual(true); + expect(component.options.outerMarginTop).toEqual(10); + expect(component.options.outerMarginRight).toEqual(10); + expect(component.options.outerMarginBottom).toEqual(700); + expect(component.options.outerMarginLeft).toEqual(10); + expect(component.options.scrollSensitivity).toEqual(10); + expect(component.options.scrollSpeed).toEqual(20); + expect(component.options.emptyCellDragMaxCols).toEqual(null); + expect(component.options.emptyCellDragMaxRows).toEqual(null); + expect(component.options.enableOccupiedCellDrop).toEqual(true); + expect(component.options.ignoreMarginInRow).toEqual(false); + expect(component.options.draggable.enabled).toEqual(true); + expect(component.options.resizable.enabled).toEqual(true); + expect(component.options.swap).toEqual(false); + expect(component.options.pushItems).toEqual(true); + expect(component.options.disablePushOnDrag).toEqual(false); + expect(component.options.disablePushOnResize).toEqual(false); + expect(component.options.pushResizeItems).toEqual(true); + expect(component.options.disableWindowResize).toEqual(true); + expect(component.options.disableWarnings).toEqual(false); + expect(component.options.scrollToNewItems).toEqual(true); + expect(component.options.enableEmptyCellDrop).toEqual(true); + expect(component.options.minCols).toEqual(2); + expect(component.options.minRows).toEqual(2); + }) +});
\ No newline at end of file |