-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With this change we ensure to send certificates if the user was created with a saml extra association that add more sufix data different than current username. So this ensure the national_id have to be processed with the 10 first chars.
- Loading branch information
Showing
2 changed files
with
82 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
User = get_user_model() | ||
|
||
WRONG_NATIONAL_IDS = [0, "", "324234", "VADER", "3666888999", "166688899", "فيدر"] | ||
SAML_EXTRA_ASSOCIATIONS_LIST = ["1666888998ASDF", "1222666444a6ca", "12226664443242344334534543", "1222666444#@$%"] | ||
|
||
|
||
class UserHasPassingGradeTestCase(unittest.TestCase): | ||
|
@@ -179,3 +180,77 @@ def test_invalid_mational_id(self, wrong_national_id, generate_certificate_mock, | |
_generate_external_certificate_data, | ||
**external_certificate_data, | ||
) | ||
|
||
@override_settings(EXTERNAL_CERTIFICATES_GROUP_CODES={"course-v1:test+Cx105+2022_T4": "ABC123"}) | ||
@patch("eox_nelp.signals.utils._user_has_passing_grade") | ||
@patch("eox_nelp.signals.utils.GeneratedCertificate") | ||
@data(*SAML_EXTRA_ASSOCIATIONS_LIST) | ||
def test_generate_certificate_data_saml_extra_association( | ||
self, | ||
saml_extra_assocation, | ||
generate_certificate_mock, | ||
passing_mock | ||
): | ||
"""This tests the normal behavior ofa user with saml_extra_association | ||
the method `_generate_external_certificate_data` | ||
Expected behavior: | ||
- Result is as the expected value | ||
- GeneratedCertificate mock is called with the right parameters. | ||
- _user_has_passing_grade is called with the right parameters. | ||
""" | ||
time = timezone.now() | ||
certificate = Mock() | ||
certificate.id = 99 | ||
generate_certificate_mock.objects.get.return_value = certificate | ||
passing_mock.return_value = True | ||
saml_association_user, _ = User.objects.get_or_create( | ||
username=saml_extra_assocation, | ||
) | ||
certificate_data = CertificateData( | ||
user=UserData( | ||
pii=UserPersonalData( | ||
username=saml_association_user.username, | ||
email="[email protected]", | ||
name="Harry Potter", | ||
), | ||
id=saml_association_user.id, | ||
is_active=True, | ||
), | ||
course=CourseData( | ||
course_key=CourseKey.from_string("course-v1:test+Cx105+2022_T4"), | ||
), | ||
mode="audit", | ||
grade=0.88, | ||
current_status="non-passing", | ||
download_url="", | ||
name="", | ||
) | ||
national_id = saml_association_user.username[:10] | ||
|
||
expected_value = { | ||
"id": certificate.id, | ||
'reference_id': f'{national_id}~course-v1:test+Cx105+2022_T4', | ||
"created_at": str(time.date()), | ||
"expiration_date": None, | ||
"grade": certificate_data.grade * 100, | ||
"is_passing": True, | ||
"group_code": settings.EXTERNAL_CERTIFICATES_GROUP_CODES[str(self.certificate_data.course.course_key)], | ||
"user": { | ||
"national_id": national_id, | ||
"english_name": certificate_data.user.pii.name, | ||
"arabic_name": "", | ||
} | ||
} | ||
|
||
result = _generate_external_certificate_data(time, certificate_data) | ||
|
||
self.assertEqual(result, expected_value) | ||
generate_certificate_mock.objects.get.assert_called_once_with( | ||
user=saml_association_user, | ||
course_id=certificate_data.course.course_key, | ||
) | ||
passing_mock.assert_called_once_with( | ||
saml_association_user, | ||
str(certificate_data.course.course_key) | ||
) |
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