summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorraine Welch <lb2391@att.com>2020-02-26 17:28:19 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-26 17:28:19 +0000
commit0e0d81ca965494d18820ede7747a680334c7c955 (patch)
treec068f30c2e2cd4fc778076b9559b4a010f611a57
parentccce750bbc47401ecc6a7e6e35bcbd795ec1e96f (diff)
parent30b9b3c4c8957702c7bfdc5bfb1d606a120a6af2 (diff)
Merge "some test cases for form-fields components"
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.spec.ts30
1 files changed, 29 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.spec.ts
index 42544a72..1dab68ba 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.spec.ts
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.spec.ts
@@ -1,6 +1,11 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormFieldsComponent } from './form-fields.component';
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { FormsModule } from '@angular/forms';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+import { MatDialogModule, MatSnackBarModule } from '@angular/material';
+import { CommonModule } from '@angular/common';
describe('FormFieldsComponent', () => {
let component: FormFieldsComponent;
@@ -8,7 +13,9 @@ describe('FormFieldsComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ FormFieldsComponent ]
+ schemas:[CUSTOM_ELEMENTS_SCHEMA],
+ declarations: [ FormFieldsComponent ],
+ imports:[FormsModule,HttpClientTestingModule,MatDialogModule,MatSnackBarModule]
})
.compileComponents();
}));
@@ -22,4 +29,25 @@ describe('FormFieldsComponent', () => {
it('should create', () => {
expect(component).toBeTruthy();
});
+
+ it('should test isFirst method',()=>{
+ expect(component.isFirst(0)).toBe(true);
+ expect(component.isFirst(2)).toBe(false);
+ });
+
+ it('should test isLast method', () =>{
+ component.formFieldsListObj.length = 12;
+ expect(component.isLast(15)).toEqual(false);
+ });
+
+ it('should test ngDoCheck method',()=>{
+ component.sqlAsDefaultValue=true;
+ if(component.sqlAsDefaultValue==true){
+ expect(component.showDefaultSQLOption).toBe(false);
+ }
+ else{
+ expect(component.showDefaultSQLOption).toBe(true);
+ }
+ });
+
});