这是我在组件中的方法。
editThis(id) {
this.router.navigate(['/categories/edit'], { queryParams: { id: id } });
}
这是我的单元测试用例。
fit('should call navigate with correct params', () => {
component.editThis("5c7d5fde213e25232864dbe0");
expect(new MockRouter().navigate).toHaveBeenCalledWith(['/categories/edit'], { queryParams: { id: "5c7d5fde213e25232864dbe0" } });
});
这是嘲笑的路由器。
class MockRouter {
navigateByUrl(url: string) { return url; }
navigate = jasmine.createSpy('navigate');
}
我收到此错误。
预期的间谍导航已被[[''/ categories / edit' ],Object({queryParams:Object({id:'5c7d5fde213e25232864dbe0'})}) ],但从未被调用。
您能建议我测试一种方法吗?
完整的测试代码。
import { FacadeService } from './../../../services/facade.service';
import { HttpClientModule } from '@angular/common/http';
import { AngularFontAwesomeModule } from 'angular-font-awesome';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CategoriesViewComponent } from './categories-view.component';
import { RouterTestingModule } from '@angular/router/testing';
import { Observable, of } from 'rxjs';
import { Router } from '@angular/router';
var allCategories = [
{
"_id": "5c7d5fde213e25232864dbe0",
"name": "Politics",
"updatedAt": "2019-03-04T17:26:54.262Z",
"createdAt": "2019-03-04T17:26:54.262Z",
"__v": 0
}
];
class MockRouter {
navigateByUrl(url: string) { return url; }
navigate = jasmine.createSpy('navigate');
}
class MockedFacadeService {
getUserDataFromLocalStorage() {
return false;
}
getGuestPermissionsFromLocalStorage() {
return { "comments": { "create": false, "read": true, "update": false, "deleteAny": false, "delete": false }, "post": { "create": false, "read": true, "update": false, "delete": false, "like": false, "dislike": false }, "category": { "create": false, "read": true, "update": false, "delete": false } };
}
getCategories() {
return of(allCategories);
}
}
describe('CategoriesViewComponent', () => {
let component: CategoriesViewComponent;
let fixture: ComponentFixture<CategoriesViewComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [AngularFontAwesomeModule, RouterTestingModule, HttpClientModule],
declarations: [CategoriesViewComponent],
providers: [{ provide: FacadeService, useClass: MockedFacadeService },
{ provide: Router, useClass: MockRouter }]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CategoriesViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
fit('should create', () => {
expect(component).toBeTruthy();
});
fit('should call navigate with correct params', () => {
component.editThis("5c7d5fde213e25232864dbe0");
expect(new MockRouter().navigate).toHaveBeenCalledWith(['/categories/edit'], { queryParams: { id: "5c7d5fde213e25232864dbe0" } });
});
});
答案 0 :(得分:0)
您已经可以使用路由器的模拟了。
答案 1 :(得分:0)
更改您的行:
expect(new MockRouter().navigate).toHaveBeenCalledWith(['/categories/edit'], { queryParams: { id: "5c7d5fde213e25232864dbe0" } });
到以下:
expect(TestBed.get(Router).navigate).toHaveBeenCalledWith(['/categories/edit'], { queryParams: { id: "5c7d5fde213e25232864dbe0" } });
这将获得在TestBed中实例化的实际路由器对象。
我希望这会有所帮助。