我有一个只有POST请求的路由,如果符合条件,它会返回json响应。它是这样的:
@app.route('/panel', methods=['POST'])
def post_panel():
# Check for conditions and database operations
return jsonify({"message": "Panel added to database!"
"success": 1})
我正在使用flask-sslify强制将http请求发送到https。
我正在使用Flask测试客户端和unittest测试此路线。测试功能类似于以下内容:
class TestAPI2_0(unittest.TestCase):
def setUp(self):
self.app = create_app('testing')
self.app_context = self.app.app_context()
self.app_context.push()
db.create_all()
create_fake_data(db)
self.client = self.app.test_client()
def tearDown(self):
....
def test_post_panel_with_good_data(self):
# data
r = self.client.post('/panel',
data=json.dumps(data),
follow_redirects=True)
print(r.data)
self.assertEqual(r.status_code, 200)
输出正好在下面:
test_post_panel_with_good_data (tests.test_api_2_0.TestAPI2_0) ... b'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">\n<title>405 Method Not Allowed</title>\n<h1>Method Not Allowed</h1>\n<p>The method is not allowed for the requested URL.</p>\n'
======================================================================
FAIL: test_post_panel_with_good_data (tests.test_api_2_0.TestAPI2_0)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/tanjibpa/work/craftr-master/tests/test_api_2_0.py", line 110, in test_post_panel_with_good_data
self.assertEqual(r.status_code, 200)
AssertionError: 405 != 200
我收到的错误是该路线不允许使用Method。
如果我指定GET作为路由测试的方法(methods=['GET', 'POST']
)似乎工作。但为什么测试客户端正在发出GET请求?有没有办法,而不是指定路线的GET请求?
更新:
如果这样做:
@app.route('/panel', methods=['GET', 'POST'])
def post_panel():
if request.method == 'POST':
# Check for conditions and database operations
return jsonify({"message": "Panel added to database!"
"success": 1})
return jsonify({"message": "GET request"})
我得到这样的输出:
test_post_panel_with_good_data (tests.test_api_2_0.TestAPI2_0) ... b'{\n "message": "GET request"\n}\n'
答案 0 :(得分:0)
我在烧瓶测试客户端中发现了导致GET请求的原因。 我正在使用flask-sslify强制http请求到https。 不知怎的,flask-sslify正在强制执行GET请求,尽管测试客户端被指定了其他类型的请求(POST,PUT,DELETE ...)。
所以,如果我在测试期间禁用sslify,那么测试客户端就可以正常工作。