-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for setting roles/active per student. Tighten routes a bit,…
… too.
- Loading branch information
Showing
4 changed files
with
117 additions
and
4 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,109 @@ | ||
# SPDX-FileCopyrightText: 2024 Mark Liffiton <[email protected]> | ||
# | ||
# SPDX-License-Identifier: AGPL-3.0-only | ||
|
||
from gened.db import get_db | ||
|
||
|
||
def test_set_role_active(app, client, auth): | ||
auth.login() # as testuser, who created and is instructor in class id 2 | ||
|
||
response = client.get('/classes/switch/2') # switch to class 2 | ||
assert response.status_code == 302 | ||
assert response.location == "/profile/" | ||
|
||
# Test successful deactivation (deactivating testadmint in the course) | ||
response = client.post('/instructor/role/set_active/5/0') | ||
assert response.status_code == 200 | ||
assert response.data == b'okay' | ||
|
||
# Verify database update | ||
with app.app_context(): | ||
db = get_db() | ||
active_status = db.execute('SELECT active FROM roles JOIN users ON roles.user_id=users.id WHERE users.auth_name="testadmin"').fetchone()['active'] | ||
assert active_status == 0 | ||
|
||
# Test successful activation | ||
response = client.post('/instructor/role/set_active/5/1') | ||
assert response.status_code == 200 | ||
assert response.data == b'okay' | ||
|
||
# Verify database update | ||
with app.app_context(): | ||
db = get_db() | ||
active_status = db.execute('SELECT active FROM roles JOIN users ON roles.user_id=users.id WHERE users.auth_name="testadmin"').fetchone()['active'] | ||
assert active_status == 1 | ||
|
||
# Test class instructor (testuser, role 4) trying to deactivate themselves | ||
response = client.post('/instructor/role/set_active/4/0') | ||
assert response.status_code == 200 | ||
assert b'okay' not in response.data | ||
assert response.data == b'You cannot make yourself inactive.' | ||
|
||
# Test invalid role_id | ||
response = client.post('/instructor/role/set_active/999/0') | ||
assert response.status_code == 200 | ||
assert response.data == b'okay' # It doesn't fail, just doesn't update anything | ||
|
||
# Test invalid bool_active value | ||
response = client.post('/instructor/role/set_active/4/2') | ||
assert response.status_code == 404 # Not Found, as it doesn't match the route (0 or 1 only for the new state) | ||
|
||
# Test non-instructor access | ||
auth.logout() | ||
auth.login('testuser2', 'testuser2password') | ||
response = client.post('/instructor/role/set_active/5/0') | ||
assert response.status_code == 302 # Redirect to login | ||
assert response.location.startswith('/auth/login?') | ||
|
||
|
||
def test_set_role_instructor(app, client, auth): | ||
auth.login() # as testuser, who created and is instructor in class id 2 | ||
|
||
response = client.get('/classes/switch/2') # switch to class 2 | ||
assert response.status_code == 302 | ||
assert response.location == "/profile/" | ||
|
||
# Test successful change to instructor for testadmin (starts as student) | ||
response = client.post('/instructor/role/set_instructor/5/1') | ||
assert response.status_code == 200 | ||
assert response.data == b'okay' | ||
|
||
# Verify database update | ||
with app.app_context(): | ||
db = get_db() | ||
role = db.execute('SELECT role FROM roles JOIN users ON roles.user_id=users.id WHERE users.auth_name="testadmin"').fetchone()['role'] | ||
assert role == 'instructor' | ||
|
||
# Test successful change back to student | ||
response = client.post('/instructor/role/set_instructor/5/0') | ||
assert response.status_code == 200 | ||
assert response.data == b'okay' | ||
|
||
# Verify database update | ||
with app.app_context(): | ||
db = get_db() | ||
role = db.execute('SELECT role FROM roles JOIN users ON roles.user_id=users.id WHERE users.auth_name="testadmin"').fetchone()['role'] | ||
assert role == 'student' | ||
|
||
# Test instructor trying to change their own role | ||
response = client.post('/instructor/role/set_instructor/4/0') | ||
assert response.status_code == 200 | ||
assert b'okay' not in response.data | ||
assert response.data == b'You cannot change your own role.' | ||
|
||
# Test invalid role_id | ||
response = client.post('/instructor/role/set_instructor/999/1') | ||
assert response.status_code == 200 | ||
assert response.data == b'okay' # It doesn't fail, just doesn't update anything | ||
|
||
# Test invalid bool_instructor value | ||
response = client.post('/instructor/role/set_instructor/4/2') | ||
assert response.status_code == 404 # Not Found, as it doesn't match the route | ||
|
||
# Test non-instructor access | ||
auth.logout() | ||
auth.login('testuser2', 'testuser2password') | ||
response = client.post('/instructor/role/set_instructor/5/1') | ||
assert response.status_code == 302 # Redirect to login | ||
assert response.location.startswith('/auth/login?') |
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