gpt4 book ai didi

python - 蝗虫,上传测试

转载 作者:太空宇宙 更新时间:2023-11-04 10:10:26 25 4
gpt4 key购买 nike

我是 Locust 的新手,正在尝试进行我的第一次测试,上传带有标题和路径的简单文件,但似乎无法让它工作

很乐意提供任何帮助,谢谢!

我目前的测试是:

class UserBehavior(TaskSet):
@task
def post_img(self):
self.client.headers['1'] = "1"
self.client.headers['1'] = "1"
test_file = 'PATH/TO.FILE'
self.client.post("address", files={'file': open(test_file, 'rb')})


class WebsiteUser(HttpLocust):
host = 'IP'
task_set = UserBehavior
min_wait = 100
max_wait = 300

最佳答案

设法编写上传文件的测试:

class HttpSession(TaskSet):
@task
def post_img(self):
headers = {'1': '1', '2': '2'}
test_file = '/pathTo/file.jpg'
self.client.request('POST', 'url', files={'file': open(test_file, 'rb')}, headers=headers)


class WebsiteUser(HttpLocust):
host = 'http://IP'
task_set = HttpSession
min_wait = 100
max_wait = 300

关于python - 蝗虫,上传测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38681714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com