【发布时间】:2021-05-04 07:41:30
【问题描述】:
我正在使用 Robot Framework 创建 API 测试。我使用请求库,执行 GET 请求,并希望验证响应。但它向我显示了一个错误:
AttributeError: 'dict' 对象没有属性 'count'。
还有其他方法可以验证响应吗?
库代码
import requests
def get_method(URL):
try:
response = requests.get(URL,timeout=3)
response.raise_for_status()
except requests.exceptions.HTTPError as error1:
raise TypeError("Http Error:", error1)
except requests.exceptions.Timeout as error2:
raise TimeoutError("Timeout Error:", error2)
except requests.exceptions.ConnectionError as error3:
raise ConnectionError("Error Connecting:", error3)
return response
关键字文件
from robot.api.deco import keyword
import jsonschema
import json
class keywords:
ROBOT_LIBRARY_SCOPE = 'TESTS'
schemaAllUsers = {
"type": "array",
"count": {"type": "number"},
"results": [{
"name": {"type": "string"},
"height": {"type": "number"},
"mass": {"type": "number"}
}]
}
@keyword
def get_request(self, URL):
return restAPI_library.get_method(URL)
@keyword
def assert_users_response(self, response):
assert response.status_code == 200
@keyword
def get_json_response(self, URL):
return restAPI_library.get_method(URL).json()
@keyword
def validate_json_response(self, response):
assert response.count == '82'
测试文件*
Library keywords.py
*** Test Cases ***
TC - Verify GET request for all users
${Users} Get Request ${people_endpoint}
Assert Users Response ${Users}
${response} Get Json Response ${people_endpoint}
VALIDATE JSON RESPONSE ${response}
*** Variables ***
${people_endpoint} https://swapi.dev/api/people
【问题讨论】:
标签: python json api robotframework response