在集成测试中使用 TestRestTemplate 测试 OncePerRequestFilter

发布于 2025-01-10 20:08:02 字数 1005 浏览 0 评论 0原文

我的 OncePerRequestFilter 类结构如下:

@Component
Class FilterA extends OncePerRequestFilter{

@Override
protected void doFilterInternal(HttpServletRequest req, HttpServletResponse res, FilterChain chain){

Obj A = externalService1();
Obj B = externalService2();

req.setAttribute("attr1", A);
req.setAttribute("attr2", B);

chain.doFilter(req,res);

}

}

我想编写一个集成测试,它将启动应用程序上下文并允许我再次向正在运行的服务器提交 http 请求。为此,我使用了如下所示的 TestRestTemplate

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class TestA {

@Test
public void testResponse(){

MultiValueMap<String, String> headers = new LinkedMultiValueMap<>();
headers.add("Authorisation" : "sdsfsfsfsfsd");
ResponseEntity<String> entity = new TestRestTemplate().exchange(
"http://localhost:" + port + "/endpoint/", HttpMethod.GET , new HttpEntity<Object>(headers), String.class);

}

我的问题是,这直接到达控制器并完全跳过过滤器。有没有办法强制执行 TestRestTemplate 中上面的过滤器类?

My OncePerRequestFilter class structure is as follows :

@Component
Class FilterA extends OncePerRequestFilter{

@Override
protected void doFilterInternal(HttpServletRequest req, HttpServletResponse res, FilterChain chain){

Obj A = externalService1();
Obj B = externalService2();

req.setAttribute("attr1", A);
req.setAttribute("attr2", B);

chain.doFilter(req,res);

}

}

I want to write an integration test that will spin up the application context and allow me to submit a http request again the running server. For this purpose I used TestRestTemplate like below

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class TestA {

@Test
public void testResponse(){

MultiValueMap<String, String> headers = new LinkedMultiValueMap<>();
headers.add("Authorisation" : "sdsfsfsfsfsd");
ResponseEntity<String> entity = new TestRestTemplate().exchange(
"http://localhost:" + port + "/endpoint/", HttpMethod.GET , new HttpEntity<Object>(headers), String.class);

}

My problem is that this directly reaches the controller and skips the Filter altogether. Is there a way to force the execution of the filter class above in the TestRestTemplate?.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文