第一节 moco框架的基本介绍
1.mock平台功能介绍
get方法,post方法,header,cookie,重定向
不仅给测试人员使用,还可以给前端开发人员使用
2.mock框架为github开源项目https://github.com/dreamhead/moco/tree/master/moco-runner
或jar包下载地址 https://repo1.maven.org/maven2/com/github/dreamhead/moco-runner/0.11.0/
第二节 moco的启动及第一个demo
在项目中新建文件夹为xxx,把下载的mocojar包copy到该文件夹下
启动方式:java -jar ./moco-runner-0.11.0-standalone.jar http -p 8888 -c startup1.json
-p后跟端口号,-c后跟json配置文件(json配置文件 可以是绝对路径也可以是相对路径,都是针对执行该命令行的路径来说的 )
第一个demo:
[
{
"description": "这是第一个mock Demo",
"request": {
"uri": "/demo"
},
"response": {
"te