Go4Api - an API testing tool written in Go
Implementing Data-Driven Test, Mutation Test, Fuzz Test.
Go4Api is a tool focusing on API testing, which is targeting the huge test cases and test data, with execution concurrently based on Priority and Dependency.
Go4Api aims to the testing difficulty faced to QA, which is different from Developers. That is, plan and execute a single api test is easy, a bunch of tools can help on it. But how about if we have hundreds of API(s) and thousands of test data to manage and execute, and more, regression them during the API(s) lifetime?
Features
- Using pure Json format to represent test case(s): contains the all info about API request, response and assertion
- Each Case has its own setUp and tearDown
- Test Cases Json file itself can be template: its variable(s) can be rendered by data feeder
- Test Cases executed concurrently: based on Priority and Dependency
- Fuzz / Mutation Testing: includes Mutation and Random testing (embedded pairwise algorithm implementation)
- Scenario Testing: when APIs have data dependency
- Convert HAR file / Swagger API file
- DB manipulation support: MySql, PostgreSql, MongoDB, Redis, and easy extension to other database(s)
- Built-in functions
- User defined functions: use ECMAScript 5.1(+)
More information, refer to wiki and Blog:
(上篇)API测试在测些什么,这些方向你值得拥有.
(下篇)吃自己的狗粮:Go4Api之API测试项目实践.
测试与自动化测试,记测试工具Go4Api的诞生.
Install and Run
Option 1: Mac: Using the binary package, Run
Grab a prebuilt binary from the Releases page.
Copy the binary in your PATH to run go4api from any location.
Option 2: Build from source, Run
To build from source you need Go (1.10 or newer). Follow these instructions:
- Run
go get github.com/zpsean/go4api
which will:
- git clone the repo and put the source in
$GOPATH/src/github.com/zpsean/go4api
- build a
go4api
binary and put it in $GOPATH/bin
, if for linux, use env GOOS=linux GOARCH=amd64 go build
- Make sure you have
$GOPATH/bin
in your PATH
- You can now run go4api using
$./go4api ...
Option 3: Run from source
To run from source you need Go (1.10 or newer). Follow these instructions:
- Run
go get github.com/zpsean/go4api
which will:
- git clone the repo and put the source in
$GOPATH/src/github.com/zpsean/go4api
- Move to the path:
cd $GOPATH/src/github.com/zpsean/go4api
- Make sure you have
$GOPATH
in your PATH
- You can now run go4api using
$go run main.go ...
Basic Concepts
Quick start
Note: You can prepare many many test cases based on below examples to let Go4Api run for you.
Your testing workspace may like below:
samples/
├── mutation
│ └── MutationTeseCase.json
├── scenarios
│ └── scenario1
│ ├── s1ChildChildChildTeseCase.json
│ ├── s1ChildChildTeseCase.json
│ ├── s1ChildTeseCase.json
│ ├── s1ParentTeseCase.json
│ └── temp
│ ├── _join.csv
│ ├── s1ParentTestCase_out.csv
│ └── s1ParentTestCase_out2.csv
├── testconfig
│ └── config.json
├── testdata
│ └── Demo
│ ├── FirstTeseCase.json
│ ├── SecondTeseCase.json
│ ├── SecondTeseCase_dt1.csv
│ └── SecondTeseCase_dt2.csv
└── testresource
└── swagger.json
testresults/
└── 2018-09-10\ 07:42:20.804070777\ +0800\ CST\ m=+0.001524050
├── 2018-09-10\ 07:42:20.804070777\ +0800\ CST\ m=+0.001524050.log
├── index.html
├── js
└── style
A simple case, with hard-coded Json:
Prepare the Json:
[
{
"FirstTestCase-001": {
"priority": "3",
"parentTestCase": "root",
"request": {
"method": "GET",
"path": "https://api.douban.com/v2/movie/top250",
"headers": {
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36"
},
"queryString": {
"pageIndex": "1",
"pageSize": "12"
}
},
"response": [
{
"$(status).statusCode": {
"Equals": 200
}
},
{
"$(headers).Content-Type": {
"Contains": "application/json;charset=UTF-8"
}
},
{
"$(body).start": {
"GreaterOrEquals": 0
}
},
{
"$(body).subjects.#": {
"Equals": 20
}
},
{
"$(body).total": {
"Equals": 250
}
},
{
"$(body).subjects.0.title": {
"Contains": "肖申克的救赎"
}
}
]
}
}
]
Running go4api
$./go4api -run -c /<you Path>/testconfig -tc /<you Path>/testdata -tr /<you Path>/testresource -r /<you Path>/testresults
A much more real case, with variables in Json:
Prepare the Json:
SecondTeseCase.json
[
{
"SecondTestCase-${tc}": {
"priority": "${priority}",
"parentTestCase": "root",
"request": {
"method": "GET",
"path": "/v2/movie/top250",
"headers": {
"authorization": "${authorization}"
},
"queryString": {
"pageIndex": "1",
"pageSize": "12"
}
},
"response": [
{
"$(status).statusCode": {
"Equals": {"Fn::ToInt": "${statuscode}"}
}
},
{
"$(headers).Content-Type": {
"Contains": "application/json;charset=UTF-8"
}
}
]
}
}
]
SecondTeseCase_dt1.csv
tc,priority,statuscode
dt1-1,1,500
dt1-2,2,500
Running go4api
$./go4api -run -baseUrl https://api.douban.com -c /<you Path>/testconfig -tc /<you Path>/testdata -tr /<you Path>/testresource -r /<you Path>/testresults
Html Reporting
Reference