使用 pytest 测试 Flask 应用程序时找不到 404

404 Not Found when testing Flask application with pytest

这个简单的 Web 服务如果我手动 运行 它就可以工作,但是在我的单元测试中我得到一个 404 not found 页面作为我的响应,阻止我正确测试应用程序。

正常行为:

文件夹结构:

/SRC
--web_application.py
/UNIT_TESTS
--test_wab_application.py

web_application.py


from flask import Flask, request, jsonify, send_from_directory

from python.Greeting import Greeting

application = Flask(__name__)


def create_app(test_config=None):
    # create and configure the app
    app = Flask(__name__, instance_relative_config=True)
    app.config.from_mapping(
        SECRET_KEY='mega_developer',
        DATABASE=os.path.join(app.instance_path, 'web_application.sqlite'),
    )
    try:
        os.makedirs(app.instance_path)
    except OSError:
        pass
    return app


@application.route('/greetings', methods=['GET', 'POST'])
def hello():

    # GET: for url manipulation #
    if request.method == 'GET':
        return jsonify(hello = request.args.get('name', 'world', str))

test_web_application.py

import tempfile
import pytest    
import web_application


class TestWebApplication:

    app = web_application.create_app()  # container object for test applications #

    @pytest.fixture
    def initialize_app(self):
        app = web_application.create_app()
        app.config['TESTING'] = True
        app.config['DEBUG'] = False
        app.config['WTF_CSRF_ENABLED'] = False
        app.config['DATABASE'] = tempfile.mkstemp()
        app.testing = True
        self.app = app

    def test_hello_get(self, initialize_app):
        with self.app.test_client() as client:
            response = client.get('/greetings?name=Rick Sanchez')

        assert response.status_code == 200

测试结果(仅最相关部分):

Launching pytest with arguments test_web_application.py::TestWebApplication::test_hello_get in C:\Users\Xrenyn\Documents\Projekte\Studium_Anhalt\QA&Chatbots Exercises\Exercise 2 - Web Service Basics\UNIT_TESTS

============================= test session starts =============================
platform win32 -- Python 3.8.0, pytest-5.2.2, py-1.8.0, pluggy-0.13.0 -- C:\Users\Xrenyn\Documents\Projekte\Studium_Anhalt\QA&Chatbots Exercises\Exercise 2 - Web Service Basics\VENV\Scripts\python.exe
cachedir: .pytest_cache
rootdir: C:\Users\Xrenyn\Documents\Projekte\Studium_Anhalt\QA&Chatbots Exercises\Exercise 2 - Web Service Basics\UNIT_TESTS
collecting ... collected 1 item

test_web_application.py::TestWebApplication::test_hello_get FAILED       [100%]
test_web_application.py:21 (TestWebApplication.test_hello_get)
404 != 200

Expected :200
Actual   :404

到目前为止,我已经为 test-web_application.py 中的 client.get() 方法测试了各种替代路由路径,包括像 '/SRC/greetings?name=Rick Sanchez' 或 '../SRC/greetings?name=Rick Sanchez',但都没有什么不同的效果。

您是否知道我可能做错了什么或者我如何从单元测试中访问我的 Web 服务的功能?

我认为问题在于您正在创建两个 Flask 实例。一个名称为 application,您将 hello 路由添加到其中,第二个使用 create_app 函数。您需要使用 application 实例(您将 hello 路由添加到的实例)创建一个测试客户端。

您可以导入 application 然后使用 application.test_client() 获取 client 吗?

示例解决方案:

import pytest

from web_application import application


@pytest.fixture
def client():
    with application.test_client() as client:
        yield client


class TestSomething:
    def test_this(self, client):
        res = client.get('/greetings?name=Rick Sanchez')
        assert res.status_code == 200

查看 official docs on testing