gpt4 book ai didi

java - 集成测试中 Spring Controller 中的 Mock Feign 客户端

转载 作者:行者123 更新时间:2023-12-02 05:05:05 26 4
gpt4 key购买 nike

我有一个使用内部不同服务的网关 Controller 。我尝试编写集成测试来模拟 Controller 的假客户端,但它没有按我的预期工作。

我有以下 Feign 客户端:

public interface StoreManagementClient {
@RequestLine("GET /v1/stores/{storeId}")
@Headers({"Accept: application/json", "Content-Type: application/json;charset=UTF-8"})
StoreDetails getStoreDetails(@Param("storeId") String storeId);
}

商店 Controller :

@Validated
@Controller
@RequestMapping("${gateway.path}")
public class StoreController {

@Autowired
private StoreManagementClient storeManagementClient;

@GetMapping(value = "/stores/{storeId}", produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<StoreDetails> getStoreDetails(
@PathVariable("storeId") String storeId) {
StoreDetails details = storeManagementClient.getStoreDetails(storeId);
return ResponseEntity.ok(details);
}
}

以及集成测试:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = {GatewayServiceApplication.class},
webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
public class ClientIntegrationTest {
@Autowired
private StoreController storeController;

@MockBean
private StoreManagementClient storeManagementClient;

private MockClient mockClient;

@Before
public void setUp() throws Exception {
mockClient = new MockClient();
}

@Test
public void testCorrectGetStoreDetailsRequest() throws JsonProcessingException {

String storeId = "store-1";

StoreDetails storeDetails = new StoreDetails();
storeDetails.setId(storeId);
storeDetails.setType("grocery");

String response = new ObjectMapper().writeValueAsString(storeDetails);

storeManagementClient = Feign.builder()
.encoder(new JacksonEncoder())
.decoder(new JacksonDecoder())
.client(mockClient
.ok(RequestKey.builder(feign.mock.HttpMethod.GET, "/v1/stores/" + sroreId)
.headers(ImmutableMap.of(
ACCEPT, newArrayList("application/json"),
CONTENT_TYPE, newArrayList("application/json;charset=UTF-8"))).build(),
response
))
.target(new MockTarget<>(StoreManagementClient.class));

// when
ResponseEntity<StoreDetails> result = storeController.getStoreDetails(storeId);

// then
StoreDetails resultBody = result.getBody();

assertThat(result.getStatusCode()).isEqualTo(HttpStatus.OK);
assertThat(resultBody.getId()).isEqualTo(storeId);
assertThat(resultBody.getType()).isEqualTo("grocery");
}

我认为测试应该根据描述的 Feign Client 模拟响应。但实际上它返回null

我应该在 mock Feign 客户端时做错什么吗?可能,我混合了一个测试 Feign 客户端和我自己的 Controller ,我需要将其分开并为 Feign 客户端编写单元测试,如 Mock Feign Client example ?如果有任何建议,我将不胜感激

最佳答案

首先,用模拟替换 feign 客户端 StoreManagementClient:

@MockBean
private StoreManagementClient storeManagementClient;

然后在测试中您丢失了对模拟的引用并指向本地对象:

storeManagementClient = Feign.builder()....build();

但 Controller 仍然使用模拟

在纯java中,你可以做类似的事情:

Client client = new Client(null);
Controller controller = new Controller(client);
client = new Client(1);
assertThat(controller.get()).isEqualTo(1)) // no no no: is equal to null
PS。我希望将来我的回答是有建设性的

关于java - 集成测试中 Spring Controller 中的 Mock Feign 客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56358145/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com