forked from CTFd/CTFd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit total number of teams (CTFd#1867)
* Adds support for a total teams limit
- Loading branch information
Showing
9 changed files
with
110 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,5 @@ CTFd/uploads/**/* | |
**/node_modules | ||
**/*.pyc | ||
**/__pycache__ | ||
.venv* | ||
venv* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ __pycache__/ | |
# Distribution / packaging | ||
.Python | ||
env/ | ||
venv* | ||
.venv* | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ CTFd/themes/**/vendor/ | |
*.svg | ||
*.mp3 | ||
*.webm | ||
.pytest_cache | ||
venv* | ||
.venv* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,42 @@ def test_team_size_limit(): | |
login_with_mlc(app, team_name="team_name", team_oauth_id=1234) | ||
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 even via MLC""" | ||
app = create_ctfd(user_mode="teams") | ||
app.config.update( | ||
{ | ||
"OAUTH_CLIENT_ID": "ctfd_testing_client_id", | ||
"OAUTH_CLIENT_SECRET": "ctfd_testing_client_secret", | ||
"OAUTH_AUTHORIZATION_ENDPOINT": "http://auth.localhost/oauth/authorize", | ||
"OAUTH_TOKEN_ENDPOINT": "http://auth.localhost/oauth/token", | ||
"OAUTH_API_ENDPOINT": "http://api.localhost/user", | ||
} | ||
) | ||
with app.app_context(): | ||
set_config("num_teams", 1) | ||
gen_team(app.db, member_count=1, oauth_id=1234) | ||
login_with_mlc( | ||
app, | ||
name="foobar", | ||
email="[email protected]", | ||
oauth_id=111, | ||
team_name="foobar", | ||
team_oauth_id=1111, | ||
raise_for_error=False, | ||
) | ||
assert Teams.query.count() == 1 | ||
|
||
set_config("num_teams", 2) | ||
login_with_mlc( | ||
app, | ||
name="foobarbaz", | ||
email="[email protected]", | ||
oauth_id=222, | ||
team_name="foobarbaz", | ||
team_oauth_id=2222, | ||
) | ||
assert Teams.query.count() == 2 | ||
destroy_ctfd(app) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters