/install basjoofan
API test
通过 basjoofan test [OPTIONS] [NAME] 来运行测试脚本。
Quick Reference
| 参数 | 说明 | 必需 | 默认值 |
|---|---|---|---|
--tasks, -t |
并发数量 | 否 | 1 |
--duration, -d |
测试时长(秒)或分钟(例如:60s, 1m) | 否 | - |
--number, -n |
测试次数 | 否 | 1 |
--path, -p |
测试脚本路径 | 否 | 当前路径 |
--record, -r |
是否记录测试结果 | 否 | - |
--stat, -s |
是否输出统计信息 | 否 | false |
命令选择决策树
用户想运行测试脚本
├─ 接口测试 → basjoofan test name 测试方法名为name的接口测试
├─ 性能测试 → basjoofan test name -t 100 -d 1m 测试方法名为name的接口测试,并发数量为100,测试时长为1分钟
使用示例
让我们开始一个简单的接口测试,测试方法名为get,这是一个GET请求。
let host = "httpbin.org";
rq get`
GET https://{host}/get
`[status == 200]
test get {
let response = get->;
response.status
}
这个脚本保存为.fan为后缀名的文件,例如get.fan。 如果用户想运行测试脚本 ├─ 接口测试 → basjoofan test get 测试方法名为get的接口测试 ├─ 性能测试 → basjoofan test get -t 100 -d 1m -s 测试方法名为get的接口测试,并发数量为100,测试时长为1分钟,输出统计信息
这是一个POST请求
let host = "httpbin.org";
rq post`
POST https://{host}/post
`[status == 200]
test post {
let response = post->;
response.status
}
这是一个POST请求,请求体为application/x-www-form-urlencoded格式。
let host = "httpbin.org";
rq post`
POST https://{host}/post
Content-Type: application/x-www-form-urlencoded
key: value
`[status == 200]
test post {
let response = post->;
response.status
}
这是一个POST请求,请求体为multipart/form-data格式。
let host = "httpbin.org";
rq post`
POST https://{host}/post
Content-Type: multipart/form-data
key: value
file: @path/to/file
`[status == 200]
test post {
let response = post->;
response.status
}
这是一个POST请求,请求体为application/json格式。
let host = "httpbin.org";
rq post`
POST https://{host}/post
Content-Type: application/json
{
"name": "Gauss",
"age": 6,
"address": {
"street": "19 Hear Sea Street",
"city": "DaLian"
},
"phones": [
"+86 13098767890",
"+86 15876567890"
]
}
`[status == 200]
test post {
let response = post->;
response.status
}
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install basjoofan - After installation, invoke the skill by name or use
/basjoofan - Provide required inputs per the skill's parameter spec and get structured output
What is Easy run test?
Use when user needs to run api test, performance test, load test, stress test, http test etc. 当用户需要运行接口测试、性能测试、负载测试、压力测试、HTTP测试等时使用。 触发词: 接口测试、API测试、性能测试、负载测... It is an AI Agent Skill for Claude Code / OpenClaw, with 122 downloads so far.
How do I install Easy run test?
Run "/install basjoofan" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Easy run test free?
Yes, Easy run test is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Easy run test support?
Easy run test is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Easy run test?
It is built and maintained by 金氧 (@lamb); the current version is v0.0.1.