2022-03-09 16:52:07 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""Test Logos
|
|
|
|
|
|
|
|
Utilisation :
|
|
|
|
créer les variables d'environnement: (indiquer les valeurs
|
|
|
|
pour le serveur ScoDoc que vous voulez interroger)
|
|
|
|
|
|
|
|
export SCODOC_URL="https://scodoc.xxx.net/"
|
|
|
|
export SCODOC_USER="xxx"
|
|
|
|
export SCODOC_PASSWD="xxx"
|
|
|
|
export CHECK_CERTIFICATE=0 # ou 1 si serveur de production avec certif SSL valide
|
|
|
|
|
|
|
|
(on peut aussi placer ces valeurs dans un fichier .env du répertoire tests/api).
|
|
|
|
|
|
|
|
Lancer :
|
|
|
|
pytest tests/api/test_api_departements.py
|
|
|
|
"""
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
import requests
|
2022-04-13 12:39:10 +02:00
|
|
|
|
|
|
|
from tests.api.setup_test_api import SCODOC_URL, CHECK_CERTIFICATE, HEADERS
|
2022-05-02 16:29:26 +02:00
|
|
|
from tests.api.tools_test_api import verify_fields
|
2022-03-09 16:52:07 +01:00
|
|
|
|
|
|
|
# departements
|
2022-05-02 16:29:26 +02:00
|
|
|
def test_departements():
|
|
|
|
fields = [
|
|
|
|
"id",
|
|
|
|
"acronym",
|
|
|
|
"description",
|
|
|
|
"visible",
|
|
|
|
"date_creation",
|
|
|
|
]
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
r = requests.get(
|
|
|
|
SCODOC_URL + "/ScoDoc/api/departements",
|
2022-04-13 12:39:10 +02:00
|
|
|
headers=HEADERS,
|
|
|
|
verify=CHECK_CERTIFICATE,
|
2022-03-10 17:43:12 +01:00
|
|
|
)
|
|
|
|
assert r.status_code == 200
|
2022-03-11 16:18:50 +01:00
|
|
|
assert len(r.json()) == 1
|
2022-03-09 16:52:07 +01:00
|
|
|
|
2022-05-02 16:29:26 +02:00
|
|
|
dept = r.json()[0]
|
|
|
|
|
|
|
|
fields_OK = verify_fields(dept, fields)
|
|
|
|
|
|
|
|
assert fields_OK is True
|
|
|
|
|
2022-03-09 16:52:07 +01:00
|
|
|
|
|
|
|
# liste_etudiants
|
2022-05-02 16:29:26 +02:00
|
|
|
def test_liste_etudiants():
|
|
|
|
fields = [
|
|
|
|
"civilite",
|
|
|
|
"code_ine",
|
|
|
|
"code_nip",
|
|
|
|
"date_naissance",
|
|
|
|
"email",
|
|
|
|
"emailperso",
|
|
|
|
"etudid",
|
|
|
|
"nom",
|
|
|
|
"prenom",
|
|
|
|
"nomprenom",
|
|
|
|
"lieu_naissance",
|
|
|
|
"dept_naissance",
|
|
|
|
"nationalite",
|
|
|
|
"boursier",
|
|
|
|
"id",
|
|
|
|
"codepostaldomicile",
|
|
|
|
"paysdomicile",
|
|
|
|
"telephonemobile",
|
|
|
|
"typeadresse",
|
|
|
|
"domicile",
|
|
|
|
"villedomicile",
|
|
|
|
"telephone",
|
|
|
|
"fax",
|
|
|
|
"description",
|
|
|
|
]
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
r = requests.get(
|
2022-05-03 13:35:17 +02:00
|
|
|
SCODOC_URL + "/ScoDoc/api/departements/TAPI/etudiants/list",
|
2022-04-13 12:39:10 +02:00
|
|
|
headers=HEADERS,
|
|
|
|
verify=CHECK_CERTIFICATE,
|
|
|
|
)
|
2022-05-02 16:29:26 +02:00
|
|
|
|
|
|
|
etu = r.json()[0]
|
|
|
|
|
|
|
|
fields_OK = verify_fields(etu, fields)
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
assert r.status_code == 200
|
2022-03-11 16:18:50 +01:00
|
|
|
assert len(r.json()) == 16
|
2022-05-02 16:29:26 +02:00
|
|
|
assert fields_OK is True
|
2022-03-09 16:52:07 +01:00
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
r = requests.get(
|
2022-05-03 13:35:17 +02:00
|
|
|
SCODOC_URL + "/ScoDoc/api/departements/TAPI/etudiants/list/1",
|
2022-04-13 12:39:10 +02:00
|
|
|
headers=HEADERS,
|
|
|
|
verify=CHECK_CERTIFICATE,
|
|
|
|
)
|
2022-05-02 16:29:26 +02:00
|
|
|
|
|
|
|
etu = r.json()[0]
|
|
|
|
|
|
|
|
fields_OK = verify_fields(etu, fields)
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
assert r.status_code == 200
|
2022-03-11 16:18:50 +01:00
|
|
|
assert len(r.json()) == 16
|
2022-05-02 16:29:26 +02:00
|
|
|
assert fields_OK is True
|
2022-03-09 16:52:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
# liste_semestres_courant
|
2022-05-02 16:29:26 +02:00
|
|
|
def test_semestres_courant():
|
|
|
|
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",
|
|
|
|
"date_debut_iso",
|
|
|
|
"date_fin_iso",
|
|
|
|
"responsables",
|
|
|
|
]
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
r = requests.get(
|
2022-05-02 16:29:26 +02:00
|
|
|
SCODOC_URL + "/ScoDoc/api/departements/TAPI/semestres_courants",
|
|
|
|
headers=HEADERS,
|
|
|
|
verify=CHECK_CERTIFICATE,
|
2022-04-13 12:39:10 +02:00
|
|
|
)
|
2022-05-02 16:29:26 +02:00
|
|
|
|
|
|
|
sem = r.json()[0]
|
|
|
|
|
|
|
|
fields_OK = verify_fields(sem, fields)
|
|
|
|
|
2022-03-10 17:43:12 +01:00
|
|
|
assert r.status_code == 200
|
2022-03-11 16:18:50 +01:00
|
|
|
assert len(r.json()) == 1
|
2022-05-02 16:29:26 +02:00
|
|
|
assert fields_OK is True
|
2022-03-09 16:52:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
# referenciel_competences
|
2022-03-10 17:43:12 +01:00
|
|
|
def test_referenciel_competences():
|
|
|
|
r = requests.get(
|
2022-05-02 16:29:26 +02:00
|
|
|
SCODOC_URL
|
|
|
|
+ "/ScoDoc/api/departements/TAPI/formations/1/referentiel_competences",
|
|
|
|
headers=HEADERS,
|
|
|
|
verify=CHECK_CERTIFICATE,
|
|
|
|
)
|
2022-03-10 17:43:12 +01:00
|
|
|
assert r.status_code == 200 or 204
|