POST Api的Vegeta负载测试

时间:2016-06-29 14:24:23

标签: load profiling

我想使用vegeta测试一些POST API,但是post有效负载没有正确发送。

vegeta命令:

vegeta attack -targets=tmp -rate=1 -duration=1s | tee results.bin | vegeta report

tmp文件:

POST http://server-ip/api/salon
@saloninfo.json

saloninfo.json文件:

{
  "salon_id" : "562737c1ff567dbd5574c814"
}

基本上,有效载荷是空的{}。

有人可以检查,我可能会缺少什么。

3 个答案:

答案 0 :(得分:3)

我相信这应该可以解决问题:

POST http://server-ip/api/salon
Content-Type: application/json
@saloninfo.json

答案 1 :(得分:1)

在这里提到另一种方法。如果您熟悉golang

可能会有用
import (
    "os"
    "time"

    "net/http"
    vegeta "github.com/tsenart/vegeta/lib"
)

func customTargeter() vegeta.Targeter {
    return func(tgt *vegeta.Target) error {
        if tgt == nil {
            return vegeta.ErrNilTarget
        }

        tgt.Method = "POST"

        tgt.URL = "http://server-ip/api/salon" // your url here

        payload := `{
            "salon_id" : "562737c1ff567dbd5574c814"
          }` // you can make this salon_id dynamic too, using random or uuid

        tgt.Body = []byte(payload)

        header := http.Header{}
        header.Add("Accept", "application/json")
        header.Add("Content-Type", "application/json")
        tgt.Header = header

        return nil
    }
}

func main() {
    rate := vegeta.Rate{Freq: 1, Per: time.Second} // change the rate here
    duration := 1 * time.Minute                    // change the duration here

    targeter := customTargeter()
    attacker := vegeta.NewAttacker()

    var metrics vegeta.Metrics
    for res := range attacker.Attack(targeter, rate, duration, "Whatever name") {
        metrics.Add(res)
    }
    metrics.Close()

    reporter := vegeta.NewTextReporter(&metrics)
    reporter(os.Stdout)
}

我在这里所做的是为Attacker对象提供速率,持续时间和目标器功能。使用以下命令运行脚本:

go run name_of_the_file.go

NewTextReporter用于在终端本身中打印结果。 vegeta库中还有其他类型的报告程序。按要求使用它们。

答案 2 :(得分:0)

我相信这是因为您需要设置content type: application/json

不幸的是,文档和github问题倾斜地提到它,但没有任何关于它应该是什么的指示,无论是作为json的头部还是像Curl这样的vegeta命令。仍然在这里寻找答案。