中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python多線程http壓力測試腳本

發布時間:2020-08-30 13:58:36 來源:腳本之家 閱讀:340 作者:feihuadao 欄目:開發技術

本文實例為大家分享了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)

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

梅河口市| 昭平县| 霍林郭勒市| 会理县| 南宁市| 琼结县| 威信县| 得荣县| 南汇区| 楚雄市| 香河县| 方城县| 平塘县| 长治市| 乳山市| 泉州市| 盈江县| 德保县| 宝兴县| 弥渡县| 荔波县| 琼海市| 商丘市| 抚远县| 宁波市| 开原市| 南皮县| 都江堰市| 海南省| 平度市| 建始县| 淅川县| 临漳县| 孟州市| 保定市| 耒阳市| 二连浩特市| 高台县| 四川省| 开原市| 安达市|