1

我正在尝试在使用 Flask-JWT 模块的 Flask 应用程序中测试 /auth 端点。

import json
import pytest

@pytest.mark.usefixtures("testapp")
class TestURLs:

    def test_auth(self, testapp):
        rv = testapp.get('/auth',
            data=json.dumps({'username':'bob', 'password': 'pw'}),
            content_type='application/json')
        ... test assertion ...

当我运行烧瓶服务器并且我可以请求 JWT 令牌时,/auth 端点可以完美运行。

但是当测试运行时,它会从服务器接收到这个响应。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>404 Not Found</title>
<h1>Not Found</h1>
<p>The requested URL was not found on the server.  If you entered the URL manually please check your spelling and try again.</p>

有没有办法配置测试夹具以识别 /auth 端点?

4

0 回答 0