2023-02-21 15:28:42 +01:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
""" Test création/accès/clonage formsemestre
|
|
|
|
"""
|
2023-02-21 21:34:38 +01:00
|
|
|
from flask import Response
|
2023-02-21 15:28:42 +01:00
|
|
|
import pytest
|
2023-02-21 21:34:38 +01:00
|
|
|
from tests.unit import yaml_setup, call_view
|
2023-02-21 15:28:42 +01:00
|
|
|
|
|
|
|
import app
|
2023-02-21 21:34:38 +01:00
|
|
|
from app.models import Formation, FormSemestre
|
|
|
|
from app.scodoc import (
|
2023-12-23 13:53:02 +01:00
|
|
|
sco_archives_formsemestre,
|
2023-02-21 21:34:38 +01:00
|
|
|
sco_cost_formation,
|
|
|
|
sco_debouche,
|
|
|
|
sco_edit_ue,
|
|
|
|
sco_evaluations,
|
|
|
|
sco_evaluation_check_abs,
|
|
|
|
sco_evaluation_recap,
|
2023-03-21 21:14:38 +01:00
|
|
|
sco_formation_versions,
|
2023-02-21 21:34:38 +01:00
|
|
|
sco_formsemestre_edit,
|
|
|
|
sco_formsemestre_inscriptions,
|
|
|
|
sco_formsemestre_status,
|
|
|
|
sco_groups,
|
|
|
|
sco_inscr_passage,
|
|
|
|
sco_lycee,
|
|
|
|
sco_moduleimpl_inscriptions,
|
|
|
|
sco_poursuite_dut,
|
|
|
|
sco_preferences,
|
|
|
|
sco_recapcomplet,
|
|
|
|
sco_report,
|
|
|
|
sco_undo_notes,
|
|
|
|
)
|
|
|
|
|
|
|
|
from app.scodoc import sco_utils as scu
|
|
|
|
from app.views import notes, scolar
|
2023-02-21 15:28:42 +01:00
|
|
|
from config import TestConfig
|
|
|
|
|
|
|
|
DEPT = TestConfig.DEPT_TEST
|
|
|
|
|
|
|
|
|
|
|
|
def test_formsemestres_associate_new_version(test_client):
|
|
|
|
"""Test association à une nouvelle version du programme"""
|
|
|
|
app.set_sco_dept(DEPT)
|
|
|
|
# Construit la base de test GB une seule fois
|
|
|
|
# puis lance les tests de jury
|
2023-07-01 12:36:30 +02:00
|
|
|
doc, formation, formsemestre_titres = yaml_setup.setup_from_yaml(
|
|
|
|
"tests/ressources/yaml/simple_formsemestres.yaml"
|
|
|
|
)
|
|
|
|
for formsemestre_titre in formsemestre_titres:
|
|
|
|
formsemestre = yaml_setup.create_formsemestre_with_etuds(
|
|
|
|
doc, formation, formsemestre_titre
|
|
|
|
)
|
|
|
|
assert formsemestre
|
|
|
|
formation_geii = Formation.query.filter_by(acronyme="BUT GEII", version=1).first()
|
|
|
|
assert formation_geii.id == formation.id
|
2023-02-21 15:28:42 +01:00
|
|
|
formsemestres = formation.formsemestres.all()
|
2023-07-01 12:36:30 +02:00
|
|
|
assert len(formsemestres) == len(formsemestre_titres)
|
2023-02-21 15:28:42 +01:00
|
|
|
# On a deux S1:
|
|
|
|
assert len(formsemestres) == 2
|
|
|
|
assert {s.semestre_id for s in formsemestres} == {1}
|
|
|
|
# Les rattache à une nouvelle version de la formation:
|
|
|
|
formsemestre_ids = [s.id for s in formsemestres]
|
2023-03-21 21:14:38 +01:00
|
|
|
sco_formation_versions.do_formsemestres_associate_new_version(
|
2023-02-23 22:42:19 +01:00
|
|
|
formation.id, formsemestre_ids
|
|
|
|
)
|
2023-02-21 15:28:42 +01:00
|
|
|
new_formation: Formation = Formation.query.filter_by(
|
|
|
|
acronyme="BUT GEII", version=2
|
|
|
|
).first()
|
|
|
|
assert new_formation
|
|
|
|
assert formsemestres[0].formation_id == new_formation.id
|
|
|
|
assert formsemestres[1].formation_id == new_formation.id
|
2023-02-21 21:34:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_formsemestre_misc_views(test_client):
|
|
|
|
"""Test de nombreuses vues: test juste que la page ne plante,
|
|
|
|
pas de vérif du contenu ni de soumission si c'est un formulaire.
|
|
|
|
|
|
|
|
Note: les anciennes vues renvoient souvent des str au lieu de Response.
|
|
|
|
"""
|
|
|
|
app.set_sco_dept(DEPT)
|
2023-07-01 12:36:30 +02:00
|
|
|
doc, formation, formsemestre_titres = yaml_setup.setup_from_yaml(
|
|
|
|
"tests/ressources/yaml/simple_formsemestres.yaml"
|
|
|
|
)
|
|
|
|
for formsemestre_titre in formsemestre_titres:
|
|
|
|
formsemestre = yaml_setup.create_formsemestre_with_etuds(
|
|
|
|
doc, formation, formsemestre_titre
|
|
|
|
)
|
|
|
|
assert formsemestre
|
2023-02-21 21:34:38 +01:00
|
|
|
formsemestre: FormSemestre = FormSemestre.query.first()
|
|
|
|
|
|
|
|
# ----- MENU SEMESTRE
|
|
|
|
_ = sco_formsemestre_status.formsemestre_status(formsemestre_id=formsemestre.id)
|
|
|
|
_ = sco_edit_ue.ue_table(formsemestre.formation_id)
|
|
|
|
_ = sco_formsemestre_edit.formsemestre_editwithmodules(formsemestre.id)
|
|
|
|
_ = sco_preferences.SemPreferences(formsemestre_id=formsemestre.id).edit()
|
|
|
|
_ = sco_formsemestre_edit.formsemestre_edit_options(formsemestre.id)
|
|
|
|
assert formsemestre.etat
|
|
|
|
formsemestre.flip_lock()
|
|
|
|
assert not formsemestre.etat
|
|
|
|
formsemestre.flip_lock()
|
|
|
|
assert formsemestre.etat
|
|
|
|
ans = sco_formsemestre_status.formsemestre_description(
|
|
|
|
formsemestre.id, with_evals=True
|
|
|
|
)
|
|
|
|
assert isinstance(ans, (str, Response)) # ici c'est une str
|
|
|
|
ans = sco_formsemestre_status.formsemestre_description(
|
2023-09-21 10:20:19 +02:00
|
|
|
formsemestre.id, with_evals=True, fmt="xls"
|
2023-02-21 21:34:38 +01:00
|
|
|
)
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.XLSX_MIMETYPE
|
|
|
|
ans = sco_formsemestre_status.formsemestre_description(
|
2023-09-21 10:20:19 +02:00
|
|
|
formsemestre.id, with_evals=True, fmt="pdf"
|
2023-02-21 21:34:38 +01:00
|
|
|
)
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.PDF_MIMETYPE
|
|
|
|
ans = sco_evaluation_check_abs.formsemestre_check_absences_html(formsemestre.id)
|
|
|
|
assert isinstance(ans, (str, Response))
|
|
|
|
# Appel direct de la vue: enlève les décorateurs:
|
|
|
|
ans = call_view(notes.formsemestre_enseignants_list, formsemestre.id)
|
|
|
|
assert isinstance(ans, (str, Response)) # ici str
|
|
|
|
# Juste la page dialogue avant opération::
|
|
|
|
ans = sco_formsemestre_edit.formsemestre_clone(formsemestre.id)
|
2023-03-21 21:14:38 +01:00
|
|
|
ans = sco_formation_versions.formsemestre_associate_new_version(
|
2023-02-23 21:19:57 +01:00
|
|
|
formsemestre.formation_id, formsemestre.id
|
|
|
|
)
|
2023-02-21 21:34:38 +01:00
|
|
|
ans = sco_formsemestre_edit.formsemestre_delete(formsemestre.id)
|
|
|
|
|
|
|
|
# ----- MENU INSCRIPTIONS
|
|
|
|
ans = sco_moduleimpl_inscriptions.moduleimpl_inscriptions_stats(formsemestre.id)
|
|
|
|
ans = sco_inscr_passage.formsemestre_inscr_passage(formsemestre.id)
|
|
|
|
ans = call_view(scolar.form_students_import_excel, formsemestre.id)
|
|
|
|
assert isinstance(ans, str)
|
|
|
|
ans = call_view(scolar.form_students_import_infos_admissions, formsemestre.id)
|
|
|
|
ans = sco_formsemestre_inscriptions.formsemestre_inscrits_ailleurs(formsemestre.id)
|
|
|
|
|
|
|
|
# ----- MENU GROUPES
|
|
|
|
ans = call_view(scolar.groups_view, formsemestre.id)
|
|
|
|
ans = call_view(scolar.partition_editor, formsemestre.id)
|
|
|
|
ans = sco_groups.edit_partition_form(formsemestre.id)
|
|
|
|
|
|
|
|
# ----- MENU NOTES
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(formsemestre.id)
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(formsemestre.id, tabformat="evals")
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(formsemestre.id, tabformat="xlsx")
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.XLSX_MIMETYPE
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(formsemestre.id, tabformat="json")
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.JSON_MIMETYPE
|
|
|
|
ans = sco_evaluation_recap.evaluations_recap(formsemestre.id)
|
|
|
|
|
|
|
|
# Bulletins pdf:
|
|
|
|
ans = call_view(notes.formsemestre_bulletins_pdf_choice, formsemestre.id)
|
|
|
|
assert isinstance(ans, str) # sans version, on a le formulaire de choix, une str
|
|
|
|
ans = call_view(
|
|
|
|
notes.formsemestre_bulletins_pdf_choice, formsemestre.id, version="long"
|
|
|
|
)
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.PDF_MIMETYPE
|
|
|
|
# on ne teste pas les mails :)
|
|
|
|
ans = sco_evaluations.formsemestre_evaluations_cal(formsemestre.id)
|
|
|
|
assert isinstance(ans, str)
|
|
|
|
sco_undo_notes.formsemestre_list_saisies_notes(formsemestre.id)
|
|
|
|
|
|
|
|
# ----- MENU JURY
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(formsemestre.id, mode_jury=True)
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(
|
|
|
|
formsemestre.id, mode_jury=True, tabformat="xlsx"
|
|
|
|
)
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.XLSX_MIMETYPE
|
|
|
|
ans = sco_recapcomplet.formsemestre_recapcomplet(
|
|
|
|
formsemestre.id, mode_jury=True, tabformat="json"
|
|
|
|
)
|
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.JSON_MIMETYPE
|
2023-12-23 13:53:02 +01:00
|
|
|
ans = sco_archives_formsemestre.formsemestre_archive(formsemestre.id)
|
|
|
|
ans = sco_archives_formsemestre.formsemestre_list_archives(formsemestre.id)
|
2023-02-21 21:34:38 +01:00
|
|
|
|
|
|
|
# ----- MENU STATISTIQUES
|
|
|
|
ans = sco_report.formsemestre_report_counts(formsemestre.id)
|
2023-09-21 10:20:19 +02:00
|
|
|
ans = sco_report.formsemestre_report_counts(formsemestre.id, fmt="xls")
|
2023-02-21 21:34:38 +01:00
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.XLSX_MIMETYPE
|
|
|
|
ans = sco_report.formsemestre_suivi_cohorte(formsemestre.id)
|
2023-09-21 10:20:19 +02:00
|
|
|
ans = sco_report.formsemestre_suivi_cohorte(formsemestre.id, fmt="pdf")
|
2023-02-21 21:34:38 +01:00
|
|
|
assert isinstance(ans, Response)
|
|
|
|
assert ans.status == "200 OK"
|
|
|
|
assert ans.mimetype == scu.PDF_MIMETYPE
|
|
|
|
ans = sco_report.formsemestre_graph_cursus(formsemestre.id)
|
|
|
|
ans = sco_report.formsemestre_suivi_cursus(formsemestre.id)
|
|
|
|
ans = sco_lycee.formsemestre_etuds_lycees(formsemestre.id)
|
|
|
|
ans = sco_poursuite_dut.formsemestre_poursuite_report(formsemestre.id)
|
|
|
|
# pas de test des avis de poursuite
|
|
|
|
ans = sco_debouche.report_debouche_date(start_year=2000)
|
|
|
|
ans = sco_cost_formation.formsemestre_estim_cost(formsemestre.id)
|
|
|
|
# pas de test des indicateurs de suivi BUT
|