私は自分のWebアプリをテストしています
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = MyApp.class)
//@WebAppConfiguration
@WebIntegrationTest
public class MyTest {
private MockMvc mockMvc;
@Autowired
private WebApplicationContext webApplicationContext;
}
@Before
public void setup() throws Exception {
this.mockMvc = webAppContextSetup(webApplicationContext)
.apply(springSecurity())
.build();
}
@Test
public void someTest() throws Exception {
result = mockMvc.perform(get("/user/"));
result
.andExpect(status().isOk())
.andExpect(content().contentType(contentType))
...
}
Filler を使用してテストがどのように実行されるかを観察することはできますか? それとも、ネットワークなしで送信しますか? 強制的MockMvc
にネットワークを使用することはできますか?
現在、Fiddler には何も表示されません。
の設定
System.getProperties().put("http.proxyHost", "127.0.0.1");
System.getProperties().put("http.proxyPort", "8888");
役に立ちませんでした。