-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tests.py
266 lines (200 loc) · 6.58 KB
/
tests.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
import pytest
import server
import random
# NOTE: These tests should be executed in order AND together, or else some database-related things may not work.
@pytest.fixture
def app():
app = server.app
app.debug = True
app.config["TESTING"] = True
# Use an in-memory database for testing
app.config['SQLALCHEMY_DATABASE_URI'] = "sqlite://"
with app.app_context():
server.db.create_all()
return app.test_client()
def test_register_page(app):
res = app.get("/register")
assert res.status_code == 200
def test_register_no_captcha(app):
res = app.post("/register")
assert res.status_code == 400
def test_register_only_captcha(app):
res = app.post("/register", data={
"g-recaptcha-response": "sì"
})
assert res.status_code == 400
def test_register_missing_fields(app):
res = app.post("/register", data={
"g-recaptcha-response": "sì",
"username": "ciao",
"password": "saaaas"
})
assert res.status_code == 400
def test_register_valid(app):
# 1
res = app.post("/register", data={
"g-recaptcha-response": "sì",
"username": "admin@example.org",
"password": "password123",
"nome": "Prova",
"cognome": "Unoduetre",
"classe": "1A",
"usernameTelegram": "@BotFather",
"mailGenitori": "dad@example.org"
}, follow_redirects=True)
assert res.status_code == 200
# 2
res = app.post("/register", data={
"g-recaptcha-response": "sì",
"username": "user@example.org",
"password": "password123",
"nome": "Prova",
"cognome": "Unoduetre",
"classe": "1A",
"usernameTelegram": "@BotFather",
"mailGenitori": "mom@example.org"
}, follow_redirects=True)
# 3
assert res.status_code == 200
res = app.post("/register", data={
"g-recaptcha-response": "sì",
"username": "peer@example.org",
"password": "password123",
"nome": "Prova",
"cognome": "Unoduetre",
"classe": "1A",
"usernameTelegram": "@BotFather",
"mailGenitori": "sas@example.org"
}, follow_redirects=True)
assert res.status_code == 200
# 4
res = app.post("/register", data={
"g-recaptcha-response": "sì",
"username": "prof@example.org",
"password": "password123",
"nome": "Prova",
"cognome": "Unoduetre",
"classe": "1A",
"usernameTelegram": "@BotFather",
"mailGenitori": "sas@example.org"
}, follow_redirects=True)
assert res.status_code == 200
# 5
res = app.post("/register", data={
"g-recaptcha-response": "sì",
"username": "new_admin@example.org",
"password": "password123",
"nome": "Prova",
"cognome": "Unoduetre",
"classe": "1A",
"usernameTelegram": "@BotFather",
"mailGenitori": "sas@example.org"
}, follow_redirects=True)
assert res.status_code == 200
def test_login_page(app):
res = app.get("/login")
assert res.status_code == 200
def test_login_no_username(app):
res = app.post("/login", data={
"password": "haha"
})
assert res.status_code == 400
def test_login_no_password(app):
res = app.post("/login", data={
"username": "sacripante"
})
assert res.status_code == 400
def test_login_nothing(app):
res = app.post("/login")
assert res.status_code == 400
def test_login_invalid(app):
res = app.post("/login", data={
"username": str(random.random()),
"password": str(random.random())
})
assert res.status_code == 403
def test_login_valid(app):
res = app.post("/login", data={
"username": "user@example.org",
"password": "password123"
}, follow_redirects=True)
assert res.status_code == 200
# TODO: Test session data changes
@pytest.fixture
def app_admin(app):
with app.session_transaction() as ses:
ses["username"] = "admin@example.org"
return app
@pytest.fixture
def app_user(app):
with app.session_transaction() as ses:
ses["username"] = "user@example.org"
return app
def test_user_ascend_forbidden(app_user):
res = app_user.get("/user_ascend/1")
assert res.status_code == 403
# def test_user_ascend_valid(app_admin):
# TODO
# @pytest.fixture
# def app_peer(app):
# with app.session_transaction() as ses:
# ses["username"] = "peer@example.org"
# return app
def test_user_godify_forbidden(app_user):
res = app_user.get("/user_godify/1")
assert res.status_code == 403
# def test_user_godify_valid(app_admin):
# TODO
def test_user_teacher_forbidden(app_user):
res = app_user.get("/user_teacher/1")
assert res.status_code == 403
# def test_user_teacher_valid(app_admin):
# TODO
# @pytest.fixture
# def app_prof(app):
# with app.session_transaction() as ses:
# ses["username"] = "prof@example.org"
# return app
def test_dashboard_redirect_not_loggedin(app):
res = app.get("/dashboard")
assert res.status_code == 302
def test_dashboard_display(app_user):
res = app_user.get("/dashboard")
assert res.status_code == 200
def test_informazioni_display(app):
res = app.get("/informazioni")
assert res.status_code == 200
def test_message_add_forbidden(app_user):
res = app_user.get("/message_add")
assert res.status_code == 403
def test_message_del_forbidden(app_user):
res = app_user.get("/message_del/1")
assert res.status_code == 403
def test_user_list_forbidden(app_user):
res = app_user.get("/user_list")
assert res.status_code == 403
def test_user_changepw_forbidden(app_user):
# Forse un utente dovrebbe essere in grado di cambiare la sua stessa password...
res = app_user.get("/user_changepw/1")
assert res.status_code == 403
def test_user_del_forbidden(app_user):
res = app_user.get("/user_del/1")
assert res.status_code == 403
def test_log_view_forbidden(app_user):
res = app_user.get("/server_log")
assert res.status_code == 403
def test_log_view_valid(app_admin):
res = app_admin.get("/server_log")
assert res.status_code == 200
def test_brasatura_forbidden(app_user):
res = app_user.get("/brasatura/1")
assert res.status_code == 403
res = app_user.get("/brasatura/2")
assert res.status_code == 403
# Questo dovrebbe essere l'ultimo test per motivi ovvii
def test_brasatura_valid(app_admin):
res = app_admin.get("/brasatura/1")
assert res.status_code == 200
res = app_admin.get("/brasatura/2")
assert res.status_code == 302
# TODO: test if the data is actually deleted