Locust 设置断言

from locust import HttpLocust, TaskSet, task

class UserTask(TaskSet):

@task

def job(self):

  with self.client.get('/', catch_response = True) as response:

if response.status_code == 200:

  response.success()

else:

  response.failure('Failed!')
class User(HttpLocust):
  task_set = UserTask
  min_wait = 1000
  max_wait = 3000
  host = "https://www.baidu.com"

catch_response = True :布尔类型,如果设置为 True, 允许该请求被标记为失败。

通过 client.get() 方法发送请求,将整个请求的给 response, 通过 response.status_code 得请求响应的 HTTP 状态码。如果不为 200 则通过 response.failure(‘Failed!’) 打印失败!

原文地址:https://www.cnblogs.com/xiatian09/p/9766745.html