当前位置:   article > 正文

基于Wiremock创建Mock Service平台_wiremock 开源详解mock平台

wiremock 开源详解mock平台

1、Wiremock工具介绍

一般开发项目都会分模块进行,比如都会把前端和后端分开,在前端和后端里面也通常是分模块开发的。当开发进度不一致时,可以对依赖接口构建Mock Service,模拟不同输入/数据/场景,这样不至于影响本模块的开发进度。构建Mock Service方法很多,今天介绍Wiremock,Wiremock非常轻便易用,甚至不用编程,一个jar包基本够用了,当然,也可以把它引用写进测试代码里。

官网地址:http://wiremock.org/

Jar包下载:http://repo1.maven.org/maven2/com/github/tomakehurst/wiremock-standalone/2.1.10/wiremock-standalone-2.1.10.jar

2、Wiremock工作原理

启动wiremock

java -jar wiremock-2.1.10-standalone.jar –port 9999 —verbose
  •  

(–port设定端口为9999; –verbose开启日志。更多参数需要参考: 
http://wiremock.org/docs/running-standalone/ 
启动后在同目录下生成两个空的文件夹:__files和mappings。__files是放上传/下载/录制文件的,mappings放response和request url的映射的。 
在mappings文件夹下随便创建一个*.json文件,比如长下面这样:

  1. "request": {
  2. "method": "GET",
  3. "url": "/api/testdetail"
  4. },
  5. "response": {
  6. "status": 200,
  7. "bodyFileName": "testdetail.json”,
  8. "headers": {
  9. "Content-Type": "application/json",
  10. "Cache-Control": "max-age=86400"
  11. }
  12. }
  13. }

