要模拟 Http,您需要在 TestBed 中配置 MockBackend 和 Http 提供程序。然后你可以订阅它的连接并提供模拟响应
beforeEach(() => {
TestBed.configureTestingModule({
providers: [
{
provide: Http, useFactory: (backend, options) => {
return new Http(backend, options);
},
deps: [MockBackend, BaseRequestOptions]
},
MockBackend,
BaseRequestOptions
]
});
});
如何测试 ngOnInit() 函数?
问题在于Http.get 调用的异步特性。 ngOnInit 会在你调用fixture.detectChanges() 时被调用,但是 Http 的异步特性导致测试在 Http 完成之前运行。为此,我们使用fakeAsync,正如提到的here,但下一个问题是您不能使用fakeAsync 和templateUrl。你可以用setTimeout 破解它并在那里测试。那会奏效。不过我个人不喜欢。
it('', async(() => {
setTimeout(() => {
// expectations here
}, 100);
})
就个人而言,我认为您一开始就有设计缺陷。 Http 调用应该被抽象成一个服务,组件应该和服务交互,而不是直接和Http 交互。如果您将设计更改为此(我会推荐),那么您可以测试服务like in this example,并为组件测试创建一个同步模拟,如this post 中所述。
这是一个完整的例子,说明我会如何做
import { Component, OnInit, OnDestroy, DebugElement, Injectable } from '@angular/core';
import { CommonModule } from '@angular/common';
import { By } from '@angular/platform-browser';
import { Http, BaseRequestOptions, Response, ResponseOptions } from '@angular/http';
import { MockBackend, MockConnection } from '@angular/http/testing';
import { async, fakeAsync, inject, TestBed } from '@angular/core/testing';
import { Observable } from 'rxjs/Observable';
import { Subscription } from 'rxjs/Subscription';
@Injectable()
class BooksService {
constructor(private http: Http) {}
getBooks(): Observable<string[]> {
return this.http.get('')
.map(res => res.json() as string[]);
}
}
class MockBooksService {
subscription: Subscription;
content;
error;
constructor() {
this.subscription = new Subscription();
spyOn(this.subscription, 'unsubscribe');
}
getBooks() {
return this;
}
subscribe(next, error) {
if (this.content && next && !error) {
next(this.content);
}
if (this.error) {
error(this.error);
}
return this.subscription;
}
}
@Component({
template: `
<h4 *ngFor="let book of books">{{ book }}</h4>
`
})
class TestComponent implements OnInit, OnDestroy {
books: string[];
subscription: Subscription;
constructor(private service: BooksService) {}
ngOnInit() {
this.subscription = this.service.getBooks().subscribe(books => {
this.books = books;
});
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
}
describe('component: TestComponent', () => {
let mockService: MockBooksService;
beforeEach(() => {
mockService = new MockBooksService();
TestBed.configureTestingModule({
imports: [ CommonModule ],
declarations: [ TestComponent ],
providers: [
{ provide: BooksService, useValue: mockService }
]
});
});
it('should set the books', () => {
mockService.content = ['Book1', 'Book2'];
let fixture = TestBed.createComponent(TestComponent);
fixture.detectChanges();
let debugEls: DebugElement[] = fixture.debugElement.queryAll(By.css('h4'));
expect(debugEls[0].nativeElement.innerHTML).toEqual('Book1');
expect(debugEls[1].nativeElement.innerHTML).toEqual('Book2');
});
it('should unsubscribe when destroyed', () => {
let fixture = TestBed.createComponent(TestComponent);
fixture.detectChanges();
fixture.destroy();
expect(mockService.subscription.unsubscribe).toHaveBeenCalled();
});
});
describe('service: BooksService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [
{
provide: Http, useFactory: (backend, options) => {
return new Http(backend, options);
},
deps: [MockBackend, BaseRequestOptions]
},
MockBackend,
BaseRequestOptions,
BooksService
]
});
});
it('should return mocked content',
async(inject([MockBackend, BooksService],
(backend: MockBackend, service: BooksService) => {
backend.connections.subscribe((conn: MockConnection) => {
let ops = new ResponseOptions({body: '["Book1", "Book2"]'});
conn.mockRespond(new Response(ops));
});
service.getBooks().subscribe(books => {
expect(books[0]).toEqual('Book1');
expect(books[1]).toEqual('Book2');
});
})));
});