51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2171|回复: 5
打印 上一主题 下一主题

python+requests接口测试

[复制链接]
  • TA的每日心情
    无聊
    2018-5-10 09:16
  • 签到天数: 172 天

    连续签到: 2 天

    [LV.7]测试师长

    跳转到指定楼层
    1#
    发表于 2017-3-9 10:54:50 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    Requests 是用[url=]Python[/url]语言编写,基于 urllib,采用 Apache2 Licensed 开源协议的 HTTP 库。它比 urllib 更加方便,可以节约我们大量的[url=]工作[/url],完全满足 HTTP [url=]测试[/url]需求。Requests 的哲学是以 PEP 20 的习语为中心开发的,所以它比 urllib 更加 Pythoner。更重要的一点是它支持 Python3 哦!
    • Beautiful is better than ugly.(美丽优于丑陋)
    • Explicit is better than implicit.(清楚优于含糊)
    • Simple is better than complex.(简单优于复杂)
    • Complex is better than complicated.(复杂优于繁琐)
    • Readability counts.(重要的是可读性)
    一、安装 Requests
    通过pip安装
    pipinstallrequests
    或者,下载代码后安装:
    $ git clone git://github.com/kennethreitz/requests.git$ cd requests$ python setup.pyinstall
    再懒一点,通过IDE安装吧,如pycharm!
    二、发送请求与传递参数
    先来一个简单的例子吧!让你了解下其威力:
    [url=][/url]
    importrequests r= requests.get(url='http://www.itwhy.org')#最基本的GET请求print(r.status_code)#获取返回状态r = requests.get(url='http://dict.baidu.com/s', params={'wd':'python'})#带参数的GET请求print(r.url)print(r.text)#打印解码后的返回数据[url=][/url]

    很简单吧!不但GET方法简单,其他方法都是统一的接口样式哦!
    requests.get(‘https://github.com/timeline.json’) #GET请求
    requests.post(“http://httpbin.org/post”) #POST请求
    requests.put(“http://httpbin.org/put”) #PUT请求
    requests.delete(“http://httpbin.org/delete”) #DELETE请求
    requests.head(“http://httpbin.org/get”) #HEAD请求
    requests.options(“http://httpbin.org/get”) #OPTIONS请求
    PS:以上的HTTP方法,对于WEB系统一般只支持 GET 和 POST,有一些还支持 HEAD 方法。
    带参数的请求实例:
    importrequestsrequests.get('http://www.dict.baidu.com/s', params={'wd':'python'})#GET参数实例requests.post('http://www.itwhy.org/wp-comments-post.php', data={'comment':'测试POST'})#POST参数实例
    POST发送JSON数据:
    importrequestsimportjson r= requests.post('https://api.github.com/some/endpoint', data=json.dumps({'some':'data'}))print(r.json())
    定制header:
    [url=][/url]
    importrequestsimportjson data= {'some':'data'}headers= {'content-type':'application/json','User-Agent':'Mozilla/5.0 (X11; Ubuntu; [url=]Linux[/url] x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'} r= requests.post('https://api.github.com/some/endpoint', data=data, headers=headers)print(r.text)[url=][/url]

    三、Response对象
    使用requests方法后,会返回一个response对象,其存储了服务器响应的内容,如上实例中已经提到的 r.text、r.status_code……
    获取文本方式的响应体实例:当你访问 r.text 之时,会使用其响应的文本编码进行解码,并且你可以修改其编码让 r.text 使用自定义的编码进行解码。
    r = requests.get('http://www.itwhy.org')print(r.text,'\n{}\n'.format('*'*79), r.encoding)r.encoding='GBK'print(r.text,'\n{}\n'.format('*'*79), r.encoding)
    其他响应:
    r.status_code #响应状态码
    r.raw #返回原始响应体,也就是 urllib 的 response 对象,使用 r.raw.read() 读取
    r.content #字节方式的响应体,会自动为你解码 gzip 和 deflate 压缩
    r.text #字符串方式的响应体,会自动根据响应头部的字符编码进行解码
    r.headers #以字典对象存储服务器响应头,但是这个字典比较特殊,字典键不区分大小写,若键不存在则返回None
    #*特殊方法*#
    r.json() #Requests中内置的JSON解码器
    r.raise_for_status() #失败请求(非200响应)抛出异常
    案例之一:
    [url=][/url]
    importrequests URL='http://ip.taobao.com/service/getIpInfo.php'#淘宝IP地址库APItry:    r= requests.get(URL, params={'ip':'8.8.8.8'}, timeout=1)    r.raise_for_status()#如果响应状态码不是 200,就主动抛出异常exceptrequests.RequestException as e:print(e)else:    result=r.json()print(type(result), result, sep='\n')[url=][/url]

    四、上传文件
    使用 Requests 模块,上传文件也是如此简单的,文件的类型会自动进行处理:
    [url=][/url]
    importrequests url='http://127.0.0.1:5000/upload'files= {'file': open('/home/lyb/sjzl.mpg','rb')}#files = {'file': ('report.jpg', open('/home/lyb/sjzl.mpg', 'rb'))}     #显式的设置文件名r= requests.post(url, files=files)print(r.text)[url=][/url]

    更加方便的是,你可以把字符串当着文件进行上传:
    [url=][/url]
    importrequests url='http://127.0.0.1:5000/upload'files= {'file': ('test.txt', b'Hello Requests.')}#必需显式的设置文件名r= requests.post(url, files=files)print(r.text)[url=][/url]

    五、身份验证
    基本身份认证(HTTP Basic Auth):
    importrequestsfromrequests.authimportHTTPBasicAuth r= requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=HTTPBasicAuth('user','passwd'))#r = requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=('user', 'passwd'))    # 简写print(r.json())
    另一种非常流行的HTTP身份认证形式是摘要式身份认证,Requests对它的支持也是开箱即可用的:
    requests.get(URL, auth=HTTPDigestAuth('user','pass'))
    六、Cookies与会话对象
    如果某个响应中包含一些Cookie,你可以快速访问它们:
    importrequests r= requests.get('http://www.google.com.hk/')print(r.cookies['NID'])print(tuple(r.cookies))
    要想发送你的cookies到服务器,可以使用 cookies 参数:
    [url=][/url]
    importrequests url='http://httpbin.org/cookies'cookies= {'testCookies_1':'Hello_Python3','testCookies_2':'Hello_Requests'}#在Cookie Version 0中规定空格、方括号、圆括号、等于号、逗号、双引号、斜杠、问号、@,冒号,分号等特殊符号都不能作为Cookie的内容。r = requests.get(url, cookies=cookies)print(r.json())[url=][/url]

    会话对象让你能够跨请求保持某些参数,最方便的是在同一个Session实例发出的所有请求之间保持cookies,且这些都是自动处理的,甚是方便。
    下面就来一个真正的实例,如下是快盘签到脚本:
    [url=][/url]
    importrequests headers= {'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8','Accept-Encoding':'gzip, deflate, compress','Accept-Language':'en-us;q=0.5,en;q=0.3','Cache-Control':'max-age=0','Connection':'keep-alive','User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'} s=requests.Session()s.headers.update(headers)#s.auth = ('superuser', '123')s.get('https://www.kuaipan.cn/account_login.htm') _URL='http://www.kuaipan.cn/index.php's.post(_URL, params={'ac':'account','op':'login'},       data={'username':'****@foxmail.com','userpwd':'********','isajax':'yes'})r= s.get(_URL, params={'ac':'zone','op':'taskdetail'})print(r.json())s.get(_URL, params={'ac':'common','op':'usersign'})[url=][/url]

    七、超时与异常
    timeout 仅对连接过程有效,与响应体的下载无关。
    >>> requests.get('http://github.com', timeout=0.001)Traceback (most recent call last):  File"<stdin>", line 1,in<module>requests.exceptions.Timeout: HTTPConnectionPool(host='github.com', port=80): Request timed out. (timeout=0.001)
    所有Requests显式抛出的异常都继承自 requests.exceptions.RequestException:ConnectionError、HTTPError、Timeout、TooManyRedirects。
    转自:http://www.itwhy.org/%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B/Python/python-%E7%AC%AC%E4%B8%89%E6%96%B9-http-%E5%BA%93-requests-%E5%AD%A6%E4%B9%A0.html

    requests是python的一个HTTP客户端库,跟urllib,urllib2类似,那为什么要用requests而不用urllib2呢?官方文档中是这样说明的:
    python的标准库urllib2提供了大部分需要的HTTP功能,但是API太逆天了,一个简单的功能就需要一大堆代码。
    我也看了下requests的文档,确实很简单,适合我这种懒人。下面就是一些简单指南。
    插播个好消息!刚看到requests有了中文翻译版,建议英文不好的看看,内容也比我的博客好多了,具体链接是:http://cn.python-requests.org/en/latest/(不过是v1.1.0版,另抱歉,之前贴错链接了)。


    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏1
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    2017-3-10 11:23
  • 签到天数: 2 天

    连续签到: 2 天

    [LV.1]测试小兵

    2#
    发表于 2017-3-9 11:27:45 | 只看该作者
    哇塞,完全看不懂
    回复 支持 反对

    使用道具 举报

  • TA的每日心情

    2024-7-8 09:00
  • 签到天数: 943 天

    连续签到: 1 天

    [LV.10]测试总司令

    3#
    发表于 2017-3-9 11:30:23 | 只看该作者
    图片没传上来
    回复 支持 反对

    使用道具 举报

  • TA的每日心情

    2024-7-8 09:00
  • 签到天数: 943 天

    连续签到: 1 天

    [LV.10]测试总司令

    4#
    发表于 2017-3-9 11:31:04 | 只看该作者
    建议转帖的话 标题带一个【转】
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    无聊
    2018-5-10 09:16
  • 签到天数: 172 天

    连续签到: 2 天

    [LV.7]测试师长

    5#
     楼主| 发表于 2017-3-9 11:45:31 | 只看该作者
    梦想家 发表于 2017-3-9 11:31
    建议转帖的话 标题带一个【转】

    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-8 16:53 , Processed in 0.072276 second(s), 23 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表