python 使用 locust 压测接口

1、pip install locust

2、编写test代码 run.py

import time
from termcolor import cprint
from locust import HttpUser, task, between, events


@events.test_start.add_listener
def on_test_start(**kwargs):
    cprint(f"ALL START".center(30, "="), "red")


@events.test_stop.add_listener
def on_test_stop(**kwargs):
    cprint(f"ALL END".center(30, "="), "red")


class TestTask(HttpUser):
    wait_time = between(1, 5)
    # host = 'https://www.baidu.com'

    def on_start(self):
        cprint(f"every instantiation start".center(30, "="), "green")

    @task(1)
    def test_template(self):
        self.client.get(url="/", verify=False)

    def on_stop(self):
        cprint(f"every instantiation stop".center(30, "="), "green")


if __name__ == "__main__":
    import os

    # os.system("locust -f run_locust.py --host=https://test.com -P 5000") # 有界面
    # Disable the web interface, and start the test immediately. Use -u and -t to control user count and run time
    os.system("locust -f run_locust.py --headless -u 5 -t 1m --host=http://127.0.0.1:5000")

3、python run.py

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值