-
-
Notifications
You must be signed in to change notification settings - Fork 322
/
Copy pathtest_flask_py2_py3.py
75 lines (49 loc) · 1.77 KB
/
test_flask_py2_py3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"""Flask extension tests."""
from dependency_injector import containers
from dependency_injector.ext import flask
from flask import Flask, url_for
from flask.views import MethodView
from pytest import fixture
def index():
return "Hello World!"
def _test():
return "Test!"
class Test(MethodView):
def get(self):
return "Test class-based!"
class ApplicationContainer(containers.DeclarativeContainer):
app = flask.Application(Flask, __name__)
index_view = flask.View(index)
test_view = flask.View(_test)
test_class_view = flask.ClassBasedView(Test)
@fixture
def app():
container = ApplicationContainer()
app = container.app()
app.container = container
app.config["SERVER_NAME"] = "test-server.com"
app.add_url_rule("/", view_func=container.index_view.as_view())
app.add_url_rule("/test", "test-test", view_func=container.test_view.as_view())
app.add_url_rule("/test-class", view_func=container.test_class_view.as_view("test-class"))
return app
@fixture
def client(app):
with app.test_client() as client:
yield client
def test_index(client):
response = client.get("/")
assert response.status_code == 200
assert response.data == b"Hello World!"
def test_test(client):
response = client.get("/test")
assert response.status_code == 200
assert response.data == b"Test!"
def test_test_class_based(client):
response = client.get("/test-class")
assert response.status_code == 200
assert response.data == b"Test class-based!"
def test_endpoints(app):
with app.app_context():
assert url_for("index") == "http://test-server.com/"
assert url_for("test-test") == "http://test-server.com/test"
assert url_for("test-class") == "http://test-server.com/test-class"