maj readme, test pour les id & script generate report page pour éviter de lire les anciens résumés
This commit is contained in:
parent
6cfa26ca17
commit
23def285c5
@ -74,7 +74,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
driver = self.driver
|
||||
global URL
|
||||
driver.get(URL)
|
||||
idEditFormation = "edit-formation-" + ACRONYME_FORMATION
|
||||
idEditFormation = "edit-formation-" + ACRONYME_FORMATION.replace(" ","-")
|
||||
driver.find_element_by_id(idEditFormation).click()
|
||||
self.wait.until(EC.url_changes(URL))
|
||||
driver.find_element_by_id("tf_acronyme").send_keys(ACRONYME_FORMATION)
|
||||
@ -108,9 +108,10 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
driver.find_element_by_id("tf_submit").click()
|
||||
try:
|
||||
driver.find_element_by_class_name("error-message")
|
||||
message_erreur_present = True
|
||||
except NoSuchElementException:
|
||||
self.assertFalse(True)
|
||||
self.assertTrue(True)
|
||||
message_erreur_present = False
|
||||
self.assertTrue(message_erreur_present)
|
||||
|
||||
# Test : Ajout d'une UE dans la formation
|
||||
# @Expected : L'UE est créée et elle apparait désormais dans la liste d'UE de la formation
|
||||
@ -118,7 +119,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
driver = self.driver
|
||||
global URL
|
||||
driver.get(URL)
|
||||
idTitre = "titre-" + ACRONYME_FORMATION
|
||||
idTitre = "titre-" + ACRONYME_FORMATION.replace(" ", "-")
|
||||
driver.find_element_by_id(idTitre).click()
|
||||
self.wait.until(EC.url_changes(URL))
|
||||
driver.find_element_by_xpath("//a[contains(@href,'ue_create?')]").click()
|
||||
@ -166,7 +167,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
driver = self.driver
|
||||
global URL
|
||||
driver.get(URL)
|
||||
idAddSemestre = "add-semestre-" + ACRONYME_FORMATION
|
||||
idAddSemestre = "add-semestre-" + ACRONYME_FORMATION.replace(" ", "-")
|
||||
driver.find_element_by_id(idAddSemestre).click()
|
||||
self.wait.until(EC.url_changes(URL))
|
||||
driver.find_element_by_name("date_debut").send_keys("01/01/2021")
|
||||
|
@ -173,10 +173,10 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
element.submit()
|
||||
time.sleep(1)
|
||||
try:
|
||||
element = driver.find_element_by_id("titleNoResult")
|
||||
element = driver.find_element_by_id("title-no-result")
|
||||
self.assertTrue("Aucun résultat" in element.text)
|
||||
except:
|
||||
self.assertFalse(False)
|
||||
self.assertFalse(True)
|
||||
|
||||
# ferme la fenetre
|
||||
def tearDown(self):
|
||||
|
@ -93,7 +93,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
searchBar.send_keys(etudiant)
|
||||
searchBar.submit()
|
||||
time.sleep(5)
|
||||
MOY_UE1 = driver.find_element_by_id("ue-" + ue_name).text
|
||||
MOY_UE1 = driver.find_element_by_id("ue-" + ue_name.lower().replace(" ","-")).text
|
||||
if "12" not in MOY_UE1:
|
||||
noteBonne = False
|
||||
self.assertTrue(noteBonne)
|
||||
@ -129,7 +129,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
searchBar.send_keys(etudiant)
|
||||
searchBar.submit()
|
||||
time.sleep(5)
|
||||
MOY_UE2 = driver.find_element_by_id("ue-" + ue_name).text
|
||||
MOY_UE2 = driver.find_element_by_id("ue-" + ue_name.lower().replace(" ","-")).text
|
||||
if "8" not in MOY_UE2:
|
||||
noteBonne = False
|
||||
|
||||
@ -167,7 +167,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
url = self.url
|
||||
driver.get(url)
|
||||
driver.find_element_by_id("link-programmes").click()
|
||||
driver.find_element_by_id("titre-DUT Info").click()
|
||||
driver.find_element_by_id("titre-dut-info").click()
|
||||
driver.find_element_by_xpath("//span[contains(text(),'M1101')]").click()
|
||||
driver.find_element_by_id("tf_coefficient").clear()
|
||||
driver.find_element_by_id("tf_coefficient").send_keys(COEFF_UE1)
|
||||
@ -350,11 +350,11 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
moyenneBonne = False
|
||||
if ue_name not in ueListText:
|
||||
affichageMoyenne = False
|
||||
MOY_UE1 = driver.find_element_by_id("ue-" + ue_name).text
|
||||
MOY_UE1 = driver.find_element_by_id("ue-" + ue_name.lower().replace(" ","-")).text
|
||||
if float(0) != float(MOY_UE1):
|
||||
noteExcuseeEgaleAZero = False
|
||||
elif numeroEtu == 1:
|
||||
MOY_UE1 = driver.find_element_by_id("ue-" + ue_name).text
|
||||
MOY_UE1 = driver.find_element_by_id("ue-" + ue_name.lower().replace(" ","-")).text
|
||||
moyEtudiant2 = (
|
||||
float(MOY_UE1) * COEFF_UE1
|
||||
+ (float(MOY_UE2) - float(moyenneBonusEtudiant2)) * COEFF_UE2
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
#Ce script lance en séquence les différents jeux de tests.
|
||||
if [ "$#" -ne 1 ]
|
||||
if [ "$#" -eq 1 ]
|
||||
then
|
||||
if [ "$1" = "--cleanup" ] || [ "$1" = "--c" ]
|
||||
then
|
||||
|
13
readme.md
13
readme.md
@ -78,7 +78,16 @@ Alternativement vous pouvez lancer l'ensemble des tests avec la commande
|
||||
|
||||
>./lancement_de_tout_les_tests.sh
|
||||
|
||||
L'option --c ou --cleanup est disponible si vous souhaitez effacer tout les rapports précédents
|
||||
|
||||
###Resultats des tests
|
||||
|
||||
###TODO
|
||||
> Lancer les test en parrallèle
|
||||
Les tests sont présentés sur une page HTML qui se trouve dans le dossier ResultatTest, il y a une page HTML par jeux de tests créée. Un récapitulatif est également créé par le biais du script
|
||||
|
||||
>./scriptGenerateReportPage.sh
|
||||
|
||||
Celui ci est lancé automatiquement à la fin du script
|
||||
|
||||
>./lancement_de_tout_les_tests.sh
|
||||
|
||||
Vous y retrouverez les liens menant au détails de chaque rapport ainsi qu'un résumé du nombre de test passés/échoués
|
43
scriptGenerateReportPage.sh
Executable file
43
scriptGenerateReportPage.sh
Executable file
@ -0,0 +1,43 @@
|
||||
#!/bin/bash
|
||||
TIME=$(date +%d%m_%H%M%S)
|
||||
echo '<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="Author" content="Made by 'tree'">
|
||||
<meta name="GENERATOR" content="$Version: $ tree v1.8.0 (c) 1996 - 2018 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro $">
|
||||
<title>Directory Tree</title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
BODY { font-family : ariel, monospace, sans-serif; }
|
||||
P { font-weight: normal; font-family : ariel, monospace, sans-serif; color: black; background-color: transparent;}
|
||||
B { font-weight: normal; color: black; background-color: transparent;}
|
||||
A:visited { font-weight : normal; text-decoration : none; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
|
||||
A:link { font-weight : normal; text-decoration : none; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
|
||||
A:hover { color : #000000; font-weight : normal; text-decoration : underline; background-color : yellow; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
|
||||
A:active { color : #000000; font-weight: normal; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
|
||||
.VERSION { font-size: small; font-family : arial, sans-serif; }
|
||||
.NORM { color: black; background-color: transparent;}
|
||||
.FIFO { color: purple; background-color: transparent;}
|
||||
.CHAR { color: yellow; background-color: transparent;}
|
||||
.DIR { color: blue; background-color: transparent;}
|
||||
.BLOCK { color: yellow; background-color: transparent;}
|
||||
.LINK { color: aqua; background-color: transparent;}
|
||||
.SOCK { color: fuchsia;background-color: transparent;}
|
||||
.EXEC { color: green; background-color: transparent;}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Directory Tree</h1><p>
|
||||
<a href="./ResultatTest/">./ResultatTest/</a><br>
|
||||
' >> ./ResultatTest/Résumé_"${TIME}".html
|
||||
for file in ./ResultatTest/*.html; do
|
||||
RESULT=$(cat $file | grep "Summary")
|
||||
BASEFILE=$(basename $file)
|
||||
LINK="$BASEFILE"
|
||||
if [[ $LINK != *"Résumé"* ]] ; then
|
||||
echo "├── <a href=${LINK}>${BASEFILE}</a>${RESULT}<br>" >> ./ResultatTest/Résumé_${TIME}.html
|
||||
fi
|
||||
done
|
||||
echo '<br><br><br><br></body></html>' >> ./ResultatTest/Résumé_"${TIME}".html
|
Loading…
Reference in New Issue
Block a user