-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
132 lines (90 loc) · 2.85 KB
/
conftest.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
from random import choice
import pytest
from bs4 import BeautifulSoup as bs
from flask import url_for
from ms import create_app
from ms.db.models import Distribution, Product, Station, StationHistory, Unit, db
from ms.first_run import dev_run
test_config = {
"SECRET_KEY": "TEST_CONFIG",
"TESTING": True,
"SQLALCHEMY_DATABASE_URI": "sqlite:///:memory:",
"CSRF_SECRET_KEY": "CSRF_TEST_KEY",
"INSTANCE_PATH": "/dev/shm/ms-testing",
"SERVER_NAME": "localhost",
}
@pytest.fixture(scope="session")
def test_app():
test_app = create_app(test_config=test_config)
with test_app.app_context():
db.create_all()
dev_run()
yield test_app
db.drop_all()
@pytest.fixture(scope="session")
def test_client(test_app):
with test_app.test_client() as test_client:
yield test_client
@pytest.fixture(scope="session")
def csrf():
# This is a helper function grabbing CSRF Token for testing
def _func(response):
doc = bs(response.data, "html.parser")
csrf_field = doc.find("input", {"id": "csrf_token", "name": "csrf_token"})
return csrf_field["value"]
return _func
@pytest.fixture(scope="function")
def products():
return Product.query.all()
@pytest.fixture(scope="function")
def product(products):
return choice(products)
@pytest.fixture(scope="function")
def units():
return Unit.query.all()
@pytest.fixture(scope="function")
def unit(units):
return choice(units)
@pytest.fixture(scope="function")
def stations():
return Station.query.all()
@pytest.fixture(scope="function")
def station(stations):
return choice(stations)
@pytest.fixture(scope="function")
def product_distribution(product, test_client, test_app):
unit = choice(product.units)
url = url_for(
"distribution.distribute",
p_unit_shortname=unit.shortname,
p_id=product.id,
)
# go to distribution
return test_client.get(url, follow_redirects=True)
@pytest.fixture(scope="function")
def not_in_distribution():
# setup
dist = Distribution(in_progress=False)
db.session.add(dist)
db.session.commit()
Station.archive_all(dist.id)
yield not dist.in_progress
# teardown
stations = StationHistory.query.filter_by(distribution_id=dist.id).all()
[db.session.delete(station) for station in stations]
db.session.delete(dist)
db.session.commit()
@pytest.fixture(scope="function")
def in_distribution():
# setup
dist = Distribution(in_progress=True)
db.session.add(dist)
db.session.commit()
Station.archive_all(dist.id)
yield dist.in_progress
# teardown
stations = StationHistory.query.filter_by(distribution_id=dist.id).all()
[db.session.delete(share) for share in dist.shares]
[db.session.delete(station) for station in stations]
db.session.delete(dist)
db.session.commit()