[Others] 造轮子之-http并发测试工具,deepin可用
Tofloor
poster avatar
qingkongdeepin
deepin
2022-11-08 01:11
Author
# http-little-toy

一个简单的 `http` 并发测试工具。deepin 可用哦。

#### 介绍

灵感来源于 `github` 上各种版本的 `wrk` http并发测试工具,有一天看了一个go写的版本,就这?我也能行啊。于是自己也造一个轮子。orz.

造轮子真好玩啊。就叫它`小玩具`吧。

软件地址:https://github.com/leihenshang/http-little-toy

#### 使用

一般使用 -d 控制请求时间(秒),-t 控制线程数(当做用户数量来理解)就可以了。

还能使用request.json文件,你不用重新命令参数了,这个后期再完善一下。

```bash
$ go run . -h
Usage: httpToy 
Options:
        -H 
                 The http header. --default=[].
        -allowRedirects 
                 allowRedirects --default=true.
        -body 
                 The http body --default="".
        -caCert 
                 caCert --default="".
        -clientCert 
                 clientCert --default="".
        -clientKey 
                 clientKey --default="".
        -compression 
                 Use keep-alive for http protocol. --default=true.
        -d 
                 Duration of request.The unit is seconds. --default=0.
        -f 
                 specify the request definition file. --default="".
        -gen 
                 generate the request definition file template to the current directory. --default=false.
        -h 
                 show help tips --default=false.
        -keepAlive 
                 Use keep-alive for http protocol. --default=true.
        -skipVerify 
                 TLS skipVerify --default=false.
        -t 
                 Number of threads. --default=0.
        -timeOut 
                 the time out to wait response --default=1000.
        -u 
                 The URL you want to test --default="".
        -useHttp2 
                 useHttp2 --default=false.
        -v 
                 show app version. --default=false.

安装教程

  1. 直接使用 go install github.com/leihenshang/http-little-toy ,再把你的go/bin放到环境变量里,使用 http-little-toy 带上参数,起飞吧,骚年。
  2. 手动编译成二进制文件直接运行,还可以放到全局变量中从而直接从命令行中执行。

手动编译

# 把项目编译成可执行文件并输出到当前目录
go build -o httpToy

执行:

# 使用纯命令
 ./httpToy -d 10 -t 80 -u http://127.0.0.1:9090

# or

# 使用请求文件
./httpToy -d 10 -t 80 -f request_sample.json
# 使用test-server
 go run . -u http://localhost:9090 -H aaa:bbbb -H ccc:ddd -body "hhhhh2333333" -d 2 -t 1

Reply Favorite View the author
All Replies
xuqi
deepin testing team
2022-11-08 01:13
#1

like

Reply View the author
152******14
deepin
2022-11-08 01:56
#2

applaud

Reply View the author
蔡EEPIN
deepin
2022-11-08 03:04
#3

这个可以玩一下,看看能不能把朋友网站打死joy

Reply View the author
qingkongdeepin
deepin
2022-11-08 17:40
#4
蔡EEPIN

这个可以玩一下,看看能不能把朋友网站打死joy

😂 朋友说,我真是谢谢您嘞。

Reply View the author
depend
deepin
2022-11-08 23:30
#5

牛皮

Reply View the author