-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_challenges.py
83 lines (66 loc) · 2.52 KB
/
test_challenges.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
from tests.helpers import *
def test_get_admin_challenges():
app = create_ctfd()
with app.app_context():
register_user(app)
client = login_as_user(app, name="admin", password="password")
r = client.get('/admin/challenges')
assert r.status_code == 200
destroy_ctfd(app)
def test_get_admin_challenges_new():
app = create_ctfd()
with app.app_context():
register_user(app)
client = login_as_user(app, name="admin", password="password")
r = client.get('/admin/challenges/new')
assert r.status_code == 200
destroy_ctfd(app)
def test_create_new_challenge():
"""Test that an admin can create a challenge properly"""
app = create_ctfd()
with app.app_context():
register_user(app)
client = login_as_user(app, name="admin", password="password")
challenge_data = {
"name": "name",
"category": "category",
"description": "description",
"value": 100,
"state": "hidden",
"type": "standard"
}
r = client.post('/api/v1/challenges', json=challenge_data)
assert r.get_json().get('data')['id'] == 1
r = client.get('/admin/challenges/1')
assert r.status_code == 200
r = client.get('/api/v1/challenges/1')
assert r.get_json().get('data')['id'] == 1
destroy_ctfd(app)
def test_hidden_challenge_is_reachable():
"""Test that hidden challenges are visible for admins"""
app = create_ctfd()
with app.app_context():
register_user(app)
client = login_as_user(app, name="admin", password="password")
chal = gen_challenge(app.db, state='hidden')
flag = gen_flag(app.db, challenge_id=chal.id, content='flag')
chal_id = chal.id
assert Challenges.query.count() == 1
r = client.get('/api/v1/challenges', json='')
data = r.get_json().get('data')
assert data == []
r = client.get('/api/v1/challenges/1', json='')
assert r.status_code == 200
data = r.get_json().get('data')
assert data['name'] == 'chal_name'
data = {
"submission": 'flag',
"challenge_id": chal_id
}
r = client.post('/api/v1/challenges/attempt', json=data)
assert r.status_code == 404
r = client.post('/api/v1/challenges/attempt?preview=true', json=data)
assert r.status_code == 200
resp = r.get_json()['data']
assert resp.get('status') == "correct"
destroy_ctfd(app)