作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为具有注入(inject)身份验证参数的 Controller 编写单元测试
@RequestMapping(value = Mappings.PEOPLE, method = RequestMethod.POST)
public ResponseEntity<?> people(HttpServletRequest request, Authentication authentication, @RequestBody Person person) {
...
}
我不知道如何在测试中设置身份验证。这是我到目前为止所拥有的。
@RunWith(SpringRunner.class)
public class PeopleTest {
@Before
public void setUp() {
RestAssuredMockMvc.standaloneSetup(new PeopleController());
}
@Test
public void testKanbanOnlyScan() {
SecurityContextHolder.getContext().setAuthentication(new UsernamePasswordAuthenticationToken("username", "password"));
given()
.contentType(MediaType.APPLICATION_JSON_VALUE)
.body(new Person("Davey Jones"))
.when()
.post("/people")
.then()
.statusCode(is(HttpStatus.OK.value()));
}
}
但是在测试期间我的 Controller 中的身份验证为空。如何将身份验证注入(inject) Controller ?
最佳答案
您可以使用 MockMVC 来测试您的 Controller ,例如:
@Autowired
MockMVC mockMvc;
mockMvc.perform("/your-controller-path").with(authentication(authentication))
有关更多详细信息,请查看 spring 文档
关于java - RestAssuredMockMvc 中注入(inject)身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47838161/
我正在为具有注入(inject)身份验证参数的 Controller 编写单元测试 @RequestMapping(value = Mappings.PEOPLE, method = Request
我开发了一个带有rest方法的Spring MVC webapp。我很想使用 RestAssured 创建 JUnit 测试类。从文档来看,它看起来很简单,但我遇到了一些问题。基本上我想用它来避免运行
我是一名优秀的程序员,十分优秀!