python性能测试脚本

下面是我写的一个性能测试脚本,脚本中运行出来的response received的时间比用httpClient跑出来的正常时间要长,自认为是读取文件的时候耗费了不少时间,不知道该怎么优化,求指点 
标签: Python_Sync

代码片段(1)

[代码] http_post.py

01 '''
02 Created on 2013-4-16
03  
04  
05 @author: zdh
06  
07  
08 create project: multimech-newproject my_project
09 run test: multimech-run my_project
10 '''
11 import httplib
12 import urllib
13 import time
14 import json
15  
16  
17 class Transaction(object):
18          
19     def __init__(self):
20         self.custom_timers = {}
21  
22  
23     def run(self):
24         conn = httplib.HTTPConnection("localhost:8080")
25         headers = {"Content-type""application/json"#application/x-www-form-urlencoded,"Aceept":"text/plain"
26         params = ({"bindHyCardInfo":{"mobileNo":"1881026xxxx","userId":"2","hYCardno":line,"bankCardNo":"622xxxxxxxxxxxxx","ip":"127.0.0.1"},"header":{"version":"1.0.1","from":"1000","to":"2000","tid":line,"time":"12312","token":"SEW342WEER2342","ext":""}})
27         start = time.time()
28         conn.request("POST""/core-oper/rest/bindHyCard", json.JSONEncoder().encode(params), headers)
29         response = conn.getresponse()
30         response_time = time.time()
31         data = response.read()
32         print data
33         conn.close()
34         transfer_time = time.time()
35         self.custom_timers['response received'= response_time - start
36         self.custom_timers['content transferred'= transfer_time - start
37          
38  
39  
40 if __name__ == '__main__':
41      
42     file = open("E://card.txt")
43     while 1:
44         lines = file.readlines()
45         if not lines:
46             break
47         for line in lines:
48             line = line.strip('\n')
49             trans = Transaction()
50             trans.run()
51             for timer in ('response received''content transferred'):
52                 print '%s: %.5f secs' % (timer, trans.custom_timers[timer])
53     file.close()
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值