/[openfoncier]/trunk/tests/testInstruction.php
ViewVC logotype

Annotation of /trunk/tests/testInstruction.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1677 - (hide annotations)
Mon Apr 15 12:30:11 2013 UTC (11 years, 9 months ago) by fmichon
File size: 4876 byte(s)
Ajout d'un fichier xml représentant une suite de tests

1 fmichon 1664 <?php
2     /**
3     *
4     *
5     * @package openfoncier
6     * @version SVN : $Id$
7     */
8    
9     //
10 fmichon 1677 require_once "base.php";
11 fmichon 1664
12     /**
13     *
14     */
15     class Instruction extends BaseTestCase {
16    
17     private function login() {
18     // on commence par se connecter
19     $this->connect("instr", "instr");
20     // On doit être connecté
21     $this->assertTrue($this->isTextPresent("Votre session est maintenant ouverte."));
22     }
23    
24     private function logout() {
25     // puis on se déconnecte
26     $this->deconnect();
27     // on doit avoir un message nous indiquant que la session est finie
28     $this->assertTrue($this->isTextPresent("Votre session est maintenant terminée."));
29     // on ne doit plus avoir de lien de déconnexion
30     $this->assertFalse($this->isElementPresent("link=Déconnexion"));
31     }
32    
33     /**
34     * Ce test vise uniquement à vérifier que les écrans correspondant à chaque
35     * entrée de menu ne génère pas une erreur de base de données
36     */
37     public function testGeneral() {
38     //
39     $this->login();
40    
41     //
42     $this->clickAndWait("link=mes encours");
43     $this->verifyTextPresent("DI");
44 fmichon 1674 $this->verifyNoDatabaseError();
45 fmichon 1664 //
46     $this->clickAndWait("link=tous les encours");
47     $this->verifyTextPresent("DI");
48 fmichon 1674 $this->verifyNoDatabaseError();
49 fmichon 1664 //
50     $this->clickAndWait("link=mes clôturés");
51     $this->verifyTextPresent("DI");
52 fmichon 1674 $this->verifyNoDatabaseError();
53 fmichon 1664 //
54     $this->clickAndWait("link=tous les clôturés");
55     $this->verifyTextPresent("DI");
56 fmichon 1674 $this->verifyNoDatabaseError();
57 fmichon 1664 //
58     $this->clickAndWait("link=recherche");
59     $this->verifyTextPresent("DI");
60 fmichon 1674 $this->verifyNoDatabaseError();
61 fmichon 1664 //
62     $this->clickAndWait("link=dossiers a qualifier");
63     $this->verifyTextPresent("dossier");
64 fmichon 1674 $this->verifyNoDatabaseError();
65 fmichon 1664 //
66     $this->clickAndWait("link=Mes retours");
67     $this->verifyTextPresent("dossier");
68 fmichon 1674 $this->verifyNoDatabaseError();
69 fmichon 1664 //
70     $this->clickAndWait("link=Tous les retours");
71     $this->verifyTextPresent("dossier");
72 fmichon 1674 $this->verifyNoDatabaseError();
73 fmichon 1664 //
74     $this->clickAndWait("link=Mes messages");
75     $this->verifyTextPresent("dossier");
76 fmichon 1674 $this->verifyNoDatabaseError();
77 fmichon 1664 //
78     $this->clickAndWait("link=Tous les messages");
79     $this->verifyTextPresent("dossier");
80 fmichon 1674 $this->verifyNoDatabaseError();
81 fmichon 1664 //
82     $this->clickAndWait("css=a.commission_mes_retours-16");
83     $this->verifyTextPresent("dossier");
84 fmichon 1674 $this->verifyNoDatabaseError();
85 fmichon 1664 //
86     $this->clickAndWait("css=a.commission_tous_retours-16");
87     $this->verifyTextPresent("dossier");
88 fmichon 1674 $this->verifyNoDatabaseError();
89 fmichon 1664
90     //
91     $this->logout();
92     }
93    
94 fmichon 1665 /**
95     *
96     */
97     public function testConsultationDeServices() {
98     //
99     $this->login();
100    
101     $this->clickAndWait("link=mes encours");
102     // Accès au dossier en visualisation
103     $this->clickAndWait("link=AZ0130551200001P0");
104 fmichon 1674 $this->verifyNoDatabaseError();
105 fmichon 1665 // Accès à l'onglet des consultations
106     $this->click("id=consultation");
107     $this->setSpeed('120');
108 fmichon 1674 $this->verifyNoDatabaseError();
109 fmichon 1665 //// Ajout d'une simple consultation
110     // On clique sur le bouton ajout
111     $this->click("//div[@id='sousform-consultation']/table/thead/tr/th/a/span");
112 fmichon 1674 $this->verifyNoDatabaseError();
113 fmichon 1665 // On sélectionne le service
114     $this->select("id=service", "label=1ER Maire 1er Secteur");
115     // On valide le formulaire
116     $this->click("//input[@value='Ajouter']");
117 fmichon 1674 $this->verifyNoDatabaseError();
118 fmichon 1665 //
119     $this->verifyTextPresent("Vos modifications ont bien été enregistrées.");
120     // On clique sur le bouton retour
121     $this->click("css=form[name=\"f2\"] > div.formControls > a.retour");
122    
123     //// Ajout de plusieurs consultations
124     // On clique sur le bouton ajout multiple
125     $this->click("//div[@id='sousform-consultation']/table/thead/tr/th/a[2]/span");
126 fmichon 1674 $this->verifyNoDatabaseError();
127 fmichon 1665 // On sélectionne trois servcies
128     $this->click("id=t10_572_0_");
129     $this->click("id=t10_575_0_");
130     $this->click("id=t10_584_0_");
131     // On les ajoute à la sélection
132     $this->click("id=add-ser-them");
133     // On valide le formulaire
134     $this->click("id=button_val");
135 fmichon 1674 $this->verifyNoDatabaseError();
136 fmichon 1665 //
137     $this->verifyTextPresent("3 service(s) sélectionné(s) dont 0 consultation(s) papier.");
138    
139     // On vérifie que nous avons bien 4 consultations affichées
140     $this->verifyTextPresent("1 - 4 enregistrement(s) sur 4");
141    
142     //
143     $this->logout();
144     }
145    
146 fmichon 1664 }
147    
148     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26