本文整理汇总了TypeScript中@angular/common/http/testing.HttpTestingController类的典型用法代码示例。如果您正苦于以下问题:TypeScript HttpTestingController类的具体用法?TypeScript HttpTestingController怎么用?TypeScript HttpTestingController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了HttpTestingController类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('HttpService', () => {
let httpCacheService: HttpCacheService;
let http: HttpClient;
let httpMock: HttpTestingController;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
providers: [
ErrorHandlerInterceptor,
CacheInterceptor,
ApiPrefixInterceptor,
HttpCacheService,
{
provide: HttpClient,
useClass: HttpService
}
]
});
});
beforeEach(inject(
[HttpClient, HttpTestingController, HttpCacheService],
(
_http: HttpClient,
_httpMock: HttpTestingController,
_httpCacheService: HttpCacheService
) => {
http = _http;
httpMock = _httpMock;
httpCacheService = _httpCacheService;
}
));
afterEach(() => {
httpCacheService.cleanCache();
httpMock.verify();
});
it('should use error handler, API prefix and no cache by default', () => {
// Arrange
let interceptors: HttpInterceptor[];
const realRequest = http.request;
spyOn(HttpService.prototype, 'request').and.callFake(function(this: any) {
interceptors = this.interceptors;
return realRequest.apply(this, arguments);
});
// Act
const request = http.get('/toto');
// Assert
request.subscribe(() => {
expect(http.request).toHaveBeenCalled();
expect(
interceptors.some(i => i instanceof ApiPrefixInterceptor)
).toBeTruthy();
expect(
interceptors.some(i => i instanceof ErrorHandlerInterceptor)
).toBeTruthy();
expect(interceptors.some(i => i instanceof CacheInterceptor)).toBeFalsy();
});
httpMock.expectOne({}).flush({});
});
it('should use cache', () => {
// Arrange
let interceptors: HttpInterceptor[];
const realRequest = http.request;
spyOn(HttpService.prototype, 'request').and.callFake(function(this: any) {
interceptors = this.interceptors;
return realRequest.apply(this, arguments);
});
// Act
const request = http.cache().get('/toto');
// Assert
request.subscribe(() => {
expect(
interceptors.some(i => i instanceof ApiPrefixInterceptor)
).toBeTruthy();
expect(
interceptors.some(i => i instanceof ErrorHandlerInterceptor)
).toBeTruthy();
expect(
interceptors.some(i => i instanceof CacheInterceptor)
).toBeTruthy();
});
httpMock.expectOne({}).flush({});
});
it('should skip error handler', () => {
// Arrange
let interceptors: HttpInterceptor[];
const realRequest = http.request;
spyOn(HttpService.prototype, 'request').and.callFake(function(this: any) {
interceptors = this.interceptors;
return realRequest.apply(this, arguments);
});
//.........这里部分代码省略.........
示例2: describe
describe('RoleService', () => {
let service: RoleService;
let httpTesting: HttpTestingController;
configureTestBed({
providers: [RoleService],
imports: [HttpClientTestingModule]
});
beforeEach(() => {
service = TestBed.get(RoleService);
httpTesting = TestBed.get(HttpTestingController);
});
afterEach(() => {
httpTesting.verify();
});
it('should be created', () => {
expect(service).toBeTruthy();
});
it('should call list', () => {
service.list().subscribe();
const req = httpTesting.expectOne('api/role');
expect(req.request.method).toBe('GET');
});
it('should call delete', () => {
service.delete('role1').subscribe();
const req = httpTesting.expectOne('api/role/role1');
expect(req.request.method).toBe('DELETE');
});
it('should call get', () => {
service.get('role1').subscribe();
const req = httpTesting.expectOne('api/role/role1');
expect(req.request.method).toBe('GET');
});
it('should check if role name exists', () => {
let exists: boolean;
service.exists('role1').subscribe((res: boolean) => {
exists = res;
});
const req = httpTesting.expectOne('api/role');
expect(req.request.method).toBe('GET');
req.flush([{ name: 'role0' }, { name: 'role1' }]);
expect(exists).toBeTruthy();
});
it('should check if role name does not exist', () => {
let exists: boolean;
service.exists('role2').subscribe((res: boolean) => {
exists = res;
});
const req = httpTesting.expectOne('api/role');
expect(req.request.method).toBe('GET');
req.flush([{ name: 'role0' }, { name: 'role1' }]);
expect(exists).toBeFalsy();
});
});
示例3: describe
describe('RbdTrashPurgeModalComponent', () => {
let component: RbdTrashPurgeModalComponent;
let fixture: ComponentFixture<RbdTrashPurgeModalComponent>;
let httpTesting: HttpTestingController;
configureTestBed({
imports: [
HttpClientTestingModule,
ReactiveFormsModule,
SharedModule,
ToastModule.forRoot(),
RouterTestingModule
],
declarations: [RbdTrashPurgeModalComponent],
providers: [BsModalRef]
});
beforeEach(() => {
fixture = TestBed.createComponent(RbdTrashPurgeModalComponent);
httpTesting = TestBed.get(HttpTestingController);
component = fixture.componentInstance;
});
it('should create', () => {
fixture.detectChanges();
expect(component).toBeTruthy();
});
it(
'should finish ngOnInit',
fakeAsync(() => {
component.poolPermission = new Permission(['read', 'create', 'update', 'delete']);
fixture.detectChanges();
const req = httpTesting.expectOne('api/pool?attrs=pool_name,application_metadata');
req.flush([
{
application_metadata: ['foo'],
pool_name: 'bar'
},
{
application_metadata: ['rbd'],
pool_name: 'baz'
}
]);
tick();
expect(component.pools).toEqual(['baz']);
expect(component.purgeForm).toBeTruthy();
})
);
it('should call ngOnInit without pool permissions', () => {
component.poolPermission = new Permission([]);
component.ngOnInit();
httpTesting.expectOne('api/summary');
httpTesting.verify();
});
describe('should call purge', () => {
let notificationService: NotificationService;
let modalRef: BsModalRef;
let req;
beforeEach(() => {
fixture.detectChanges();
notificationService = TestBed.get(NotificationService);
modalRef = TestBed.get(BsModalRef);
component.purgeForm.patchValue({ poolName: 'foo' });
spyOn(modalRef, 'hide').and.stub();
spyOn(component.purgeForm, 'setErrors').and.stub();
spyOn(notificationService, 'show').and.stub();
component.purge();
req = httpTesting.expectOne('api/block/image/trash/purge/?pool_name=foo');
});
it('with success', () => {
req.flush(null);
expect(component.purgeForm.setErrors).toHaveBeenCalledTimes(0);
expect(component.modalRef.hide).toHaveBeenCalledTimes(1);
});
it('with failure', () => {
req.flush(null, { status: 500, statusText: 'failure' });
expect(component.purgeForm.setErrors).toHaveBeenCalledTimes(1);
expect(component.modalRef.hide).toHaveBeenCalledTimes(0);
});
});
});
示例4: describe
describe('ApiInterceptorService', () => {
let notificationService: NotificationService;
let httpTesting: HttpTestingController;
let httpClient: HttpClient;
let router: Router;
const url = 'api/xyz';
const httpError = (error, errorOpts, done = (_resp) => {}) => {
httpClient.get(url).subscribe(
() => {},
(resp) => {
// Error must have been forwarded by the interceptor.
expect(resp instanceof HttpErrorResponse).toBeTruthy();
done(resp);
}
);
httpTesting.expectOne(url).error(error, errorOpts);
};
const runRouterTest = (errorOpts, expectedCallParams) => {
httpError(new ErrorEvent('abc'), errorOpts);
httpTesting.verify();
expect(router.navigate).toHaveBeenCalledWith(...expectedCallParams);
};
const runNotificationTest = (error, errorOpts, expectedCallParams) => {
httpError(error, errorOpts);
httpTesting.verify();
expect(notificationService.show).toHaveBeenCalled();
expect(notificationService.save).toHaveBeenCalledWith(expectedCallParams);
};
const createCdNotification = (type, title?, message?, options?, application?) => {
return new CdNotification(new CdNotificationConfig(type, title, message, options, application));
};
configureTestBed({
imports: [AppModule, HttpClientTestingModule],
providers: [
NotificationService,
i18nProviders,
{
provide: ToastsManager,
useValue: {
error: () => true
}
}
]
});
beforeEach(() => {
const baseTime = new Date('2022-02-22');
spyOn(global, 'Date').and.returnValue(baseTime);
httpClient = TestBed.get(HttpClient);
httpTesting = TestBed.get(HttpTestingController);
notificationService = TestBed.get(NotificationService);
spyOn(notificationService, 'show').and.callThrough();
spyOn(notificationService, 'save');
router = TestBed.get(Router);
spyOn(router, 'navigate');
});
it('should be created', () => {
const service = TestBed.get(ApiInterceptorService);
expect(service).toBeTruthy();
});
describe('test different error behaviours', () => {
beforeEach(() => {
spyOn(window, 'setTimeout').and.callFake((fn) => fn());
});
it('should redirect 401', () => {
runRouterTest(
{
status: 401
},
[['/login']]
);
});
it('should redirect 403', () => {
runRouterTest(
{
status: 403
},
[['/403']]
);
});
it('should show notification (error string)', () => {
runNotificationTest(
'foobar',
{
status: 500,
statusText: 'Foo Bar'
},
//.........这里部分代码省略.........
示例5: beforeEach
beforeEach(() => {
testData = getTestContribs();
httpMock.expectOne({}).flush(testData);
contribService.contributors.subscribe(results => contribs = results);
});
示例6: it
it(`should call the API once even if it is called multiple times`, fakeAsync(() => {
expectSettingsApiCall(exampleUrl, { value: exampleValue }, exampleValue);
testConfig(exampleUrl, exampleValue);
httpTesting.expectNone(exampleUrl);
expect(increment).toBe(2);
}));
示例7: afterEach
afterEach(() => {
httpClient.verify();
});
示例8: afterEach
afterEach(() => {
mockBackend.verify();
});
示例9: it
it('should call delete', () => {
service.delete('role1').subscribe();
const req = httpTesting.expectOne('api/role/role1');
expect(req.request.method).toBe('DELETE');
});
示例10: httpError
const runNotificationTest = (error, errorOpts, expectedCallParams) => {
httpError(error, errorOpts);
httpTesting.verify();
expect(notificationService.show).toHaveBeenCalled();
expect(notificationService.save).toHaveBeenCalledWith(expectedCallParams);
};