mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
* Add absolute URL to power tests * Update to target Python 3.10 * Return user to current page when clicking 'mark reviewed' * Add units to power test record detail and form I'm a bad scientist (coz I'm an engineer) * Allow a higher value in PSSC fields * Default venue to event venue in EC/PT * Fix population of initial venue values for EC/PT * Add link to create power test from EC detail * Do not set power plan field to required on RA "This might be a problem if the risk assessment is being done by one person and the power plan by another." * Default power MIC to MIC * Implement some suggestions from the Doctor * Prevent checking in to cancelled events and dry hires Will close #539 * Exclude dry hires from H&S overview list * Add "ex VAT" tooltips to asset purchase price and replacement cost * Automagically clear and focus ID field when audit modal closes Closes #533 * Delete unused things * Allow two decimal places in cable length, show training item IDs in selectpicker Will close #540 * Fix #524 500 Error when viewing qualification list for items nobody is qualified in * Update README.md * Add a guard against nulls in recent changes Maybe fixes #537 I'm unable to replicate locally * Turn down verbosity of CI tests, fix tests, potential speedup * Squash migration * Add encoding to open * Update to v3 upload-artifact Resolves a deprecation warning
83 lines
3.7 KiB
Python
83 lines
3.7 KiB
Python
import datetime
|
|
import pytest
|
|
|
|
from django.utils import timezone
|
|
from django.urls import reverse
|
|
|
|
from pytest_django.asserts import assertFormError, assertRedirects, assertContains, assertNotContains, assertURLEqual
|
|
|
|
from training import models
|
|
from reversion.models import Version, Revision
|
|
|
|
|
|
def test_add_qualification(admin_client, trainee, admin_user, training_item):
|
|
url = reverse('add_qualification', kwargs={'pk': trainee.pk})
|
|
date = (timezone.now() + datetime.timedelta(days=3)).strftime("%Y-%m-%d")
|
|
response = admin_client.post(url, {'date': date, 'trainee': trainee.pk, 'supervisor': trainee.pk, 'item': training_item.pk})
|
|
assertFormError(response, 'form', 'date', 'Qualification date may not be in the future')
|
|
assertFormError(response, 'form', 'supervisor', 'One may not supervise oneself...')
|
|
response = admin_client.post(url, {'date': date, 'trainee': admin_user.pk, 'supervisor': trainee.pk, 'item': training_item.pk})
|
|
print(response.content)
|
|
assertFormError(response, 'form', 'supervisor', 'Selected supervisor must actually *be* a supervisor...')
|
|
|
|
|
|
def test_add_qualification_reversion(admin_client, trainee, training_item, supervisor):
|
|
url = reverse('add_qualification', kwargs={'pk': trainee.pk})
|
|
date = (timezone.now() + datetime.timedelta(days=-3)).strftime("%Y-%m-%d")
|
|
response = admin_client.post(url, {'date': date, 'supervisor': supervisor.pk, 'trainee': trainee.pk, 'item': training_item.pk, 'depth': 0, 'notes': ""})
|
|
print(response.content)
|
|
assert response.status_code == 302
|
|
qual = models.TrainingItemQualification.objects.last()
|
|
assert qual is not None
|
|
assert training_item.pk == qual.item_id
|
|
# Ensure only one revision has been created
|
|
assert Revision.objects.count() == 1
|
|
response = admin_client.post(url, {'date': date, 'supervisor': supervisor.pk, 'trainee': trainee.pk, 'item': training_item.pk, 'depth': 1})
|
|
assert Revision.objects.count() == 2
|
|
assert Version.objects.count() == 4 # Two item qualifications and the trainee twice
|
|
|
|
|
|
def test_add_requirement(admin_client, level):
|
|
url = reverse('add_requirement', kwargs={'pk': level.pk})
|
|
response = admin_client.post(url)
|
|
assertContains(response, level.pk)
|
|
|
|
|
|
def get_response(admin_client, url, kwargs={}):
|
|
url = reverse(url, kwargs=kwargs)
|
|
response = admin_client.get(url)
|
|
assert response.status_code == 200
|
|
return response
|
|
|
|
|
|
def test_trainee_detail(admin_client, trainee, admin_user):
|
|
response = get_response(admin_client, 'trainee_detail', {'pk': admin_user.pk})
|
|
assertContains(response, "Your Training Record")
|
|
assertContains(response, "No qualifications in any levels")
|
|
|
|
response = get_response(admin_client, 'trainee_detail', {'pk': trainee.pk})
|
|
assertNotContains(response, "Your")
|
|
assertContains(response, f"{trainee.get_full_name()}'s Training Record")
|
|
|
|
|
|
def test_trainee_item_detail(admin_client, trainee):
|
|
response = get_response(admin_client, 'trainee_item_detail', {'pk': trainee.pk})
|
|
assertContains(response, "Nothing found")
|
|
|
|
|
|
def test_item_list(admin_client, training_item):
|
|
response = get_response(admin_client, 'item_list')
|
|
assertContains(response, str(training_item.category))
|
|
|
|
|
|
def test_trainee_list_search(admin_client, admin_user, trainee, supervisor):
|
|
response = get_response(admin_client, 'trainee_list')
|
|
assertContains(response, admin_user.get_full_name())
|
|
assertContains(response, trainee.get_full_name())
|
|
assertContains(response, supervisor.get_full_name())
|
|
|
|
url = reverse('trainee_list')
|
|
response = admin_client.get(url, {'q': trainee.get_full_name()})
|
|
assertContains(response, trainee.get_full_name())
|
|
assertNotContains(response, supervisor.get_full_name())
|