51Testing软件测试论坛

标题: python 利用工具locust测试性能测试 [打印本页]

作者: 一纸荒年    时间: 2019-2-21 16:23
标题: python 利用工具locust测试性能测试
  1. -- coding:utf-8 --

  2. import requests,hashlib,random
  3. from locust import HttpLocust,TaskSet,task

  4. headers = {
  5. ‘_uuid’:’fbdb209b678eed65968a08f3db8a13cb76611be11e8a982728fdfb9c83f4b8a77717b3ffe0af621fe433c1d3e07454fd9e85a0f7519caf132671d84e47f2dd40598e64d3283ce177bd3094f21eb63220’
  6. }
  7. url = ‘/request/order/createorder’
  8. url1 = ‘/request/order/revokeorder’

  9. class matching(TaskSet):
  10. @task
  11. def test_001(self):
  12. params = {
  13. ‘quantity’: price,
  14. “category”: “nnere”,
  15. “price”:’sdfd’,
  16. }
  17. r = self.client.post(url, params=params,headers=headers, name=’test’)
  18. print(r)
  19. print(r.json())
  20. self.client.post(url, name=’test’)

  21. class WebsiteUser(HttpLocust):
  22. task_set = matching
  23. main_wait = 1000
  24. max_wait = 2000
复制代码



作者: qqq911    时间: 2019-4-16 11:05
感谢分享
作者: testark    时间: 2019-12-20 18:43
good
作者: Miss_love    时间: 2020-12-25 15:14
看看




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2