码迷,mamicode.com
首页 > 其他好文 > 详细

Locust 学习之路 (集合点)

时间:2018-08-10 17:14:46      阅读:775      评论:0      收藏:0      [点我收藏+]

标签:pre   span   压力测试   wait   login   schedule   locust   test   框架   

直接编写接口事务脚本对后台接口进行测试;有时测试需要让所有并发用户完成初始化后再进行压力测试,这就需要类似于LoadRunner中的集合点的概念,由于框架本身没有直接封装,有如下办法实现:

from gevent._semaphore import Semaphore
all_locusts_spawned = Semaphore()
all_locusts_spawned.acquire()

def on_hatch_complete(**kwargs):
    all_locusts_spawned.release()

events.hatch_complete += on_hatch_complete

class TestTask(TaskSet):
    def on_start(self):
        """ on_start is called when a Locust start before any task is scheduled """
        self.login()
        all_locusts_spawned.wait()

 

Locust 学习之路 (集合点)

标签:pre   span   压力测试   wait   login   schedule   locust   test   框架   

原文地址:https://www.cnblogs.com/grandlulu/p/9455794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!