51Testing软件测试论坛

标题: 接口测试框架实战之接口请求断言 [打印本页]

作者: 梦幻小丑灯    时间: 2021-11-26 14:43
标题: 接口测试框架实战之接口请求断言
 接口请求断言是指在发起请求之后,对返回的响应内容去做判断,用来查看是否响应内容是否与规定的返回值相符。
  接口请求断言
  响应内容
  在发起请求后,我们使用一个变量 r 存储响应的内容,也就是 Response 对象。
  1.   >>> import requests
  2.   >>> r = requests.get('http://httpbin.org/get')
  3.   >>> print(r)
  4.   <Response [200]>
复制代码




  Response 对象有很多功能强大的方法可以调用,比如直接获取响应头,获取 Unicode 编码后的响应内容,获取二进制的响应内容,获取原始的响应内容等等。
  获得响应头

  1.  >>> r.headers
  2.   {'Date': 'Sun, 05 Apr 2020 16:38:09 GMT', \
  3.   'Content-Type': 'application/json', \
  4.   'Content-Length': '308', 'Connection': 'keep-alive',\
  5.    'Server': 'gunicorn/19.9.0', \
  6.    'Access-Control-Allow-Origin': '*', \
  7.    'Access-Control-Allow-Credentials': 'true'}
复制代码




  获得编码后的响应值:

  1.  >>> print(r.text)
  2.   {
  3.     "args": {},
  4.     "data": "",
  5.     "files": {},
  6.     "form": {
  7.       "hogwarts": [
  8.         "a",
  9.         "b",
  10.         "c"
  11.       ]
  12.     },
  13.     "headers": {
  14.       "Accept": "*/*",
  15.       "Accept-Encoding": "gzip, deflate",
  16.       "Content-Length": "32",
  17.       "Content-Type": "application/x-www-form-urlencoded",
  18.       "Host": "httpbin.org",
  19.       "User-Agent": "python-requests/2.22.0",
  20.       "X-Amzn-Trace-Id": "Root=1-5e8a01e3-0913fca09ac605ccc911ccde"
  21.     },
  22.     "json": null,
  23.     "origin": "113.118.101.232",
  24.     "url": "http://httpbin.org/post"
  25.   }
复制代码



  还可以使用 r.raw 获得原始响应内容,r.content 获得二进制的响应内容,另外还有编码为 JSON 格式的响应内容,会在后面的章节进行详述。
  环境安装
  安装 JSON 库:
  pip install json

  状态码断言
  响应状态码断言:
  1. <div style="margin-right: auto; margin-left: auto; line-height: 24px;">  import requests</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  r = requests.get('http://httpbin.org/get')</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  assert r.status_code==200</div>
复制代码




  assert 是 [url=]Python[/url] 的内置函数,用来判断表达式,当表达式条件为 False 的时候就会触发异常。
  r.status_code 是 Response 对象内的一个方法,用于获得返回值的状态码。
  assert r.status_code==200 就是在判断状态码是否等于200,如果不等于200则会抛出异常。
  反例:响应状态码断言,判断响应状态码是否为400
  >>> import requests
  1. <div style="margin-right: auto; margin-left: auto; line-height: 24px;">  >>> r = requests.get('http://httpbin.org/get')</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  >>> assert r.status_code==400</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  Traceback (most recent call last):</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">    File "<stdin>", line 1, in <module></div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  AssertionError</div>
复制代码



  从上个例子可以知道,这个响应状态码应该是 200,因为与 400 不相等,所以抛出了异常。
  JSON 响应断言
  在[url=]测试[/url]过程中,大部分接口的返回值都为 JSON 格式。所以,掌握如何对 JSON 响应值进行断言这一技能,可以更轻松的完善接口[url=]自动化测试[/url]用例。
  对响应内容进行 JSON 编码
  r.json() 对于响应值 r 先进行 JSON 编码:
  >>> import requests
  1. <div style="margin-right: auto; margin-left: auto; line-height: 24px;">  >>> r = requests.post('http://httpbin.org/post', data = {'hogwarts':["a","b","c"]})</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  >>> r.json()</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">  {'args': {}, 'data': '', 'files': {}, 'form': {'hogwarts': ['a', 'b', 'c']},\</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">   'headers': {'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate',\</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">    'Content-Length': '32', 'Content-Type': 'application/x-www-form-urlencoded',\</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">    'Host': 'httpbin.org', 'User-Agent': 'python-requests/2.22.0',\</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">    'X-Amzn-Trace-Id': 'Root=1-5e8a01e3-0913fca09ac605ccc911ccde'},\</div><div style="margin-right: auto; margin-left: auto; line-height: 24px;">    'json': None, 'origin': '113.118.101.232', 'url': 'http://httpbin.org/post'}</div>
复制代码



  多种类型响应值断言案例
  对于字典格式,可以通过 dict["key"] 的方式拿到 value 值。
  对于列表格式,可以通过 list[index] 拿到对应索引的 value 值。
  在 JSON 的断言之中,主要应用的就是字典和列表自带的查找方法。如果碰到混合或者嵌套的情况,只需要一层一层拨开,直到找到需要进行断言的字段即可。

  1.  {'args': {}, 'data': '', 'files': {}, \
  2.   'form': {'hogwarts': ['a', 'b', 'c']}, \
  3.   'headers': {'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate', \
  4.   'Content-Length': '32', 'Content-Type': 'application/x-www-form-urlencoded',\
  5.    'Host': 'httpbin.org', 'User-Agent': 'python-requests/2.22.0', \
  6.    'X-Amzn-Trace-Id': 'Root=1-5e8a01e3-0913fca09ac605ccc911ccde'}, \
  7.    'json': None, 'origin': '113.118.101.232', \
  8.    'url': 'http://httpbin.org/post'}
复制代码



  字典格式断言,判断 headers 中的 Host 为 httpbin.org

  1. >>> import requests
  2.   >>> r = requests.post('http://httpbin.org/post', data = {'hogwarts':["a","b","c"]})
  3.   >>> assert r.json()['headers']["Host"] == "httpbin.org"
复制代码



  1. 第一层是 key 值为 "header" 的 value
  2. 第二层是 key 值为 "Host" 的 value
  3. 判断 key 值为 "Host" 的 value 值是否与 "http://httpbin.org" 相等
  字典混合列表格式断言,判断 hogwarts 对应的列表的第一位是 'a'

  1. >>> import requests
  2.   >>> r = requests.post('http://httpbin.org/post', data = {'hogwarts':["a","b","c"]})
  3.   >>> assert r.json()['form']["hogwarts"][0] == "a"
复制代码



  1. 第一层是 key 值为 'form' 的 value
  2. 第二层是 key 值为 'hogwarts' 的 value
  3. 第三层是索引为 0 的 value
  4. 判断上一步索引为 0 的 value 是否等于 "a"

本文内容不用于商业目的,如涉及知识产权问题,请权利人联系51Testing小编(021-64471599-8017),我们将立即处理






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