8

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

蔬菜命令:

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"
}

基本上,有效负载将变为空 {}。

有人可以检查一下,我可能会丢失什么。

4

3 回答 3

8

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

POST http://server-ip/api/salon
Content-Type: application/json
@saloninfo.json
于 2017-08-15T09:24:56.700 回答
3

在这里提到另一种方式。如果您熟悉,可能会有用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)
}

我在这里所做的是,为攻击者对象提供速率、持续时间和目标函数。使用以下命令运行脚本:

go run name_of_the_file.go

NewTextReporter用于在终端本身打印结果。vegeta图书馆里还有其他种类的记者。根据要求使用它们。

于 2020-11-11T11:57:55.077 回答
2

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

不幸的是,文档和 github 问题间接地提到了它,但没有指明它应该在哪里,无论是作为 json 的标头还是在像 Curl 这样的 vegeta 命令中。仍然在这里寻找答案。

于 2016-12-05T11:45:35.970 回答