435 lines
7.4 KiB
Python
435 lines
7.4 KiB
Python
"""Utilitaires pour les tests de l'API
|
|
"""
|
|
import json
|
|
|
|
|
|
def verify_fields(json_response: dict, expected_fields: set) -> bool:
|
|
"""
|
|
Vérifie si les champs attendu de la réponse json sont présents
|
|
|
|
json_response : la réponse de la requête
|
|
expected_fields : ensemble des champs à vérifier
|
|
|
|
Retourne True ou False
|
|
"""
|
|
return all(field in json_response for field in expected_fields)
|
|
|
|
|
|
def verify_occurences_ids_etus(json_response) -> bool:
|
|
"""
|
|
Vérifie si il n'y a pas deux fois le même id dans la liste d'étudiant donnée en paramètres
|
|
|
|
json_response : la réponse de la requête
|
|
|
|
Retourne True ou False
|
|
"""
|
|
list_etu = json.loads(json_response)
|
|
|
|
list_ids = [etu["id"] for etu in list_etu]
|
|
list_nip = [etu["nip"] for etu in list_etu]
|
|
list_ine = [etu["ine"] for etu in list_etu]
|
|
|
|
for id in list_ids:
|
|
if list_ids.count(id) > 1:
|
|
return False
|
|
for nip in list_nip:
|
|
if list_nip.count(nip) > 1:
|
|
return False
|
|
for ine in list_ine:
|
|
if list_ine.count(ine) > 1:
|
|
return False
|
|
return True
|
|
|
|
|
|
DEPARTEMENT_FIELDS = [
|
|
"id",
|
|
"acronym",
|
|
"description",
|
|
"visible",
|
|
"date_creation",
|
|
]
|
|
|
|
ETUD_FIELDS = {
|
|
"boursier",
|
|
"civilite",
|
|
"code_ine",
|
|
"code_nip",
|
|
"codepostaldomicile",
|
|
"date_naissance",
|
|
"dept_acronym",
|
|
"dept_id",
|
|
"dept_naissance",
|
|
"description",
|
|
"domicile",
|
|
"email",
|
|
"emailperso",
|
|
"etudid",
|
|
"id",
|
|
"lieu_naissance",
|
|
"nationalite",
|
|
"nom",
|
|
"nomprenom",
|
|
"paysdomicile",
|
|
"prenom",
|
|
"telephone",
|
|
"telephonemobile",
|
|
"typeadresse",
|
|
"villedomicile",
|
|
}
|
|
|
|
FORMATION_FIELDS = {
|
|
"id",
|
|
"acronyme",
|
|
"titre_officiel",
|
|
"formation_code",
|
|
"code_specialite",
|
|
"dept_id",
|
|
"titre",
|
|
"version",
|
|
"type_parcours",
|
|
"referentiel_competence_id",
|
|
"formation_id",
|
|
}
|
|
|
|
FORMSEMESTRE_FIELDS = [
|
|
"titre",
|
|
"gestion_semestrielle",
|
|
"scodoc7_id",
|
|
"date_debut",
|
|
"bul_bgcolor",
|
|
"date_fin",
|
|
"resp_can_edit",
|
|
"dept_id",
|
|
"etat",
|
|
"resp_can_change_ens",
|
|
"id",
|
|
"modalite",
|
|
"ens_can_edit_eval",
|
|
"formation_id",
|
|
"gestion_compensation",
|
|
"elt_sem_apo",
|
|
"semestre_id",
|
|
"bul_hide_xml",
|
|
"elt_annee_apo",
|
|
"block_moyennes",
|
|
"formsemestre_id",
|
|
"titre_num",
|
|
"titre_formation",
|
|
"date_debut_iso",
|
|
"date_fin_iso",
|
|
"responsables",
|
|
]
|
|
|
|
FSEM_FIELDS = {
|
|
"block_moyennes",
|
|
"bul_bgcolor",
|
|
"bul_hide_xml",
|
|
"date_debut_iso",
|
|
"date_debut",
|
|
"date_fin_iso",
|
|
"date_fin",
|
|
"dept_id",
|
|
"elt_annee_apo",
|
|
"elt_sem_apo",
|
|
"ens_can_edit_eval",
|
|
"etat",
|
|
"formation_id",
|
|
"formsemestre_id",
|
|
"gestion_compensation",
|
|
"gestion_semestrielle",
|
|
"id",
|
|
"modalite",
|
|
"resp_can_change_ens",
|
|
"resp_can_edit",
|
|
"responsables",
|
|
"semestre_id",
|
|
"titre_formation",
|
|
"titre_num",
|
|
"titre",
|
|
}
|
|
|
|
MODIMPL_FIELDS = {
|
|
"id",
|
|
"formsemestre_id",
|
|
"computation_expr",
|
|
"module_id",
|
|
"responsable_id",
|
|
"moduleimpl_id",
|
|
"ens",
|
|
"module",
|
|
}
|
|
|
|
MODULE_FIELDS = {
|
|
"heures_tp",
|
|
"code_apogee",
|
|
"titre",
|
|
"coefficient",
|
|
"module_type",
|
|
"id",
|
|
"ects",
|
|
"abbrev",
|
|
"ue_id",
|
|
"code",
|
|
"formation_id",
|
|
"heures_cours",
|
|
"matiere_id",
|
|
"heures_td",
|
|
"semestre_id",
|
|
"numero",
|
|
"module_id",
|
|
}
|
|
|
|
UE_FIELDS = {
|
|
"semestre_idx",
|
|
"type",
|
|
"formation_id",
|
|
"ue_code",
|
|
"id",
|
|
"ects",
|
|
"acronyme",
|
|
"is_external",
|
|
"numero",
|
|
"code_apogee",
|
|
"titre",
|
|
"coefficient",
|
|
"color",
|
|
"ue_id",
|
|
}
|
|
|
|
BULLETIN_FIELDS = {
|
|
"version",
|
|
"type",
|
|
"date",
|
|
"publie",
|
|
"etudiant",
|
|
"formation",
|
|
"formsemestre_id",
|
|
"etat_inscription",
|
|
"options",
|
|
"ressources",
|
|
"saes",
|
|
"ues",
|
|
"semestre",
|
|
}
|
|
|
|
|
|
BULLETIN_ETUDIANT_FIELDS = {
|
|
"civilite",
|
|
"code_ine",
|
|
"code_nip",
|
|
"date_naissance",
|
|
"dept_id",
|
|
"dept_acronym",
|
|
"email",
|
|
"emailperso",
|
|
"etudid",
|
|
"nom",
|
|
"prenom",
|
|
"nomprenom",
|
|
"lieu_naissance",
|
|
"dept_naissance",
|
|
"nationalite",
|
|
"boursier",
|
|
"fiche_url",
|
|
"photo_url",
|
|
"id",
|
|
"domicile",
|
|
"villedomicile",
|
|
"telephone",
|
|
"fax",
|
|
"description",
|
|
"codepostaldomicile",
|
|
"paysdomicile",
|
|
"telephonemobile",
|
|
"typeadresse",
|
|
}
|
|
|
|
BULLETIN_FORMATION_FIELDS = {"id", "acronyme", "titre_officiel", "titre"}
|
|
|
|
BULLETIN_OPTIONS_FIELDS = {
|
|
"show_abs",
|
|
"show_abs_modules",
|
|
"show_ects",
|
|
"show_codemodules",
|
|
"show_matieres",
|
|
"show_rangs",
|
|
"show_ue_rangs",
|
|
"show_mod_rangs",
|
|
"show_moypromo",
|
|
"show_minmax",
|
|
"show_minmax_mod",
|
|
"show_minmax_eval",
|
|
"show_coef",
|
|
"show_ue_cap_details",
|
|
"show_ue_cap_current",
|
|
"show_temporary",
|
|
"temporary_txt",
|
|
"show_uevalid",
|
|
"show_date_inscr",
|
|
}
|
|
|
|
BULLETIN_RESSOURCES_FIELDS = {
|
|
"R101",
|
|
"R102",
|
|
"R103",
|
|
"R104",
|
|
"R105",
|
|
"R106",
|
|
"R107",
|
|
"R108",
|
|
"R109",
|
|
"R110",
|
|
"R111",
|
|
"R112",
|
|
"R113",
|
|
"R114",
|
|
"R115",
|
|
}
|
|
|
|
BULLETIN_SAES_FIELDS = {
|
|
"SAE11",
|
|
"SAE12",
|
|
"SAE13",
|
|
"SAE14",
|
|
"SAE15",
|
|
"SAE16",
|
|
}
|
|
|
|
########### RESSOURCES ET SAES ###########
|
|
BULLETIN_RESSOURCES_ET_SAES_RESSOURCE_ET_SAE_FIELDS = {
|
|
"id",
|
|
"titre",
|
|
"code_apogee",
|
|
"url",
|
|
"moyenne",
|
|
"evaluations",
|
|
}
|
|
|
|
BULLETIN_RESSOURCES_ET_SAES_RESSOURCE_ET_SAE_EVALUATION_FIELDS = {
|
|
"id",
|
|
"description",
|
|
"date",
|
|
"heure_debut",
|
|
"heure_fin",
|
|
"coef",
|
|
"poids",
|
|
"note",
|
|
"url",
|
|
}
|
|
|
|
BULLETIN_RESSOURCES_ET_SAES_RESSOURCE_ET_SAE_EVALUATION_POIDS_FIELDS = {
|
|
"RT1.1",
|
|
"RT2.1",
|
|
"RT3.1",
|
|
}
|
|
|
|
BULLETIN_RESSOURCES_ET_SAES_RESSOURCE_ET_SAE_EVALUATION_NOTE_FIELDS = {
|
|
"value",
|
|
"min",
|
|
"max",
|
|
"moy",
|
|
}
|
|
|
|
|
|
########### UES ###########
|
|
BULLETIN_UES_FIELDS = {"RT1.1", "RT2.1", "RT3.1"}
|
|
|
|
BULLETIN_UES_UE_FIELDS = {
|
|
"id",
|
|
"titre",
|
|
"numero",
|
|
"type",
|
|
"color",
|
|
"competence",
|
|
"moyenne",
|
|
"bonus",
|
|
"malus",
|
|
"capitalise",
|
|
"ressources",
|
|
"saes",
|
|
"ECTS",
|
|
}
|
|
|
|
BULLETIN_UES_UE_MOYENNE_FIELDS = {"value", "min", "max", "moy", "rang", "total"}
|
|
|
|
BULLETIN_UES_RT11_RESSOURCES_FIELDS = {
|
|
"R101",
|
|
"R102",
|
|
"R103",
|
|
"R104",
|
|
"R106",
|
|
"R108",
|
|
"R110",
|
|
"R111",
|
|
"R112",
|
|
"R113",
|
|
"R114",
|
|
}
|
|
|
|
BULLETIN_UES_RT21_RESSOURCES_FIELDS = {
|
|
"R101",
|
|
"R103",
|
|
"R104",
|
|
"R105",
|
|
"R110",
|
|
"R111",
|
|
"R112",
|
|
"R113",
|
|
"R114",
|
|
"R115",
|
|
}
|
|
|
|
BULLETIN_UES_RT31_RESSOURCES_FIELDS = {
|
|
"R101",
|
|
"R107",
|
|
"R108",
|
|
"R109",
|
|
"R110",
|
|
"R111",
|
|
"R112",
|
|
"R115",
|
|
}
|
|
|
|
BULLETIN_UES_UE_RESSOURCES_RESSOURCE_FIELDS = {"id", "coef", "moyenne"}
|
|
|
|
BULLETIN_UES_RT11_SAES_FIELDS = {
|
|
"SAE11",
|
|
"SAE12",
|
|
}
|
|
|
|
BULLETIN_UES_RT21_SAES_FIELDS = {"SAE13"}
|
|
|
|
BULLETIN_UES_RT31_SAES_FIELDS = {
|
|
"SAE14",
|
|
"SAE15",
|
|
}
|
|
|
|
BULLETIN_UES_UE_SAES_SAE_FIELDS = {"id", "coef", "moyenne"}
|
|
|
|
|
|
BULLETIN_UES_UE_ECTS_FIELDS = {"acquis", "total"}
|
|
|
|
|
|
########### SEMESTRE ###########
|
|
BULLETIN_SEMESTRE_FIELDS = {
|
|
"etapes",
|
|
"date_debut",
|
|
"date_fin",
|
|
"annee_universitaire",
|
|
"numero",
|
|
"inscription",
|
|
"groupes",
|
|
"absences",
|
|
"ECTS",
|
|
"notes",
|
|
"rang",
|
|
}
|
|
|
|
BULLETIN_SEMESTRE_ABSENCES_FIELDS = {"injustifie", "total"}
|
|
|
|
BULLETIN_SEMESTRE_ECTS_FIELDS = {"acquis", "total"}
|
|
|
|
BULLETIN_SEMESTRE_NOTES_FIELDS = {"value", "min", "moy", "max"}
|
|
|
|
BULLETIN_SEMESTRE_RANG_FIELDS = {"value", "total"}
|