今天在编写python代码,突然遇到一报错:AttributeError: ‘NoneType’ object has no attribute ‘json’,代码如下:
import codecs
import json
import unittest
import ddt
from lib.sendrequest import send_requests
from lib.utlis import *
from setting import case_root,results_root
import logging
import warnings
def case_data(dataname)->list:
'''
处理测试用例数据
:param dataname: 测试用例文件名
:return: 测试数据
'''
test_case=case_root+'/{}.xlsx'.format(dataname)
test_num=Excel('r',test_case).read()
testdata=excel_dict(test_num)
# print(testdata)
return testdata
# if __name__=='__main__':
# print(case_data('testcase'))
@ddt.ddt
class TestCase(unittest.TestCase):
@ddt.data(*case_data('testcase'))
def test_run_case(self,data):
'''
执行测试脚本
:param data:参数化后测试用例|dict类型
:return:
'''
# self.response=send_requests(data)
# print("uuuuuuu")
# print(data)
response = send_requests(data)
print(response)
#
print('_________')
warnings.simplefilter('ignore', ResourceWarning)
# print(response.text)
logging.info("页面返回信息:%s" % response.json())
# logging.info('results_root:',results_root)
# if __name__=="__main__":
# TestCase().test_run_case()
后来打印:
print(response)数据如下:
{1.0: '', 'get': 'post', '相加接口': '相减接口', '参数正常-成功': '参数正常-成功', '': '', '/add': '/less', " {'a': 2, 'b': 1}": "{'a': 2, 'b': 1}", "{'code': 0, 'msg': 'ok', 'value': 3}": "{'code': 1000, 'msg': 'success', 'value': 1}", 0.0: 1000.0, 200.0: 200.0, 'ok': 'success'}
{1.0: '', 'get': 'post', '相加接口': '相减接口', '参数正常-成功': '参数正常-成功', '': '', '/add': '/less', " {'a': 2, 'b': 1}": "{'a': '^code', 'b':'^value'}", "{'code': 0, 'msg': 'ok', 'value': 3}": "{'code': 1000, 'msg': 'success', 'value': -3}", 0.0: 1000.0, 200.0: 200.0, 'ok': 'success'}
**打印数据类型如下:
print(type(response))
<class 'NoneType'>
None**
然后我就发现一定是response的数据类型发生了错误,没有变成字典类型,后来一看excel数据表里面的数据取值取错位了,取出来不是相应的字典值,只有如下格式的数据类型才能被**response.json()**所解析:
{'id': 1.0, 'get_type': 'get', 'interface': '相加接口', 'title': '参数正常-成功', 'header': '', 'precondition': 1.0, 'url': '/add', 'data': "{'a': 2, 'b': 1}", 'excepted': "{'code': 0, 'msg': 'ok', 'value': 3}", 'code': 0.0, 'status': 200.0, 'msg': 'ok'}
{'id': 2.0, 'get_type': 'post', 'interface': '相减接口', 'title': '参数正常-成功', 'header': '', 'precondition': '', 'url': '/less', 'data': "{'a': 2, 'b': 1}", 'excepted': "{'code': 1000, 'msg': 'success', 'value': 1}", 'code': 1000.0, 'status': 200.0, 'msg': 'success'}
{'id': 3.0, 'get_type': 'post', 'interface': '相减接口', 'title': '参数正常-成功', 'header': '', 'precondition': '', 'url': '/less', 'data': "{'a': '^code', 'b':'^value'}", 'excepted': "{'code': 1000, 'msg': 'success', 'value': -3}", 'code': 1000.0, 'status': 200.0, 'msg': 'success'}
敲黑板,所以以后大家再进行相应的数据转换的时候,一定要把被转换的数据类型搞清楚,然后再进行json转换