init CTFd source
This commit is contained in:
251
tests/teams/test_teams.py
Normal file
251
tests/teams/test_teams.py
Normal file
@@ -0,0 +1,251 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from CTFd.models import Teams, Users
|
||||
from CTFd.utils import set_config
|
||||
from tests.helpers import (
|
||||
create_ctfd,
|
||||
destroy_ctfd,
|
||||
gen_award,
|
||||
gen_team,
|
||||
gen_user,
|
||||
login_as_user,
|
||||
register_user,
|
||||
)
|
||||
|
||||
|
||||
def test_teams_get():
|
||||
"""Can a user get /teams"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
with app.test_client() as client:
|
||||
set_config("account_visibility", "public")
|
||||
r = client.get("/teams")
|
||||
assert r.status_code == 200
|
||||
set_config("account_visibility", "private")
|
||||
r = client.get("/teams")
|
||||
assert r.status_code == 302
|
||||
set_config("account_visibility", "admins")
|
||||
r = client.get("/teams")
|
||||
assert r.status_code == 404
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_accessing_hidden_teams():
|
||||
"""Hidden teams should not give any data from /teams or /api/v1/teams"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
register_user(app)
|
||||
register_user(app, name="visible_user", email="visible_user@examplectf.com")
|
||||
with login_as_user(app, name="visible_user") as client:
|
||||
user = Users.query.filter_by(id=2).first()
|
||||
team = gen_team(app.db, name="visible_team", hidden=True)
|
||||
team.members.append(user)
|
||||
user.team_id = team.id
|
||||
app.db.session.commit()
|
||||
|
||||
assert client.get("/teams/1").status_code == 404
|
||||
assert client.get("/api/v1/teams/1").status_code == 404
|
||||
assert client.get("/api/v1/teams/1/solves").status_code == 404
|
||||
assert client.get("/api/v1/teams/1/fails").status_code == 404
|
||||
assert client.get("/api/v1/teams/1/awards").status_code == 404
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_hidden_teams_visibility():
|
||||
"""Hidden teams should not show up on /teams or /api/v1/teams or /api/v1/scoreboard"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
register_user(app)
|
||||
with login_as_user(app) as client:
|
||||
user = Users.query.filter_by(id=2).first()
|
||||
user_id = user.id
|
||||
team = gen_team(app.db, name="visible_team", hidden=True)
|
||||
team_id = team.id
|
||||
team_name = team.name
|
||||
team.members.append(user)
|
||||
user.team_id = team.id
|
||||
app.db.session.commit()
|
||||
|
||||
r = client.get("/teams")
|
||||
response = r.get_data(as_text=True)
|
||||
# Only search in body content
|
||||
body_start = response.find("<body>")
|
||||
body_end = response.find("</body>")
|
||||
response = response[body_start:body_end]
|
||||
assert team_name not in response
|
||||
|
||||
r = client.get("/api/v1/teams")
|
||||
response = r.get_json()
|
||||
assert team_name not in response
|
||||
|
||||
gen_award(app.db, user_id, team_id=team_id)
|
||||
|
||||
r = client.get("/scoreboard")
|
||||
response = r.get_data(as_text=True)
|
||||
# Only search in body content
|
||||
body_start = response.find("<body>")
|
||||
body_end = response.find("</body>")
|
||||
response = response[body_start:body_end]
|
||||
assert team_name not in response
|
||||
|
||||
r = client.get("/api/v1/scoreboard")
|
||||
response = r.get_json()
|
||||
assert team_name not in response
|
||||
|
||||
# Team should re-appear after disabling hiding
|
||||
# Use an API call to cause a cache clear
|
||||
with login_as_user(app, name="admin") as admin:
|
||||
r = admin.patch("/api/v1/teams/1", json={"hidden": False})
|
||||
assert r.status_code == 200
|
||||
|
||||
r = client.get("/teams")
|
||||
response = r.get_data(as_text=True)
|
||||
assert team_name in response
|
||||
|
||||
r = client.get("/api/v1/teams")
|
||||
response = r.get_data(as_text=True)
|
||||
assert team_name in response
|
||||
|
||||
r = client.get("/api/v1/scoreboard")
|
||||
response = r.get_data(as_text=True)
|
||||
assert team_name in response
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_teams_get_user_mode():
|
||||
"""Can a user get /teams if user mode"""
|
||||
app = create_ctfd(user_mode="users")
|
||||
with app.app_context():
|
||||
register_user(app)
|
||||
with login_as_user(app) as client:
|
||||
r = client.get("/teams")
|
||||
assert r.status_code == 404
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_team_get():
|
||||
"""Can a user get /team"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
user = gen_user(app.db)
|
||||
team = gen_team(app.db)
|
||||
team.members.append(user)
|
||||
user.team_id = team.id
|
||||
app.db.session.commit()
|
||||
with login_as_user(app, name="user_name", password="password") as client:
|
||||
r = client.get("/team")
|
||||
assert r.status_code == 200
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_teams_id_get():
|
||||
"""Can a user get /teams/<int:team_id>"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
user = gen_user(app.db)
|
||||
team = gen_team(app.db)
|
||||
team.members.append(user)
|
||||
user.team_id = team.id
|
||||
app.db.session.commit()
|
||||
with login_as_user(app, name="user_name", password="password") as client:
|
||||
r = client.get("/teams/1")
|
||||
assert r.status_code == 200
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_team_size_limit():
|
||||
"""Only team_size amount of members can join a team"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
set_config("team_size", 1)
|
||||
|
||||
# Create a team with only one member
|
||||
team = gen_team(app.db, member_count=1)
|
||||
team_id = team.id
|
||||
|
||||
register_user(app)
|
||||
with login_as_user(app) as client:
|
||||
r = client.get("/teams/join")
|
||||
assert r.status_code == 200
|
||||
|
||||
# User should be blocked from joining
|
||||
with client.session_transaction() as sess:
|
||||
data = {
|
||||
"name": "team_name",
|
||||
"password": "password",
|
||||
"nonce": sess.get("nonce"),
|
||||
}
|
||||
r = client.post("/teams/join", data=data)
|
||||
resp = r.get_data(as_text=True)
|
||||
assert len(Teams.query.filter_by(id=team_id).first().members) == 1
|
||||
assert "already reached the team size limit of 1" in resp
|
||||
|
||||
# Can the user join after the size has been bumped
|
||||
set_config("team_size", 2)
|
||||
r = client.post("/teams/join", data=data)
|
||||
resp = r.get_data(as_text=True)
|
||||
assert len(Teams.query.filter_by(id=team_id).first().members) == 2
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_num_teams_limit():
|
||||
"""Only num_teams teams can be created"""
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
set_config("num_teams", 1)
|
||||
|
||||
# Create a team
|
||||
gen_team(app.db, member_count=1)
|
||||
|
||||
register_user(app)
|
||||
with login_as_user(app) as client:
|
||||
r = client.get("/teams/new")
|
||||
assert r.status_code == 403
|
||||
|
||||
# team should be blocked from creation
|
||||
with client.session_transaction() as sess:
|
||||
data = {
|
||||
"name": "team1",
|
||||
"password": "password",
|
||||
"nonce": sess.get("nonce"),
|
||||
}
|
||||
r = client.post("/teams/new", data=data)
|
||||
resp = r.get_data(as_text=True)
|
||||
assert Teams.query.count() == 1
|
||||
assert "Reached the maximum number of teams" in resp
|
||||
|
||||
# Can the team be created after the num has been bumped
|
||||
set_config("num_teams", 2)
|
||||
r = client.post("/teams/new", data=data)
|
||||
resp = r.get_data(as_text=True)
|
||||
assert Teams.query.count() == 2
|
||||
destroy_ctfd(app)
|
||||
|
||||
|
||||
def test_team_creation_disable():
|
||||
app = create_ctfd(user_mode="teams")
|
||||
with app.app_context():
|
||||
register_user(app)
|
||||
with login_as_user(app) as client:
|
||||
# Team creation page should be available
|
||||
r = client.get("/teams/new")
|
||||
assert r.status_code == 200
|
||||
|
||||
# Disable team creation in config
|
||||
set_config("team_creation", False)
|
||||
|
||||
# Can't access the public team creation page
|
||||
r = client.get("/teams/new")
|
||||
assert r.status_code == 403
|
||||
|
||||
# User should be blocked from creating teams as well
|
||||
with client.session_transaction() as sess:
|
||||
data = {
|
||||
"name": "team_name",
|
||||
"password": "password",
|
||||
"nonce": sess.get("nonce"),
|
||||
}
|
||||
r = client.post("/teams/new", data=data)
|
||||
assert r.status_code == 403
|
||||
destroy_ctfd(app)
|
||||
Reference in New Issue
Block a user