当前位置:   article > 正文

wiremock学习_wiremockserver

wiremockserver

wiremock学习

需求

  1. 经常需要对外调用,而且在内网,不能调用,这个时候只能部署到内网中才能完成测试工作

解决方案

修改代码

修改代码这种方式不太好,会增加冗余代码,项目上线时,还得修改代码

使用wiremock

造一个模拟服务器,就可以了

步骤

在pom.xml中增加配置

    <properties>
        <wiremock.version>2.27.2</wiremock.version>
    </properties>
    <dependency>
        <groupId>com.github.tomakehurst</groupId>
        <artifactId>wiremock</artifactId>
        <version>${wiremock.version}</version>
        <scope>test</scope>
    </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
案例
  1. 想增加一个服务器
  2. 服务器上增加一个接口,用于测试

代码

@ExtendWith(SpringExtension.class)
@SpringBootTest()
@Slf4j
public class TestGetUserInfo {

    /**
     * 模拟服务器
     */
    WireMockServer wireMockServer;
    /**
     * 用户id
     */
    String userId = "1";
    /**
     * 用户信息
     */
    String userInfo = "userInfo";

    @Resource
    private TestUtils testUtils;

    /**
     * 每次测试前,开启一个模拟服务器
     */
    @BeforeEach
    void setup() {
        int port = 8888;
        System.out.println("当前的模拟server的port是 = " + port);
        //新建一个WireMockServer对象
        wireMockServer = new WireMockServer(options().port(port));
        //开启这个对象
        wireMockServer.start();
        //配置主机地址和端口号
        configureFor("localhost", wireMockServer.port());
        //配置模拟的接口
        stubFor(post(urlEqualTo("/api/v1/" + userId)).willReturn(aResponse().withStatus(200).withBody(userInfo)));
    }

    /**
     * 测试获取用户信息
     *
     * @throws IOException
     */
    @Test()
    public void testGetUser() {
        String userInfo = testUtils.testGetUserInfo(userId);
        System.out.println("userInfo = " + userInfo);
    }

    /**
     * 每次测试结束后,关闭这个测试服务器
     */
    @AfterEach
    void teardown() {
        wireMockServer.stop();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/217009
推荐阅读
  

闽ICP备14008679号