python多线程http压力测试脚本
作者:feihuadao 时间:2022-12-31 16:48:37
本文实例为大家分享了python多线程http压力测试的具体代码,供大家参考,具体内容如下
#coding=utf-8
import sys
import time
import thread
import httplib, urllib
import random
import uuid
import logging
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',
datefmt='%a, %d %b %Y %H:%M:%S',
filename='测试脚本日志.log',
filemode='w')
def log_uncaught_exceptions(exception_type, exception, tb):
logging.critical(''.join(traceback.format_tb(tb)))
logging.critical('{0}: {1}'.format(exception_type, exception))
sys.excepthook = log_uncaught_exceptions
#网关地址
addr="172.18.2.4"
port=8080
thread_count = 15 #单次并发数量
requst_interval = 10 #请求间隔(秒)
test_count = sys.maxsize #sys.maxsize # 指定测试次数
#字段说明,必须一一对应
#login为空表示使用随机用户名
param_list=[
{"login":"user1","password":"qweqwe12"},
]
now_count = 0
lock_obj = thread.allocate()
def send_http():
global now_count
httpClient = None
try:
for user in user_list:
tmp_user = user["login"]
if tmp_user.strip() =='':
tmp_user = str(uuid.uuid1()) + str(random.random())
print tmp_user
params = urllib.urlencode({"operationData":
[{"login": tmp_user,"password":user["password"]}]})
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
httpClient = httplib.HTTPConnection(addr, port, timeout=5)
httpClient.request("POST", "/simple/spider.task.distribute", params, headers)
response = httpClient.getresponse()
print '发送数据: ' + params
print '返回码: ' + str(response.status)
print '返回数据: ' + response.read()
logging.info('发送数据: ' + params)
logging.info('返回码: ' + str(response.status))
logging.info('返回数据: ' + response.read())
#print response.getheaders() #获取头信息
sys.stdout.flush()
now_count+=1
except Exception, e:
print e
logging.info(e)
finally:
if httpClient:
httpClient.close()
def test_func(run_count):
global now_count
global requst_interval
global lock_obj
cnt = 0
while cnt < run_count:
lock_obj.acquire()
print ''
print '***************************请求次数:' + str(now_count) + '*******************************'
print 'Thread:(%d) Time:%s\n'%(thread.get_ident(), time.ctime())
logging.info(' ')
logging.info('***************************请求次数:' + str(now_count) + '*******************************')
logging.info('Thread:(%d) Time:%s\n'%(thread.get_ident(), time.ctime()))
cnt+=1
send_http()
sys.stdout.flush()
lock_obj.release()
time.sleep(requst_interval)
def test(ct):
global thread_count
for i in range(thread_count):
thread.start_new_thread(test_func,(ct,))
if __name__=='__main__':
global test_count
test(test_count)
while True:
time.sleep(100)
来源:https://blog.csdn.net/feihuadao/article/details/48785003
标签:python,多线程,压力测试


猜你喜欢
vue指令之表单控件绑定v-model v-model与v-bind结合使用
2023-07-02 16:28:15
scrapy利用selenium爬取豆瓣阅读的全步骤
2022-09-24 01:28:15

python自动发邮件总结及实例说明【推荐】
2021-05-15 04:32:04

使用pyinstaller打包PyQt4程序遇到的问题及解决方法
2023-11-04 11:21:26

ASP进阶教程Ⅶ:留言簿设置密码验证
2008-10-13 09:02:00
GitHub 热门:Python 算法大全,Star 超过 2 万
2021-05-27 21:28:50

github配置使用指南
2022-01-05 23:14:49
使用pandas对两个dataframe进行join的实例
2022-02-06 11:09:36
如何利用Python快速统计文本的行数
2021-11-15 19:48:12
Oracle 数据 使用游标
2009-07-02 12:14:00
Python测试框架pytest介绍
2023-08-03 01:47:59

写SQL语句的经验
2009-04-13 16:02:00
Python中的基本数据类型讲解
2021-04-29 07:07:24
Reflow
2009-10-25 12:34:00
eclipse创建python项目步骤详解
2021-01-15 00:40:47

Python中列表、字典、元组数据结构的简单学习笔记
2022-08-08 22:19:11
jQuery初学:find()方法及children方法的区别分析
2011-02-05 10:58:00

Python叠加矩形框图层2种方法及效果
2022-10-09 15:59:53

详解Django中的权限和组以及消息
2022-08-03 16:13:14
详解Python Qt的窗体开发的基本操作
2021-03-28 00:58:12
