1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
| import time import datetime from locust import HttpUser, TaskSet, task, between, events
class ZentaoTask(TaskSet): wait_time = between(1, 3) def on_start(self): print("***开始执行测试***")
def on_stop(self): print("***执行测试结束***")
@task def login(self): data = { "username": "admin", "password": "Aa.123456" }
with self.client.post( "/zentao/user-login.html", data=data, cookies=ZentaoUser.cookies, catch_response=True, name="系统登录" ) as response: if response.status_code == 200: response.success() else: response.failure(f"登陆失败:{response.status_code}") @task(3) def create_todo(self): ZentaoUser.counter += 1 start_time = time.time() todo_url = "/zentao/todo-create.html?onlybody=yes" now = datetime.datetime.now() next_hour = now + datetime.timedelta(hours=1) current_time_str = now.strftime("%H:%M") next_hour_time_str = next_hour.strftime("%H:%M") current_date_str = now.strftime("%Y-%m-%d") todo_headers = { "Content-Type": "application/x-www-form-urlencoded", "Referer": "http://127.0.0.1/zentao/todo-create.html?onlybody=yes", }
todo_data = { "date": f"{current_date_str}", "config[day]": "", "config[specify][month]": "0", "config[specify][day]": "1", "config[type]": "day", "config[beforeDays]": "0", "config[end]": "", "type": "custom", "assignedTo": "admin", "name": "", "name": f"测试{ZentaoUser.counter}", "pri": "3", "desc": f"待办测试{ZentaoUser.counter}", "status": "wait", "begin": f"{current_time_str}", "end": f"{next_hour_time_str}" }
with self.client.post( cookies=ZentaoUser.cookies, headers=todo_headers, url=todo_url, data=todo_data, name="添加待办", catch_response=True ) as response: response_time = int((time.time() - start_time) * 1000) if response.status_code == 200: if "success" in response.text: response.success() events.request.fire( request_type="POST", name="添加待办", response_time=response_time, response_length=len(response.content), response=response, exception=None ) else: response.failure(f"添加失败:{response.status_code}") events.request.fire( request_type="POST", name="添加待办", response_time=response_time, response_length=len(response.content), response=response, exception=f"添加失败:{response.status_code}", ) else: response.failure(f"添加失败:{response.status_code}") events.request.fire( request_type="POST", name="添加待办", response_time=response_time, response_length=len(response.content), response=response, exception=f"添加失败:{response.status_code}", )
class ZentaoUser(HttpUser): tasks = [ZentaoTask] host = "http://127.0.0.1" counter = 0 cookies = { "zentaosid": "54d1af94725410432656cb753068b800", "lang": "zh-cn", "device": "desktop", "theme": "default", "hidePatch": "true" }
|