mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 05:54:19 +01:00
* Bootstrap v4 (#490) * Upgrading original theme to use Bootstrap v4 and overall improve use of utility classes * Fixing graph issues. Colors per team & cleaner hover * The solves tab now shows relative time instead of absolute time * Redesign admin theme * Updating modals and changing form name from desc to description * Moving CSS config from Pages to Config page * Adding IP address count to statistics * Move control of certain modals (files, flags, tags, hints) to challenges page * Expanding size of config page * Combining statistics and graphs pages * Moving percentage solved to the statistics page instead of the admin challenges page * Rename Keys.key_type to Keys.type (#459) (#478) * Rename keys.key_type to keys.type (#459) * Fixing previous migration to not be worried about key_type v type * Fixing loading of challenge type plugins * Switching from Handlebars to Nunjucks (#491) * Switching from Handlebars to Nunjucks * Allow admins to unlock hints before CTF begins and test that this is not allowed for regular users * Authed only (#492) * Adding authed_only decorator and adding next to url_for * Adding a basic preview to hints (#494) * Hints have a preview now for creating and updating hints. HTML and markdown are still allowed. * Ezq (#495) * Adding ezq as a simple wrapper around bootstrap modals * Use tabs not spaces and remove gray background on inputs * Adding title & draft to Pages. Making page preview open a new tab (#497) * Adding title & draft to Pages. * Making page preview open a new tab instead of render in the existing tab * Draft pages cannot be seen without a preview * Update check (#499) * Add update_check function * Notify user that a CTFd update is available in the admin panel * Adding update_check tests * Ratelimit (#500) * Implementing a ratelimit function * Fix error page formatting * Add rate limiting tests * Rate limit authentication functions and rate limit admin send email function * Load user solves before we load challenges to avoid unstyled buttons (#502) * Add a challenge preview (#503) * Adding a challenge preview to the admin panel * Change /admin/chals/<int:chalid> to /admin/chal/<int:chalid> * Adding codecov (#504) * Test coverage at https://codecov.io/gh/CTFd/CTFd * Sendmail improvements (#505) * Add get_smtp timeout, add sendmail error messages * Adding more error handling to sendmail * Adding Flask-Script (#507) * Pause ctf (#508) * Implement CTF pausing * Test CTF pausing * Fix loading challenges for users (#510) * Fix loading challenges for users * Temporarily switch themes in test * Pause help text (#509) * Adding pause help text * Pages authed (#511) * Adding authentication options to pages * Adding tests for accessing pages while draft & auth_required * Merging master into 1.1 (#513) * Name the core theme and remove the original theme
109 lines
3.6 KiB
Python
109 lines
3.6 KiB
Python
from tests.helpers import *
|
|
from CTFd.models import Teams, Challenges
|
|
from CTFd.utils import get_config, set_config, override_template, sendmail, verify_email, ctf_started, ctf_ended
|
|
from CTFd.plugins.challenges import get_chal_class
|
|
from freezegun import freeze_time
|
|
from mock import patch
|
|
|
|
|
|
def test_admin_post_config_values():
|
|
"""Test that admins can POST configuration values"""
|
|
app = create_ctfd()
|
|
with app.app_context():
|
|
client = login_as_user(app, name="admin", password="password")
|
|
|
|
with client.session_transaction() as sess:
|
|
data = {
|
|
'nonce': sess.get('nonce'),
|
|
'ctf_name': 'CTFd',
|
|
'ctf_theme': 'core',
|
|
'workshop_mode': 'on',
|
|
'paused': 'on',
|
|
'hide_scores': 'on',
|
|
'css': 'None',
|
|
'verify_emails': 'on',
|
|
'view_challenges_unregistered': 'on',
|
|
'view_scoreboard_if_authed': 'on',
|
|
'prevent_registration': 'on',
|
|
'prevent_name_change': 'on',
|
|
'mailfrom_addr': 'user@ctfd.io',
|
|
'mail_server': 'mail.failmail.com',
|
|
'mail_port': '587',
|
|
'mail_useauth': 'on',
|
|
'mail_u': 'username',
|
|
'mail_p': 'password',
|
|
'mail_tls': 'on',
|
|
'mg_base_url': '',
|
|
'mg_api_key': '',
|
|
'start-month': '',
|
|
'start-day': '',
|
|
'start-year': '',
|
|
'start-hour': '',
|
|
'start-minute': '',
|
|
'start': '',
|
|
'end-month': '',
|
|
'end-day': '',
|
|
'end-year': '',
|
|
'end-hour': '',
|
|
'end-minute': '',
|
|
'end': '',
|
|
'freeze-month': '',
|
|
'freeze-day': '',
|
|
'freeze-year': '',
|
|
'freeze-hour': '',
|
|
'freeze-minute': '',
|
|
'freeze': '',
|
|
'backup': ''
|
|
}
|
|
r = client.post('/admin/config', data=data)
|
|
|
|
result = {
|
|
'ctf_name': 'CTFd',
|
|
'ctf_theme': 'core',
|
|
'workshop_mode': True,
|
|
'paused': True,
|
|
'hide_scores': True,
|
|
'css': 'None',
|
|
'verify_emails': True,
|
|
'view_challenges_unregistered': True,
|
|
'view_scoreboard_if_authed': True,
|
|
'prevent_registration': True,
|
|
'prevent_name_change': True,
|
|
'mailfrom_addr': 'user@ctfd.io',
|
|
'mail_server': 'mail.failmail.com',
|
|
'mail_port': 587,
|
|
'mail_useauth': True,
|
|
'mail_username': 'username',
|
|
'mail_password': 'password',
|
|
'mail_tls': True,
|
|
'mg_base_url': None,
|
|
'mg_api_key': None,
|
|
'start-month': None,
|
|
'start-day': None,
|
|
'start-year': None,
|
|
'start-hour': None,
|
|
'start-minute': None,
|
|
'start': None,
|
|
'end-month': None,
|
|
'end-day': None,
|
|
'end-year': None,
|
|
'end-hour': None,
|
|
'end-minute': None,
|
|
'end': None,
|
|
'freeze-month': None,
|
|
'freeze-day': None,
|
|
'freeze-year': None,
|
|
'freeze-hour': None,
|
|
'freeze-minute': None,
|
|
'freeze': None,
|
|
'backup': None
|
|
}
|
|
|
|
for key in result:
|
|
if result[key]:
|
|
assert get_config(key) == result[key]
|
|
else:
|
|
assert get_config(key) is None
|
|
|
|
destroy_ctfd(app)
|