栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

性能测试-Locust脚本加强篇(关联、检查点、集合点)

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

性能测试-Locust脚本加强篇(关联、检查点、集合点)

1、关联:通常在业务流程中有很多一系列的接口调用,从后面的接口依赖前边接口的结果数据
from lxml import etree
from locust import TaskSet, task, HttpUser
class UserBehavior(TaskSet):
    @staticmethod
    def get_session(html):
 tree = etree.HTML(html)
 return tree.xpath("//div[@class='btnbox']/input[@name='session']/@value")[0] 
    @task(10)
    def test_login(self):
 html = self.client.get('/login').text
 username = 'user@compay.com'
 password = '123456'
 session = self.get_session(html)
 payload = { 'username': username, 'password': password, 'session': session }
 self.client.post('/login', data=payload)

class WebsiteUser(HttpUser):
    host = 'http://debugtalk.com'
    # task_set = UserBehavior
    tasks = [UserBehavior ]
    min_wait = 1000
    max_wait = 3000
2、检查点:用来判断返回值是否符合要求
from lxml import etree
from locust import TaskSet, task, HttpUser
class UserBehavior(TaskSet):
    @staticmethod
    def get_session(html):
 tree = etree.HTML(html)
 return tree.xpath("//div[@class='btnbox']/input[@name='session']/@value")[0] 
    @task(10)
    def test_login(self):
 html = self.client.get('/login').text
 assert "200" in html
 username = 'user@compay.com'
 password = '123456'
 session = self.get_session(html)
 payload = { 'username': username, 'password': password, 'session': session }
 self.client.post('/login', data=payload)

class WebsiteUser(HttpUser):
    host = 'http://debugtalk.com'
    # task_set = UserBehavior
    tasks = [UserBehavior ]
    min_wait = 1000
    max_wait = 3000
3、集合点:提高某个接口的并发度,当所有用户运行到指定位置后集合等待,同时向下执行
from gevent._semaphore import Semaphore
from locust import TaskSet, events
from lxml import etree

all_locusts_spawned = Semaphore()
all_locusts_spawned.acquire()
def on_hatch_complete(**kwargs):
    all_locusts_spawned.release() # 创建钩子方法

events.hatch_complete += on_hatch_complete # 挂载到locust钩子函数(所有的Locust实例产生完成时触发)

class TestTask(TaskSet):
    def on_start(self):
 """ on_start is called when a Locust start before any task is scheduled """
 all_locusts_spawned.wait() # 限制在所有用户准备完成前处于等待状态
 self.login()

    @staticmethod
    def get_session(html):
 tree = etree.HTML(html)
 return tree.xpath("//div[@class='btnbox']/input[@name='session']/@value")[0] 

    def login(self):
 html = self.client.get('/login').text
 username = 'user@compay.com'
 password = '123456'
 session = self.get_session(html)
 payload = {'username': username, 'password': password, 'session': session}
 self.client.post('/login', data=payload)

个人博客 蜗牛

转载请注明:文章转载自 www.mshxw.com
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号