タグ付けされた質問 「spring-test-mvc」

11
mockMvcで応答本文の文字列を確認する方法
簡単な統合テストがあります @Test public void shouldReturnErrorMessageToAdminWhenCreatingUserWithUsedUserName() throws Exception { mockMvc.perform(post("/api/users").header("Authorization", base64ForTestUser).contentType(MediaType.APPLICATION_JSON) .content("{\"userName\":\"testUserDetails\",\"firstName\":\"xxx\",\"lastName\":\"xxx\",\"password\":\"xxx\"}")) .andDo(print()) .andExpect(status().isBadRequest()) .andExpect(?); } 最後の行で、応答の本文で受け取った文字列を期待される文字列と比較したい そしてそれに応えて私は得る: MockHttpServletResponse: Status = 400 Error message = null Headers = {Content-Type=[application/json]} Content type = application/json Body = "Username already taken" Forwarded URL = null Redirected URL = null content()、body()を使用していくつかのトリックを試しましたが、何も機能しませんでした。

5
jsonpathでメンバーをカウントしますか?
JsonPathを使用してメンバーの数をカウントすることは可能ですか? Spring MVCテストを使用して、生成するコントローラーをテストしています {"foo": "oof", "bar": "rab"} と standaloneSetup(new FooController(fooService)).build() .perform(get("/something").accept(MediaType.APPLICATION_JSON)).andExpect(status().isOk()) .andExpect(jsonPath("$.foo").value("oof")) .andExpect(jsonPath("$.bar").value("rab")); 生成されたjsonに他のメンバーが存在しないことを確認したいのですが。うまくいけば、jsonPathを使用してそれらを数えることによって。出来ますか?代替ソリューションも歓迎します。
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.