- 浏览: 34406 次
-
最新评论
文章列表
<!-- jackson begin -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.1.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupI ...
- 2018-02-12 15:38
- 浏览 595
- 评论(0)
Wisdom RESTClient V1.2版本开始支持命令行方式运行。
工具地址:
https://github.com/Wisdom-Projects/rest-client
使用说明:java -jar restclient-1.2.jar [-参数] [文件]
没有指定参数将启动rest-client主界面
没有指定文件将使用默认的work/http_history.json
-help 打印帮助信息
例如: java -jar restclient-1.2.jar -help
-gui 启动rest-client主 ...
- 2018-02-07 21:35
- 浏览 219
- 评论(0)
使用Wisdom RESTClient V1.1 自动化测试API,默认是对返回HTTP状态码和body内容进行校验的。
如果您的API返回body内容是变化的,可以通过设置来取消对body内容的校验。
选择History视图,在 AssertBody 列对需要取消校验的记录进行去除勾选。
- 2018-01-27 13:04
- 浏览 313
- 评论(0)
使用Wisdom RESTClient自动化测试REST API,生成REST API文档,
需要先执行命令java -jar restclient-1.2.jar启动Wisdom RESTClient界面。
先使用工具测试REST API,产生历史记录。
选择菜单选项 Apidoc --> Create 生成API文档: work/apidoc/apidoc.html
选择菜单选项 Test --> Start Test 生成测试报告: work/report/report.html
用浏览器手动打开这些HTML文件。
- 2018-01-27 13:00
- 浏览 277
- 评论(0)
Wisdom RESTClient 支持自动化测试RESTful API,输出精美的测试报告,生成精美的RESTful API文档。
这里介绍一下如何定制个性化的RESTful API文档。
定制个性化API文档前请先使用工具测试REST API,产生历史记录;
再去选择菜单选项 Apidoc --> Create生成API文档;
最后,修改数据文件work/apidoc/js/apidata.js
根据您的实际需求可以修改如下属性:
修改默认的文档描述(详见属性api_description);
修改默认的请求/响应参数(详见属性model);
修改API简介(详见api_summa ...
- 2017-12-25 19:41
- 浏览 186
- 评论(0)
Wisdom REST Client V1.2 支持自动化测试RESTful API并生成精美的测试报告,同时基于历史数据自动生成精美的RESTful API文档。
工具地址:https://github.com/Wisdom-Projects/rest-client
- 2017-12-02 21:40
- 浏览 217
- 评论(0)
1.RESTful API接口定义
/*
* Copyright 2016-2017 WitPool.org All Rights Reserved.
*
* You may not use this file except in compliance with the License.
* A copy of the License is located at
* http://www.witpool.org/licenses
*
* or in the "license" file accompanying this file. This fil ...
- 2017-12-02 15:48
- 浏览 206
- 评论(0)
1.Spring Boot configurations application.yml
spring:
profiles:
active: dev
mvc:
favicon:
enabled: false
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/wit_neptune?createDatabaseIfNotExist=true&useUnicode=true&characterEncodin ...
- 2017-12-02 15:42
- 浏览 264
- 评论(0)
1.Spring Boot configurations application.yml
spring:
profiles:
active: dev
mvc:
favicon:
enabled: false
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/wit_neptune?createDatabaseIfNotExist=true&useUnicode=true&characterEncodin ...
- 2017-12-02 15:41
- 浏览 310
- 评论(0)
Spring Boot需要写大量的Junit代码来测试REST API, 这点让不了解代码的人很头疼。如果使用REST client工具测试REST API,很多REST Client工具是不支持自动化测试的,每次都在进行重复的测试,这也会耗费太多的时间去做重复的工作。急需一个适合测试Spring Boot REST API的工具。
Wisdom RESTClient专为解决测试Spring Boot REST API而生,它支持自动化测试RESTful API,输出精美的测试报告,并且自动生成精美的RESTful API文档。轻量级的工具,精悍的功能!
https://github.com/W ...
- 2017-11-30 17:45
- 浏览 213
- 评论(0)
REST Client tool for testing RESTful API. This tool supports automated testing and automatically generating RESTful API document.
Wisdom REST Client V1.1可以自动生成RESTful API 文档,生成的文档是基于用户测试数据。
工具地址:
https://github.com/Wisdom-Projects/rest-client
WisdomTool RESTClient 源代码:
https://github. ...
Wisdom RESTClient可以自动化测试RESTful API 接口,用户手工输入HTTP请求信息,执行HTTP请求,请求完成后会得到HTTP 响应信息。每次的HTTP请求响应信息会在被记录到历史信息表里。用户可以执行测试历史记录完成对历史信息的自动化测试,测试结束会自动生成测试报告。使用Wisdom Tool REST Client可以协助RESTful API开发和测试,提高开发效率和API接口质量。
开源社区地址:
https://github.com/Wisdom-Projects/rest-client
1.工具地址:
https://github.com/Wisdom-Projects/rest-client
WisdomTool RESTClient自动化测试工具源代码:
https://github.com/Wisdom-Projects/rest-client
2.工具使用:
# Automation-Test-Tool
Automation Test Tool for RESTful API
Author : Yu Dong Wang (Dom Wang)
Version : 1.0
Date : Feb 8, 2 ...