我正在为烧瓶应用程序编写单元测试。此应用程序公开REST端点并使用flask_restful lib。
基本上,我的一个端点会向其他端点发出请求并进行一些处理。
在通过pytest执行测试时,它会返回此错误(注意:这在基本上使用curl进行测试时有效):
requests.exceptions.ConnectionError: HTTPConnectionPool(host='127.0.0.1',
port=5000): Max retries exceeded with url:
/ctrlm/H_INFOEXPLH:05u3v/output/
(Caused by NewConnectionError('<urllib3.connection.HTTPConnection object
at
0x0486D090>: Failed to establish a new connection: [WinError 10061]
这是测试代码:
class RestTests(unittest.TestCase):
""" Test the rest module. """
############################
#### setup and teardown ####
############################
def setUp(self):
""" Executed prior to each test """
app.config['TESTING'] = True
app.config['WTF_CSRF_ENABLED'] = False
app.config['DEBUG'] = False
app.config['THREADED'] = True
self.client = app.test_client()
# incident id:
self.incident = "INC1863137"
# ctrl-m job id :
self.jobid_no_output = "server:0ceit"
self.jobid_no_job = "server:0ceity" # job format that will surely fail!
def tearDown(self):
""" executed after each testexecuted after each test """
pass
###############
#### tests ####
###############
def test_ctrl_output(self):
""" UAT 3 : ctrl-M job output is found. """
response = self.client.post('/servnow/incident/{}'.format(self.incident),
data=json.dumps({'data': "This is just a json test"}),
headers={'Content-Type': 'application/json'}
)
#print("DEBUGGGG!!!!!!!!!!!!!!!!!!! ===============> {}".format(response))
self.assertIsNotNone(response)
好吧,也许使用setUp()启动的flask实例无法进行线程化...
在应用程序代码中,这是产生问题的代码:
url = "http://127.0.0.1:5000{}".format(
flask.url_for('joboutput', jobid=jobid))
resp = requests.get(url).json()
好吧,我只想对一个来自烧瓶的网址执行查询... 可能,我做错了......
请问你能帮帮我吗?
答案 0 :(得分:0)
Unittest的Flask测试服务器是一种模拟。它不会创建侦听套接字。
因此,无法向自己提出请求。
因此:
url = "http://127.0.0.1:5000{}".format(
flask.url_for('joboutput', jobid=jobid))
resp = requests.get(url).json()
将以上述例外结束:
requests.exceptions.ConnectionError: HTTPConnectionPool(host='127.0.0.1',
port=5000)
Failed to establish a new connection
套接字127.0.0.1:5000尚未创建。
嗯,这也让我觉得如果我无法测试它,我正在构建的解决方案是不对的。 我已经重建了它。