mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 22:14:25 +01:00
Format all the things (#991)
* Format Javascript and CSS files with `prettier`: `prettier --write 'CTFd/themes/**/*'` * Format Python with `black`: `black CTFd` & `black tests` * Travis now uses xenial instead of trusty.
This commit is contained in:
@@ -10,34 +10,34 @@ def test_api_configs_get_non_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with app.test_client() as client:
|
||||
r = client.get('/api/v1/configs')
|
||||
r = client.get("/api/v1/configs")
|
||||
assert r.status_code == 302
|
||||
|
||||
# test_api_configs_post_non_admin
|
||||
"""Can a user post /api/v1/configs if not admin"""
|
||||
r = client.post('/api/v1/configs', json="")
|
||||
r = client.post("/api/v1/configs", json="")
|
||||
assert r.status_code == 403
|
||||
|
||||
# test_api_configs_patch_non_admin
|
||||
"""Can a user patch /api/v1/configs if not admin"""
|
||||
r = client.patch('/api/v1/configs', json="")
|
||||
r = client.patch("/api/v1/configs", json="")
|
||||
assert r.status_code == 403
|
||||
|
||||
# test_api_config_get_non_admin
|
||||
"""Can a user get /api/v1/configs/<config_key> if not admin"""
|
||||
r = client.get('/api/v1/configs/ctf_name')
|
||||
r = client.get("/api/v1/configs/ctf_name")
|
||||
assert r.status_code == 302
|
||||
|
||||
# test_api_config_patch_non_admin
|
||||
"""Can a user patch /api/v1/configs/<config_key> if not admin"""
|
||||
r = client.patch('/api/v1/configs/ctf_name', json="")
|
||||
r = client.patch("/api/v1/configs/ctf_name", json="")
|
||||
assert r.status_code == 403
|
||||
|
||||
# test_api_config_delete_non_admin
|
||||
"""Can a user delete /api/v1/configs/<config_key> if not admin"""
|
||||
r = client.delete('/api/v1/configs/ctf_name', json="")
|
||||
r = client.delete("/api/v1/configs/ctf_name", json="")
|
||||
assert r.status_code == 403
|
||||
assert get_config('ctf_name') == 'CTFd'
|
||||
assert get_config("ctf_name") == "CTFd"
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ def test_api_configs_get_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with login_as_user(app, "admin") as admin:
|
||||
r = admin.get('/api/v1/configs')
|
||||
r = admin.get("/api/v1/configs")
|
||||
assert r.status_code == 200
|
||||
destroy_ctfd(app)
|
||||
|
||||
@@ -56,9 +56,9 @@ def test_api_configs_post_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with login_as_user(app, "admin") as admin:
|
||||
r = admin.post('/api/v1/configs', json={"value": "9.9.9", "key": "test"})
|
||||
r = admin.post("/api/v1/configs", json={"value": "9.9.9", "key": "test"})
|
||||
assert r.status_code == 200
|
||||
assert get_config('test') == "9.9.9"
|
||||
assert get_config("test") == "9.9.9"
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
@@ -67,9 +67,9 @@ def test_api_configs_patch_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with login_as_user(app, "admin") as admin:
|
||||
r = admin.patch('/api/v1/configs', json={"ctf_name": "Changed_Name"})
|
||||
r = admin.patch("/api/v1/configs", json={"ctf_name": "Changed_Name"})
|
||||
assert r.status_code == 200
|
||||
assert get_config('ctf_name') == "Changed_Name"
|
||||
assert get_config("ctf_name") == "Changed_Name"
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ def test_api_config_get_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with login_as_user(app, "admin") as admin:
|
||||
r = admin.get('/api/v1/configs/ctf_name')
|
||||
r = admin.get("/api/v1/configs/ctf_name")
|
||||
assert r.status_code == 200
|
||||
destroy_ctfd(app)
|
||||
|
||||
@@ -88,9 +88,9 @@ def test_api_config_patch_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with login_as_user(app, "admin") as admin:
|
||||
r = admin.patch('/api/v1/configs/ctf_name', json={"value": "Changed_Name"})
|
||||
r = admin.patch("/api/v1/configs/ctf_name", json={"value": "Changed_Name"})
|
||||
assert r.status_code == 200
|
||||
assert get_config('ctf_name') == "Changed_Name"
|
||||
assert get_config("ctf_name") == "Changed_Name"
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ def test_api_config_delete_admin():
|
||||
app = create_ctfd()
|
||||
with app.app_context():
|
||||
with login_as_user(app, "admin") as admin:
|
||||
r = admin.delete('/api/v1/configs/ctf_name', json="")
|
||||
r = admin.delete("/api/v1/configs/ctf_name", json="")
|
||||
assert r.status_code == 200
|
||||
assert get_config('ctf_name') is None
|
||||
assert get_config("ctf_name") is None
|
||||
destroy_ctfd(app)
|
||||
|
||||
Reference in New Issue
Block a user