- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 http 拦截器中测试 retryWhen 运算符,但在尝试多次重复我的服务调用时出现错误:
“错误:需要一个匹配条件的请求”匹配 URL:http://someurl/tesdata “,没有找到。”
所以我有两个问题。首先,我是否打算以正确的方式进行测试,其次,为什么我不能在没有匹配错误的情况下发出多个服务请求?
我的拦截器工作正常并且正在使用 rxjs retryWhen 运算符例如:
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req).pipe(
retryWhen(errors => errors
.pipe(
concatMap((err:HttpErrorResponse, count) => iif(
() => (count < 3),
of(err).pipe(
delay((2 + Math.random()) ** count * 200)),
throwError(err)
))
))
);
}
}
我的测试服务:
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
@Injectable({
providedIn: 'root'
})
export class InterceptorTestService {
constructor(private httpClient: HttpClient) { }
getSomeData() : Observable<boolean>{
return this.httpClient
.get('http://someurl/tesdata').pipe(
map(()=>{
return true;
})
)
}
}
我的规范:
import { InterceptorTestService } from './interceptor-test.service';
import { HttpClientTestingModule, HttpTestingController, TestRequest } from '@angular/common/http/testing';
describe('InterceptorTestService', () => {
let service: InterceptorTestService;
let backend: HttpTestingController;
beforeEach(() => TestBed.configureTestingModule({
providers: [InterceptorTestService],
imports: [HttpClientTestingModule]
}));
beforeEach(() =>{
service = TestBed.get(InterceptorTestService),
backend = TestBed.get(HttpTestingController)
});
it('should be created', () => {
service.getSomeData().subscribe();
const retryCount = 3;
for (var i = 0, c = retryCount + 1; i < c; i++) {
let req = backend.expectOne('http://someurl/tesdata');
req.flush("ok");
}
});
});
最佳答案
我只是遇到了完全相同的问题,在阅读了这个 SO 答案并根据我的需要对其进行了调整后已经解决了:
Angular 7 testing retryWhen with mock http requests fails to actually retry
正在添加的关键部分:
这就是我的测试现在的样子,以供引用,以防万一它可以帮助您到达目的地(很抱歉没有根据您的需要对其进行完美调整):
it("addLicensedApplication() should return an error command result if an error occurs", fakeAsync(() => {
let errResponse: any;
const mockErrorResponse = { status: 400, statusText: "Bad Request" };
service
.addLicensedApplication(aCompanyId, LicensedApplicationFlag.workshopPro)
.subscribe(res => res, err => errResponse = err);
const retryCount = 5;
for (let i = 0, c = retryCount + 1; i < c; i += 1) {
const req = httpMock
.expectOne(`${env.apiProtocol}${env.apiUrl}${Constants.addLicensedApplicationUrl}`);
req.flush(CommandResultErrorFixture, mockErrorResponse);
tick(2500);
}
expect(errResponse.error).toBe(CommandResultErrorFixture);
}));
afterEach(() => {
httpMock.verify();
});
关于Angular 单元测试 - 在 HttpInterceptor 中测试 retryWhen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58972065/
在我的应用程序中,身份验证基于 JWT token 。为了使它们无效,我在 JWT 中放置了一个随机安全字符串,并将完全相同的字符串存储在数据库中,与拥有 token 的用户相关联。这两个必须匹配 J
我编写了一个 HttpInterceptor(Angular 4.3.6)来捕获所有请求并操作一些头字段。我的问题是它没有捕捉到每个请求。可能是什么问题呢? 这是我的拦截器: import {Inje
如果满足特定条件,我必须在拦截器中调用另一个服务,并且我希望原始服务等待新服务完成。我的第一个解决方案是使用 Tap: intercept(req: HttpRequest, options: any
我有一个 HttpInterceptor,我希望它能重构我的错误以删除括号。 @Injectable() export class AuthInterceptor implements HttpInt
我正在编写使用 IndexedDB 缓存数据的 Angular 应用程序。 每当应用程序即将对服务器进行特定的 http 调用时我想从 IndexedDB 检索此数据并丰富或替换来自服务器的响应。 问
在 HttpInterceptor 中捕获到 401 错误时是否可以导航到特定路由? 我尝试做的是: intercept(req: HttpRequest, next: HttpHandler): O
我正在使用 Angular 4.3.1 和 HttpClient。有一个 HttpInterceptor 来设置一些 header 。 在某些 http get 请求中,我需要设置不同的 header
我想要实现的目标 一个封装的应用程序(表单编辑器),我可以在另一个 Angular 应用程序中使用,也可以在任何 Web 应用程序中使用。 想法 主要模块/组件可以实现为 Angular 库(主要组件
此拦截器的目标是在服务器需要验证码 key 时重新发送请求。 但是在应该刷新 jwt token 时可以使用它。 拦截器工作正常,但我无法解释测试失败的原因。 如果响应代码 != 200,流将永远不会
我在 HttpInterceptor 的响应中缺少 http header 。我可以得到一个正文,但不能得到标题。请参阅附加的输出和我的代码。 @Injectable() export class A
我有一个带有 HttpInterceptor 的 Angular 应用程序,它捕获 http 错误以显示一些对话框,这对我的所有应用程序都是通用的。 我想禁用某些特定调用的拦截器,但我更喜欢禁用调用
我在为 Angular 7 应用程序中的子模块注册 HttpInterceptor 时遇到问题。我的意图是只拦截和调整从子模块执行的请求。拦截器的代码如下。 import {Injectable} f
@Injectable() export class MyInterceptor implements HttpInterceptor { intercept(req : HttpReques
我目前正在将我的 Angular 应用程序切换到通用 ssr 应用程序。我的最后一个问题是我的自定义 HttpInterceptor 触发了两次。我正在检查 api 调用的 http 响应代码,如果有
我现在有一个拦截器来处理我的 $http 错误。它看起来有点像这样: .factory('RequestsErrorHandler', ['$q', '$injector', '$rootScope'
是否可以从 HttpInterceptor 调用组件中的函数? @Injectable() export class HttpResponseInterceptor implements HttpIn
是否有可能在执行 rxjs 的一些可管道运算符后拦截 HttpClient get 请求。在我的例子中,我有一个自动生成的 http 服务,它将 blob 响应转换为对象。我的全局错误拦截器也需要转换
我编写了一个 Angular (4.3.6) HttpInterceptor 来添加一些 header 字段,但如果我在调试器中检查它们,则 header 不会更新。有什么想法吗? import {I
Angluar 5 HttpInterceptor 如何在出错时重试请求? Angular 文档没有显示 HttpInterceptor 重试的示例: https://angular.io/guide
我有一个全局 HttpInterceptor,它带有一个处理 HttpErrorResponse 的 catch block 。但我的要求是,当服务进行 http 调用并且还有错误处理程序时,我希望服
我是一名优秀的程序员,十分优秀!