25

我目前正在使用环境变量将自定义参数传递给我的负载测试。例如,我的测试类如下所示:

from locust import HttpLocust, TaskSet, task
import os

class UserBehavior(TaskSet):

    @task(1)
    def login(self):
        test_dir = os.environ['BASE_DIR']
        auth=tuple(open(test_dir + '/PASSWORD').read().rstrip().split(':')) 
        self.client.request(
           'GET',
           '/myendpoint',
           auth=auth
        )   

class WebsiteUser(HttpLocust):
    task_set = UserBehavior

然后我正在运行我的测试:

locust -H https://myserver --no-web --clients=500 --hatch-rate=500 --num-request=15000 --print-stats --only-summary

有没有更多locust方法可以将自定义参数传递给locust命令行应用程序?

4

3 回答 3

15

您可以在 locust 脚本中使用 likeenv <parameter>=<value> locust <options>和 use来使用它的值<parameter>

例如, env IP_ADDRESS=100.0.1.1 locust -f locust-file.py --no-web --clients=5 --hatch-rate=1 --num-request=500在 locust 脚本中使用 IP_ADDRESS 来访问它的值,在这种情况下是 100.0.1.1。

于 2018-05-07T08:11:05.243 回答
2

现在可以向 Locust 添加自定义参数(最初提出这个问题时是不可能的,当时使用 env vars 可能是最好的选择)。

从 2.2 版开始,自定义参数甚至在分布式运行中转发给工作人员。

https://docs.locust.io/en/stable/extending-locust.html#custom-arguments

from locust import HttpUser, task, events


@events.init_command_line_parser.add_listener
def _(parser):
    parser.add_argument("--my-argument", type=str, env_var="LOCUST_MY_ARGUMENT", default="", help="It's working")
    # Set `include_in_web_ui` to False if you want to hide from the web UI
    parser.add_argument("--my-ui-invisible-argument", include_in_web_ui=False, default="I am invisible")


@events.test_start.add_listener
def _(environment, **kw):
    print("Custom argument supplied: %s" % environment.parsed_options.my_argument)


class WebsiteUser(HttpUser):
    @task
    def my_task(self):
        print(f"my_argument={self.environment.parsed_options.my_argument}")
        print(f"my_ui_invisible_argument={self.environment.parsed_options.my_ui_invisible_argument}")
于 2021-10-13T10:58:47.590 回答
-3

如果要进行高并发测试,不建议在命令行中运行 locust。和--no-webmode一样,你只能使用一个CPU核,这样你就不能充分利用你的测试机。

回到您的问题,没有另一种方法可以locust在命令行中传递自定义参数。

于 2017-08-01T04:06:02.990 回答