Tho*_*itz 3 testing automated-tests unit-testing flask http-status-code-404
如果我手动运行,这个简单的 Web 服务可以工作,但在我的单元测试中,我得到一个 404 not found 页面作为我的响应,阻止我正确测试应用程序。
正常行为:
文件夹结构:
/SRC
--web_application.py
/UNIT_TESTS
--test_wab_application.py
Run Code Online (Sandbox Code Playgroud)
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))
Run Code Online (Sandbox Code Playgroud)
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
Run Code Online (Sandbox Code Playgroud)
测试结果(仅最相关的部分):
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
Run Code Online (Sandbox Code Playgroud)
到目前为止,我已经测试了 中client.get()方法的各种替代路由路径test-web_application.py,包括像“/SRC/greetings?name=Rick Sanchez”或“../SRC/greetings?name=Rick Sanchez”这样的组合,但都没有不同的效果。
您是否知道我可能做错了什么,或者我如何从单元测试中访问我的 Web 服务的功能?
小智 5
我认为问题在于您正在创建两个Flask实例。第一个带有application您添加hello路由的名称,第二个使用该create_app函数。您需要使用application实例(您添加hello路由的实例)创建一个测试客户端。
您可以导入application然后获取clientusingapplication.test_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
Run Code Online (Sandbox Code Playgroud)