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

Annotation of /trunk/tests/base.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: 1926 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 fmichon 1649 <?php
2     /**
3     *
4     *
5     * @package openfoncier
6     * @version SVN : $Id$
7     */
8    
9 fmichon 1654 class BaseTestCase extends PHPUnit_Extensions_SeleniumTestCase {
10 fmichon 1649
11     protected function setUp() {
12     $this->setBrowser("firefox");
13 fmichon 1654 $this->setBrowserUrl("http://localhost/");
14 fmichon 1649 // $this->setSleep(1);
15     }
16    
17     protected function tearDown() {
18    
19     }
20    
21     protected function connect($login, $password) {
22 fmichon 1654 $this->open("openfoncier/");
23 fmichon 1649 $this->type("id=login", $login);
24     $this->type("id=password", $password);
25     $this->click("name=login.action.connect");
26     $this->waitForPageToLoad("30000");
27     }
28    
29     protected function deconnect() {
30     $this->click("link=Déconnexion");
31     $this->waitForPageToLoad("30000");
32     }
33    
34 fmichon 1674 /**
35     * Cette méthode permet de fair un assert sur la NON présence d'un message
36 fmichon 1719 * indiquant une erreur de base de données ou une notice PHP
37 fmichon 1674 */
38 fmichon 1719 public function verifyNoErrors() {
39 fmichon 1674 try {
40     $this->assertFalse($this->isTextPresent("Erreur de base de données. Contactez votre administrateur."));
41     } catch (PHPUnit_Framework_AssertionFailedError $e) {
42     array_push($this->verificationErrors, "Erreur de base de données.");
43     }
44 fmichon 1719 try {
45     $this->assertFalse($this->isTextPresent("Parse error:"));
46     } catch (PHPUnit_Framework_AssertionFailedError $e) {
47     array_push($this->verificationErrors, "PHP Parse error:");
48     }
49     try {
50     $this->assertFalse($this->isTextPresent("Fatal error:"));
51     } catch (PHPUnit_Framework_AssertionFailedError $e) {
52     array_push($this->verificationErrors, "PHP Fatal error:");
53     }
54     try {
55     $this->assertFalse($this->isTextPresent("Notice:"));
56     } catch (PHPUnit_Framework_AssertionFailedError $e) {
57     array_push($this->verificationErrors, "PHP Notice:");
58     }
59 fmichon 1674 }
60    
61 fmichon 1649 }
62    
63     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26