alarm component spec changes 88/92788/1
authorArundathi Patil <arundpil@in.ibm.com>
Tue, 6 Aug 2019 11:55:19 +0000 (17:25 +0530)
committerArundathi Patil <arundpil@in.ibm.com>
Tue, 6 Aug 2019 11:55:29 +0000 (17:25 +0530)
Fixed errors in alarm component spec file

Issue-ID: USECASEUI-280
Change-Id: Ic1cd9c5ad3c1c5ebf0758570abdcc1a84ad637d1
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
usecaseui-portal/src/app/alarm/alarm.component.spec.ts

index 2cf268d..f64bcb8 100644 (file)
@@ -1,9 +1,10 @@
-import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { async, ComponentFixture, TestBed, inject, fakeAsync } from '@angular/core/testing';
 import { NO_ERRORS_SCHEMA,CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
 import { NgxEchartsModule } from 'ngx-echarts';
 import { NgZorroAntdModule } from 'ng-zorro-antd';
 import { TranslateModule, TranslateLoader, TranslateService, TranslateFakeLoader} from '@ngx-translate/core';
 import { HttpClientModule } from '@angular/common/http';
+import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
 import { NZ_I18N, en_US } from 'ng-zorro-antd';
 
@@ -23,7 +24,8 @@ fdescribe('AlarmComponent', () => {
         NgZorroAntdModule.forRoot(), 
         NgxEchartsModule, 
         HttpClientModule,
-        BrowserAnimationsModule ],
+        BrowserAnimationsModule,
+        HttpClientTestingModule ],
       providers: [ TranslateService, HomesService,
                    { provide: NZ_I18N, useValue: en_US } ],
       schemas: [
@@ -40,7 +42,25 @@ fdescribe('AlarmComponent', () => {
     fixture.detectChanges();
   });
 
-  it('should create', () => {
+  it('should create', inject([HttpTestingController, HomesService], 
+    (httpMock: HttpTestingController, service: HomesService) => {
     expect(component).toBeTruthy();
-  });
+  }));
+
+  it('expects service to fetch data with proper sorting',
+  inject([HttpTestingController, HomesService],
+    (httpMock: HttpTestingController, service: HomesService) => {
+      // We call the service
+      service.getqueryAllSourceNames().subscribe(data => {
+        expect(data.pageInfo.totalRecordCount).toBe(21);
+        expect(data.pageInfo.pageNumber).toBe(0);
+        expect(data.data.length).toBe(7);
+      });
+      // We set the expectations for the HttpClient mock
+      const req = httpMock.expectOne('http://.../data/contacts');
+      expect(req.request.method).toEqual('GET');
+      // Then we set the fake data to be returned by the mock
+      req.flush({data: ...});
+    })
+);
 });