bodyFileName还可以是html、xml等文档。 
在浏览器或者使用curl命令,调用http://localhost:9999/api/testdetail,就能返回testdetail.json的内容了。testdetail.json就是需要我们在__files里面建立的响应文件。wiremock也支持直接在response结构体中返回响应内容,比如在mapping文件中,将response写成下面这样:

  1. "response": {
  2. "status": 200,
  3. "body": “Hello world ",
  4. "headers": {
  5. "Content-Type": "application/json",
  6. "Cache-Control": "max-age=86400"
  7. }

当发送请求时候,将直接返回“Hello world”。

3、Wiremock支持的HTTP方法

HTTP方法支持GET, POST, PUT, DELETE, HEAD, TRACE, OPTIONS等,自定义头、数据模板(bodyPatterns,如不符合,抛出404错误),URL Template,Query参数匹配,显示指定文件内容等。下面将介绍如何使用wiremock实现这些。

3.1 POST

POST http://localhost:9999/api/products

  1. {
  2. "request": {
  3. "method": "POST",
  4. "url": "/api/products",
  5. "bodyPatterns": [
  6. {"equalToJson" : "{ \"name\": \"new product\", \"creator\": \"tester\", \"createTime\": \"2015-09-07\" }", "jsonCompareMode": "LENIENT"}
  7. ]
  8. },
  9. "response": {
  10. "status": 201,
  11. "body": "Add successfully.",
  12. "headers":{
  13. "x-token":"xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  14. }
  15. }
  16. }

3.2 PUT

PUT: http://localhost:9999/api/products/1

  1. {
  2. "request": {
  3. "method": "PUT",
  4. "url": "/api/products/1",
  5. "bodyPatterns": [{
  6. "equalToJson": "{ \"id\": 1, \"name\": \"new product\", \"creator\": \"tester\", \"createTime\": \"2015-09-07\" }",
  7. "jsonCompareMode": "LENIENT"
  8. }]
  9. },
  10. "response": {
  11. "status": 200,
  12. "body": "Update successfully.",
  13. "headers": {
  14. "x-token": " xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  15. }
  16. }
  17. }

3.3 DELETE

DELETE: http://localhost:9999/api/products/1

  1. {
  2. "request": {
  3. "method": "DELETE",
  4. "url": "/api/products/1"
  5. },
  6. "response": {
  7. "status": 204,
  8. "headers":{
  9. "x-token":" xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  10. }
  11. }
  12. }

3.4 URL Matching

URL Matching: http://localhost:9999/api/products/1(2/3…)

  1. {
  2. "request": {
  3. "method": "GET",
  4. "urlPattern": "/api/products/[0-9]+"
  5. },
  6. "response": {
  7. "status": 200
  8. }
  9. }

3.5 Query参数匹配

Query参数匹配:http://localhost:9999/api/products?search=china

  1. {
  2. "request": {
  3. "method": "GET",
  4. "urlPath": "/api/products",
  5. "queryParameters": {
  6. "search": {
  7. "contains": "chin"
  8. }
  9. }
  10. },
  11. "response": {
  12. "status": 200,
  13. "headers": {
  14. "Content-Type": "application/json"
  15. },
  16. "body": "{ \"id\": 7, \"name\": \"shan zai\", \"from\":\"China\" },{ \"id\": 7, \"name\": \"shan zai\", \"from\":\"China(RPC)\" }"
  17. }
  18. }

3.6 模拟错误

模拟404错误

  1. {
  2. "request": {
  3. "url": "/unknown.html",
  4. "method": "GET"
  5. },
  6. "response": {
  7. "status": 404,
  8. "headers": {
  9. "Content-Type": "text/html; charset=utf-8"
  10. }
  11. }
  12. }

3.7 设置响应延迟

  1. {
  2. "request": {
  3. "method": "GET",
  4. "url": "/delayed"
  5. },
  6. "response": {
  7. "status": 200,
  8. "bodyFileName": "mytest.json",
  9. "headers": {
  10. "Content-Type": "application/json",
  11. "Cache-Control": "max-age=86400"
  12. },
  13. "fixedDelayMilliseconds": 2000
  14. }
  15. }

4、Mock Service平台化

使用WireMock通过mappings和__files文件夹可以有效管理映射和返回内容文件。而这两个文件目前是手动编辑,如果可以做成平台化管理,所有接口通过创建完成,文件命名规则全部由系统进行管理,将节省的时间更多投入业务关注和及早进行自测,这样子的收益将会更大。

那怎么样的平台才算能够满足当前需求呢?

基于HTTP协议 
支持Url、UrlPattern匹配、Query参数 
支持数据存储 
API接口规范化管理 
提交表单即可生成mapping和__files所需文件 
不同项目接口有不同的前缀 
能够返回指定格式(json、xml、html等)内容 
能够设定响应延迟 
设置cookies 
设置headers 
支持用户验证

根据需求设计总体架构如下: 
包括前台和后台。前台负责接受用户的Mock设置,后台负责将用户的设置转换为WireMock所需要的mapping和__file文件,并提供查询功能。 
MockServer架构图 
这里写图片描述
根据架构图,做了总体设计如下: 
这里写图片描述
页面分为Mock项目管理和Mock API管理。Mock项目管理可以创建、修改、删除Mock项目,Mock PAI管理可以创建、修改、删除Mock的API。后台管理负责生成mapping和file文件、对wiremock进行重启等。

4.1 技术选型

由于大家对python都比较熟悉,也有过使用python的Flask框架进行开发经验,这次依然采用Flask+Mysql的方案。从界面录入到mapping、_files文件生成处理采用Python,后台工具使用WireMock的standalone模式,通过shell脚本进行一键启停管理,以及实时刷新url、mapping映射。

4.2 Mock项目管理页

4.2.1 添加项目

配置协议、进行mock服务器的重启、重新加载(有新的mapping、file文件生成系统会自动reset即可,当然手工reset也可以,即时加载无须重启服务等待)。 
这里写图片描述

4.2.2 显示项目

4.2.3 修改项目

4.2.4 删除项目

4.3 Mock API管理页

4.3.1 添加API

选择方法、URL类型,填写URL(如果选择URL类型为UrlPattern,则填写正则表达式),填写状态码、返回接口,以及返回头,就可以完成一个mock接口的创建。这些信息要存储到Mysql。 
这里写图片描述
1)手工输入 
适合响应体比较短小的情况 
这里写图片描述 
2)通过url获取 
返回体比较大,目标Mock接口已经存在,可以直接抓取生成文件; 
这里写图片描述 
3)上传文件的方式 
返回体比较大、目标Mock接口还未开发完成,手工上传返回内容的文件即可。 
这里写图片描述 
以上三种灵活的保存返回内容方式,最终保存的接口会按照以下格式生成mapping和__files所需文件。 
这里写图片描述

4.3.2 显示API

展示列表,列出相关URL、方法、是否正则、返回码、返回类型。 
这里写图片描述

4.3.2 修改API

4.3.3 删除API

4.4 MockServer后台

使用Java-WireMock进行后台服务,在项目配置页通过按钮:重启、重新加载,调用后台脚本:wiremock_controller.sh,脚本内容参考:

  1. #!/bin/bash
  2. if [ "$#" = 0 ];then
  3. echo "Usage: $0 (start|stop|restart|reset)"
  4. exit 1
  5. fi
  6. dirWiremock=`pwd`
  7. getCount=`ps -ef | grep "wiremock-1.53-standalone" | grep -v "grep" |wc -l`
  8. wiremock_jar=${dirWiremock}/wiremock-1.53-standalone.jar
  9. port=9999
  10. wiremock_url=http://localhost:${port}
  11. stop(){
  12. count=${getCount}
  13. if [ 1==${count} ];then
  14. curl -d log=aaa ${wiremock_url}/__admin/shutdown
  15. echo "Stop success!......"
  16. else
  17. echo "Already stop"
  18. fi
  19. }
  20. start(){
  21. count=${getCount}
  22. if [ 0==${count} ];then
  23. nohup java -jar ${wiremock_jar} --verbose=true --port=${port} &
  24. echo "Start success!......"
  25. else
  26. echo "Already start"
  27. fi
  28. }
  29. if [ "$1" = "restart" ];then
  30. count=${getCount}
  31. if [ 1==${count} ];then
  32. echo "Wiremock is running,wait for restarting! ...."
  33. stop
  34. echo "Start wiremock......"
  35. start
  36. else
  37. start
  38. fi
  39. elif [ "$1" = "start" ];then
  40. echo "Start wiremock......"
  41. start
  42. elif [ "$1" = "stop" ];then
  43. echo "Stop wiremock......"
  44. stop
  45. elif [ "$1" = "reset" ];then
  46. count=${getCount}
  47. if [ 0==${count} ];then
  48. echo "Wiremock must be running before reset,wait for starting! ...."
  49. start
  50. fi
  51. curl -d log=aaa ${wiremock_url}/__admin/mappings/reset
  52. echo "Reset success!......"
  53. fi

其中: 
“nohup java -jar wiremockjar−−verbose=true−−port=wiremockjar−−verbose=true−−port={port} &”:在linux系统后台运行WireMock; 
“curl -d log=aaa ${wiremock_url}/__admin/mappings/reset”:是通过发送POST请求,重新加载新生成的配置文件。

5、总结

Mock API接口是非常必要的,因为不同研发组的系统之间的数据交互往往是通过接口来实现,当不同组接口开发不同步时,接口测试无法及早参与,对接调试比较困难。这样势必导致软件开发迭代变慢,没有时间对质量进行充分验证。 
可以借鉴《自动化单元测试实践之路》在单元测试中,使用Mockito对依赖进行Mock,那同样道理,使用Mock技术也可以对HTTP API进行Mock,按照这个思路探索下去,看看有没有开源解决方案,是否能够解决当前问题,如果可以就不用重复写一套解决方案;如果不行,那能否基于开源的做二次开发呢?

6、参考文档

http://wiremock.org/docs/ 
http://www.infoq.com/cn/articles/evolution-of-httpservermock-from-hand-to-platform/

原创: https://blog.csdn.net/liuchunming033/article/details/52399397

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/217003
推荐阅读
相关标签
  

闽ICP备14008679号