使用Python脚本测试
安装pycurl包:
1 | pip install pycurl |
安装时可能会出现如下问题:
1 | Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-jzTgwZ/pycurl |
使用如下命令安装依赖包:
1 | apt-get install libcurl4-openssl-dev |
使用rest-assured框架测试
rest-assured框架用于测试REST方式的接口,使用JSON schema验证返回体,大大的简化了测试代码。esting and validation of REST services in Java is harder than in dynamic languages such as Ruby and Groovy. REST Assured brings the simplicity of using these languages into the Java domain.
引入依赖包
在Gradle中,引入rest-assured框架的依赖包和TestNG的依赖包。
1 | project(':cc-api') { |
添加测试方法
测试方法如下:
1 | import common.TestPublicVariable; |
上述方法在请求头中加入认证信息,get中为请求的地址,根据返回的error code为0判断服务端成功处理了此次请求。测试结果如下图: