欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用WireMock 伪造 Rest 服务

程序员文章站 2024-01-19 11:37:52
...

WireMock 是基于 HTTP 的模拟器。它具备 HTTP 响应存根、请求验证、代理/拦截、记录和回放功能。
当开发人员的开发进度不一致时,可以依赖 WireMock 构建的接口,模拟不同请求与响应,从而避某一模块的开发进度。

官方文档:http://wiremock.org/docs/running-standalone/

1. 搭建wireMock单机服务

1.1 下载jar包

服务jar包下载:http://repo1.maven.org/maven2/com/github/tomakehurst/wiremock-standalone/2.14.0/wiremock-standalone-2.14.0.jar

1.2 启动jar

java -jar wiremock-standalone-2.14.0.jar --port 9000
我在这里用9000端口启动
使用WireMock 伪造 Rest 服务

好了,看到上面的图案说明服务就搭建好了。

2. 向服务里注册Rest服务

2.1 导入依赖
        <dependency>
            <groupId>com.github.tomakehurst</groupId>
            <artifactId>wiremock</artifactId>
        </dependency>
2.2 写一个简单的模拟Rest
/**
 * Created by Fant.J.
 */
public class MockServer {
    public static void main(String[] args) {
        //通过端口连接服务
        WireMock.configureFor(9000);
        //清空之前的配置
        WireMock.removeAllMappings();

        //get请求
        WireMock.stubFor(WireMock.get(WireMock.urlPathEqualTo("/user/1"))
                .willReturn(WireMock.aResponse()
                 //body里面写 json
                .withBody("{\"username\":FantJ}")
                 //返回状态码
                .withStatus(200)));

    }
}

运行这个main方法。
使用WireMock 伪造 Rest 服务
然后访问 http://127.0.0.1:9000/user/1
使用WireMock 伪造 Rest 服务

企业级开发封装

/**
 * Created by Fant.J.
 */
public class MockServer {
    public static void main(String[] args) throws IOException {
        //通过端口连接服务
        WireMock.configureFor(9000);
        //清空之前的配置
        WireMock.removeAllMappings();

        //调用 封装方法
        mock("/user/2","user");


    }

    private static void mock(String url, String filename) throws IOException {
        ClassPathResource resource = new ClassPathResource("/wiremock/"+filename+".txt");
        String content = FileUtil.readAsString(resource.getFile());

        //get请求
        WireMock.stubFor(WireMock.get(WireMock.urlPathEqualTo(url))
                .willReturn(WireMock.aResponse()
                        //body里面写 json
                        .withBody(content)
                        //返回状态码
                        .withStatus(200)));
    }
}

其中,user.txt文件在这里
使用WireMock 伪造 Rest 服务
文本内容:
使用WireMock 伪造 Rest 服务

然后我们运行程序,访问http://127.0.0.1:9000/user/2

使用WireMock 伪造 Rest 服务