2022-03-09 16:05:44 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""Initialise une base pour les tests de l'API ScoDoc 9
|
|
|
|
|
|
|
|
Création des départements, formations, semestres, étudiants, groupes...
|
|
|
|
|
|
|
|
utilisation:
|
2022-05-04 23:11:20 +02:00
|
|
|
1) modifier /opt/scodoc/.env pour indiquer
|
|
|
|
FLASK_ENV=test_api
|
|
|
|
FLASK_DEBUG=1
|
2022-03-09 16:05:44 +01:00
|
|
|
|
|
|
|
2) En tant qu'utilisateur scodoc, lancer:
|
2022-06-09 11:08:08 +02:00
|
|
|
tools/create_database.sh SCODOC_TEST_API_EVAL
|
2022-03-09 16:05:44 +01:00
|
|
|
flask db upgrade
|
|
|
|
flask sco-db-init --erase
|
|
|
|
flask init-test-database
|
2022-05-04 23:11:20 +02:00
|
|
|
|
2022-03-09 16:05:44 +01:00
|
|
|
|
|
|
|
3) relancer ScoDoc:
|
|
|
|
flask run --host 0.0.0.0
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
4) lancer client de test
|
2022-03-09 16:05:44 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
import datetime
|
|
|
|
import random
|
2022-06-09 11:08:08 +02:00
|
|
|
import time
|
2022-05-04 23:11:20 +02:00
|
|
|
import sys
|
2022-03-09 16:05:44 +01:00
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
from app.auth.models import Role, User
|
2022-03-09 16:05:44 +01:00
|
|
|
from app import models
|
2022-06-09 11:08:08 +02:00
|
|
|
from app.models import (
|
|
|
|
Departement,
|
|
|
|
Formation,
|
|
|
|
FormSemestre,
|
|
|
|
Identite,
|
|
|
|
ModuleImpl,
|
|
|
|
NotesNotes,
|
|
|
|
)
|
2022-03-09 16:05:44 +01:00
|
|
|
from app import db
|
2022-03-09 18:03:18 +01:00
|
|
|
from app.scodoc import (
|
2022-05-04 23:11:20 +02:00
|
|
|
sco_cache,
|
|
|
|
sco_evaluation_db,
|
2022-03-09 18:03:18 +01:00
|
|
|
sco_formations,
|
|
|
|
sco_formsemestre_inscriptions,
|
|
|
|
sco_groups,
|
|
|
|
)
|
2022-05-04 23:11:20 +02:00
|
|
|
from app.scodoc.sco_permissions import Permission
|
2022-06-02 16:18:47 +02:00
|
|
|
from app.scodoc.sco_saisie_notes import notes_add
|
2022-03-09 16:05:44 +01:00
|
|
|
from tools.fakeportal.gen_nomprenoms import nomprenom
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
random.seed(12345678) # tests reproductibles
|
|
|
|
|
2022-03-09 16:05:44 +01:00
|
|
|
# La formation à utiliser:
|
|
|
|
FORMATION_XML_FILENAME = "tests/ressources/formations/scodoc_formation_RT_BUT_RT_v1.xml"
|
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def init_departement(acronym: str) -> Departement:
|
2022-03-09 16:05:44 +01:00
|
|
|
"Create dept, and switch context into it."
|
|
|
|
import app as mapp
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
dept = Departement(acronym=acronym)
|
2022-03-09 16:05:44 +01:00
|
|
|
db.session.add(dept)
|
|
|
|
mapp.set_sco_dept(acronym)
|
|
|
|
db.session.commit()
|
|
|
|
return dept
|
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def import_formation() -> Formation:
|
2022-03-09 16:05:44 +01:00
|
|
|
"""Import formation from XML.
|
|
|
|
Returns formation_id
|
|
|
|
"""
|
|
|
|
with open(FORMATION_XML_FILENAME) as f:
|
|
|
|
doc = f.read()
|
|
|
|
# --- Création de la formation
|
|
|
|
f = sco_formations.formation_import_xml(doc)
|
2022-05-04 23:11:20 +02:00
|
|
|
return Formation.query.get(f[0])
|
2022-03-09 16:05:44 +01:00
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def create_users(dept: Departement) -> tuple:
|
|
|
|
"""créé les utilisateurs nécessaires aux tests"""
|
|
|
|
# Un utilisateur "test" (passwd test) pouvant lire l'API
|
|
|
|
user = User(user_name="test", nom="Doe", prenom="John", dept=dept.acronym)
|
|
|
|
user.set_password("test")
|
2022-03-09 16:05:44 +01:00
|
|
|
db.session.add(user)
|
2022-05-04 23:11:20 +02:00
|
|
|
|
|
|
|
# Le rôle standard LecteurAPI existe déjà
|
|
|
|
role = Role.query.filter_by(name="LecteurAPI").first()
|
|
|
|
if role is None:
|
|
|
|
print("Erreur: rôle LecteurAPI non existant")
|
|
|
|
sys.exit(1)
|
|
|
|
perm_api_view = Permission.get_by_name("APIView")
|
|
|
|
role.add_permission(perm_api_view)
|
|
|
|
db.session.add(role)
|
|
|
|
|
|
|
|
user.add_role(role, None)
|
|
|
|
|
|
|
|
# Un utilisateur "other" n'ayant aucune permission sur l'API
|
|
|
|
other = User(user_name="other", nom="Sans", prenom="Permission", dept=dept.acronym)
|
|
|
|
other.set_password("other")
|
|
|
|
db.session.add(other)
|
|
|
|
|
2022-03-09 16:05:44 +01:00
|
|
|
db.session.commit()
|
2022-05-04 23:11:20 +02:00
|
|
|
return user, other
|
2022-03-09 16:05:44 +01:00
|
|
|
|
|
|
|
|
2022-05-07 08:23:30 +02:00
|
|
|
def create_fake_etud(dept: Departement) -> Identite:
|
|
|
|
"""Créé un faux étudiant et l'insère dans la base."""
|
2022-03-09 16:05:44 +01:00
|
|
|
civilite = random.choice(("M", "F", "X"))
|
|
|
|
nom, prenom = nomprenom(civilite)
|
2022-05-07 08:23:30 +02:00
|
|
|
etud: Identite = Identite(
|
|
|
|
civilite=civilite, nom=nom, prenom=prenom, dept_id=dept.id
|
|
|
|
)
|
2022-03-09 16:05:44 +01:00
|
|
|
db.session.add(etud)
|
|
|
|
db.session.commit()
|
2022-05-07 08:23:30 +02:00
|
|
|
# créé un étudiant sur deux avec un NIP et INE alphanumérique
|
|
|
|
etud.code_nip = f"{etud.id}" if (etud.id % 2) else f"NIP{etud.id}"
|
|
|
|
etud.code_ine = f"INE{etud.id}" if (etud.id % 2) else f"{etud.id}"
|
2022-04-15 15:57:44 +02:00
|
|
|
db.session.add(etud)
|
|
|
|
db.session.commit()
|
2022-03-09 18:03:18 +01:00
|
|
|
adresse = models.Adresse(
|
|
|
|
etudid=etud.id, email=f"{etud.prenom}.{etud.nom}@example.com"
|
|
|
|
)
|
|
|
|
db.session.add(adresse)
|
|
|
|
admission = models.Admission(etudid=etud.id)
|
|
|
|
db.session.add(admission)
|
|
|
|
db.session.commit()
|
2022-03-09 16:05:44 +01:00
|
|
|
return etud
|
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def create_etuds(dept: Departement, nb=16) -> list:
|
2022-03-09 16:05:44 +01:00
|
|
|
"create nb etuds"
|
2022-03-09 18:03:18 +01:00
|
|
|
return [create_fake_etud(dept) for _ in range(nb)]
|
2022-03-09 16:05:44 +01:00
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def create_formsemestre(
|
|
|
|
formation: Formation, responsable: User, semestre_idx=1
|
|
|
|
) -> FormSemestre:
|
|
|
|
"""Create formsemestre and moduleimpls
|
|
|
|
responsable: resp. du formsemestre
|
|
|
|
"""
|
|
|
|
formsemestre = FormSemestre(
|
2022-03-09 16:05:44 +01:00
|
|
|
dept_id=formation.dept_id,
|
|
|
|
semestre_id=semestre_idx,
|
|
|
|
titre="Semestre test",
|
|
|
|
date_debut=datetime.datetime(2021, 9, 1),
|
2022-04-14 14:56:36 +02:00
|
|
|
date_fin=datetime.datetime(2022, 8, 31),
|
2022-03-09 16:05:44 +01:00
|
|
|
modalite="FI",
|
|
|
|
formation=formation,
|
|
|
|
)
|
|
|
|
db.session.add(formsemestre)
|
|
|
|
db.session.commit()
|
|
|
|
# Crée un modulimpl par module de ce semestre:
|
|
|
|
for module in formation.modules.filter_by(semestre_id=semestre_idx):
|
|
|
|
modimpl = models.ModuleImpl(
|
2022-05-04 23:11:20 +02:00
|
|
|
module_id=module.id,
|
|
|
|
formsemestre_id=formsemestre.id,
|
|
|
|
responsable_id=responsable.id,
|
2022-03-09 16:05:44 +01:00
|
|
|
)
|
|
|
|
db.session.add(modimpl)
|
|
|
|
db.session.commit()
|
2022-03-09 18:03:18 +01:00
|
|
|
partition_id = sco_groups.partition_create(
|
|
|
|
formsemestre.id, default=True, redirect=False
|
|
|
|
)
|
|
|
|
_group_id = sco_groups.create_group(partition_id, default=True)
|
2022-03-09 16:05:44 +01:00
|
|
|
return formsemestre
|
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def inscrit_etudiants(etuds: list, formsemestre: FormSemestre):
|
2022-03-09 16:05:44 +01:00
|
|
|
"""Inscrit les etudiants aux semestres et à tous ses modules"""
|
|
|
|
for etud in etuds:
|
2022-03-09 18:03:18 +01:00
|
|
|
sco_formsemestre_inscriptions.do_formsemestre_inscription_with_modules(
|
|
|
|
formsemestre.id,
|
|
|
|
etud.id,
|
|
|
|
group_ids=[],
|
|
|
|
etat="I",
|
|
|
|
method="init db test",
|
2022-03-09 16:05:44 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
def create_evaluations(formsemestre: FormSemestre):
|
|
|
|
"creation d'une evaluation dans cahque modimpl du semestre"
|
|
|
|
for modimpl in formsemestre.modimpls:
|
|
|
|
args = {
|
|
|
|
"moduleimpl_id": modimpl.id,
|
|
|
|
"jour": None,
|
|
|
|
"heure_debut": "8h00",
|
|
|
|
"heure_fin": "9h00",
|
|
|
|
"description": None,
|
|
|
|
"note_max": 20,
|
|
|
|
"coefficient": 1.0,
|
|
|
|
"visibulletin": True,
|
|
|
|
"publish_incomplete": True,
|
|
|
|
"evaluation_type": None,
|
|
|
|
"numero": None,
|
|
|
|
}
|
|
|
|
evaluation_id = sco_evaluation_db.do_evaluation_create(**args)
|
|
|
|
|
|
|
|
|
2022-06-09 11:08:08 +02:00
|
|
|
def saisie_notes_evaluations(formsemestre: FormSemestre, user: User):
|
2022-06-02 16:18:47 +02:00
|
|
|
"""
|
|
|
|
Saisie les notes des evaluations d'un semestre
|
|
|
|
"""
|
2022-06-09 11:08:08 +02:00
|
|
|
etuds = formsemestre.etuds
|
|
|
|
list_etuds = []
|
|
|
|
for etu in etuds:
|
|
|
|
list_etuds.append(etu)
|
2022-06-02 16:18:47 +02:00
|
|
|
|
2022-06-09 11:08:08 +02:00
|
|
|
date_debut = formsemestre.date_debut
|
|
|
|
date_fin = formsemestre.date_fin
|
|
|
|
|
|
|
|
list_ues = formsemestre.query_ues()
|
|
|
|
|
|
|
|
def saisir_notes(evaluation_id: int, condition: int):
|
2022-06-02 16:18:47 +02:00
|
|
|
"""
|
2022-06-03 16:20:59 +02:00
|
|
|
Permet de saisir les notes de manière aléatoire suivant une condition
|
|
|
|
Définition des valeurs de condition :
|
|
|
|
0 : all_notes_saisies
|
|
|
|
1 : all_notes_manquantes
|
|
|
|
2 : some_notes_manquantes
|
2022-06-02 16:18:47 +02:00
|
|
|
"""
|
2022-06-03 16:20:59 +02:00
|
|
|
if condition == 0 or condition == 2:
|
|
|
|
if condition == 0:
|
2022-06-09 11:08:08 +02:00
|
|
|
for etu in list_etuds:
|
|
|
|
note = NotesNotes(
|
|
|
|
etu.id,
|
|
|
|
evaluation_id,
|
|
|
|
random.uniform(0, 20),
|
|
|
|
"",
|
|
|
|
date_debut + random.random() * (date_fin - date_debut),
|
|
|
|
user.id,
|
|
|
|
)
|
2022-06-03 16:20:59 +02:00
|
|
|
db.session.add(note)
|
2022-06-09 11:08:08 +02:00
|
|
|
db.session.commit()
|
2022-06-03 16:20:59 +02:00
|
|
|
else:
|
|
|
|
percent = 80 / 100
|
2022-06-09 11:08:08 +02:00
|
|
|
len_etuds = len(list_etuds)
|
|
|
|
new_list_etuds = random.sample(list_etuds, k=int(percent * len_etuds))
|
|
|
|
for etu in new_list_etuds:
|
|
|
|
note = NotesNotes(
|
|
|
|
etu.id,
|
|
|
|
evaluation_id,
|
|
|
|
random.uniform(0, 20),
|
|
|
|
"",
|
|
|
|
date_debut + random.random() * (date_fin - date_debut),
|
|
|
|
user.id,
|
|
|
|
)
|
2022-06-03 16:20:59 +02:00
|
|
|
db.session.add(note)
|
2022-06-09 11:08:08 +02:00
|
|
|
db.session.commit()
|
2022-06-02 16:18:47 +02:00
|
|
|
|
|
|
|
for ue in list_ues:
|
|
|
|
mods = ue.modules
|
|
|
|
for mod in mods:
|
|
|
|
moduleimpl = ModuleImpl.query.get_or_404(mod.id)
|
|
|
|
for evaluation in moduleimpl.evaluations:
|
2022-06-03 16:20:59 +02:00
|
|
|
condition_saisie_notes = random.randint(0, 2)
|
2022-06-09 11:08:08 +02:00
|
|
|
saisir_notes(evaluation.id, condition_saisie_notes)
|
2022-06-02 16:18:47 +02:00
|
|
|
|
|
|
|
|
2022-03-09 16:05:44 +01:00
|
|
|
def init_test_database():
|
2022-05-04 23:11:20 +02:00
|
|
|
"""Appelé par la commande `flask init-test-database`
|
2022-04-14 14:56:36 +02:00
|
|
|
|
2022-05-04 23:11:20 +02:00
|
|
|
Création d'un département et de son contenu pour les tests
|
|
|
|
"""
|
2022-03-09 16:05:44 +01:00
|
|
|
dept = init_departement("TAPI")
|
2022-05-04 23:11:20 +02:00
|
|
|
user_lecteur, user_autre = create_users(dept)
|
|
|
|
with sco_cache.DeferredSemCacheManager():
|
|
|
|
etuds = create_etuds(dept)
|
|
|
|
formation = import_formation()
|
|
|
|
formsemestre = create_formsemestre(formation, user_lecteur)
|
|
|
|
create_evaluations(formsemestre)
|
|
|
|
inscrit_etudiants(etuds, formsemestre)
|
2022-06-09 11:08:08 +02:00
|
|
|
saisie_notes_evaluations(formsemestre, user_lecteur)
|
2022-03-09 16:05:44 +01:00
|
|
|
# à compléter
|
|
|
|
# - groupes
|
|
|
|
# - absences
|
|
|
|
# - notes
|
|
|
|
# - décisions de jury
|
|
|
|
# ...
|