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

Annotation of /trunk/tests/testServiceConsulte.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1719 - (hide annotations)
Thu Apr 18 10:45:27 2013 UTC (11 years, 9 months ago) by fmichon
File size: 3926 byte(s)
Remplacement de la méthode verifyNoDatabaseError par la méthode verifiyNoErrors qui vérifier également qu'il n'y a pas de Fatal Error, de Notice ou de Parse Error affichés dans la page.

1 nhaye 1714 <?php
2     /**
3     *
4     *
5     * @package openfoncier
6     * @version SVN : $Id$
7     */
8    
9     //
10     require_once "base.php";
11    
12     /**
13     *
14     */
15     class ServiceConsulte extends BaseTestCase {
16    
17     private function login() {
18     // on commence par se connecter
19     $this->connect("consu", "consu");
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     /**
35     *
36     */
37     public function testSaisieDemandeAvis() {
38     //
39     $this->login();
40     $this->setSpeed('120');
41    
42     $this->clickAndWait("link=Demandes en cours");
43     // Accès au dossier en visualisation
44     $this->clickAndWait("link=AZ0130551200001P0");
45 fmichon 1719 $this->verifyNoErrors();
46 nhaye 1714 $this->verifyTextPresent("Demandes d'avis > en cours");
47     // Accès à l'onglet des consultations
48     $this->click("//div[@id='portlet-actions']/ul/li/a/span");
49     $this->verifyTextPresent("consultations 2");
50 fmichon 1719 $this->verifyNoErrors();
51 nhaye 1714 // Validation sans retour d'avis
52     $this->click("//input[@value='Modifier']");
53 fmichon 1719 $this->verifyNoErrors();
54 nhaye 1714 // Retour à la liste des demandes
55     $this->click("css=form[name=\"f2\"] > div.formControls > a.retour");
56    
57     // Accès au dossier en visualisation
58     $this->clickAndWait("link=AZ0130551200001P0");
59 fmichon 1719 $this->verifyNoErrors();
60 nhaye 1714 $this->verifyTextPresent("Demandes d'avis > en cours");
61     // Accès à l'onglet des consultations
62     $this->click("//div[@id='portlet-actions']/ul/li/a/span");
63     $this->verifyTextPresent("consultations 2");
64 fmichon 1719 $this->verifyNoErrors();
65 nhaye 1714 // Saisie de valeurs
66     $this->select("id=avis_consultation", "label=Defavorable");
67     $this->type("id=motivation", "Pas motivé");
68     // Upload de fichier
69     $this->click("css=span.ui-icon.ui-icon-arrowthickstop-1-s");
70     // Validation sans saisie de fichier
71     $this->click("name=submit");
72     $this->verifyTextPresent("Vous devez sélectionner un fichier.");
73     // Saisie de fichier
74     $this->type("name=userfile[]", dirname(__FILE__)."/binaire/lettre_rar16042013124515.pdf");
75     $this->click("name=submit");
76     // Validation de la modification de la demande d'avis
77     $this->click("//input[@value='Modifier']");
78 fmichon 1719 $this->verifyNoErrors();
79 nhaye 1714 $this->verifyTextPresent("Vos modifications ont bien été enregistrées.");
80    
81     // Retour à la liste des demandes
82     $this->click("css=form[name=\"f2\"] > div.formControls > a.retour");
83     // Vérification que la demande d'avis n'est plus presente
84     $this->assertTextNotPresent("link=AZ0130551200001P0");
85    
86     //
87     $this->logout();
88     }
89    
90 nhaye 1715 /**
91     *
92     */
93     public function testDemandesAvisPassees() {
94     //
95     $this->login();
96    
97     $this->clickAndWait("link=Demandes passées");
98     $this->clickAndWait("link=AZ0130551200001P0");
99 fmichon 1719 $this->verifyNoErrors();
100 nhaye 1715 $this->verifyTextPresent("Demandes d'avis > passées");
101     // $this->click("//div[@id='portlet-actions']/ul/li/a/span");
102     // $this->waitForPopUp("", "30000");
103     // $this->selectPopUp();
104     // sleep(5);
105 fmichon 1719 // $this->verifyNoErrors();
106 nhaye 1715 // $this->verifyTextPresent("Avis solicité pour conformité");
107     // $this->verifyTextPresent("Direction de l'Eau et de l'Assainissement");
108     // $this->close();
109     // $this->selectWindow();
110     //
111     $this->logout();
112     }
113    
114 nhaye 1714 }
115     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26