Server IP : 103.233.192.212 / Your IP : 18.227.89.143 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/public_html/backup/protected/tests/functional/ |
Upload File : |
<?php class SiteTest extends WebTestCase { public function testIndex() { $this->open(''); $this->assertTextPresent('Welcome'); } public function testContact() { $this->open('?r=site/contact'); $this->assertTextPresent('Contact Us'); $this->assertElementPresent('name=ContactForm[name]'); $this->type('name=ContactForm[name]','tester'); $this->type('name=ContactForm[email]','tester@example.com'); $this->type('name=ContactForm[subject]','test subject'); $this->click("//input[@value='Submit']"); $this->waitForTextPresent('Body cannot be blank.'); } public function testLoginLogout() { $this->open(''); // ensure the user is logged out if($this->isTextPresent('Logout')) $this->clickAndWait('link=Logout (demo)'); // test login process, including validation $this->clickAndWait('link=Login'); $this->assertElementPresent('name=LoginForm[username]'); $this->type('name=LoginForm[username]','demo'); $this->click("//input[@value='Login']"); $this->waitForTextPresent('Password cannot be blank.'); $this->type('name=LoginForm[password]','demo'); $this->clickAndWait("//input[@value='Login']"); $this->assertTextNotPresent('Password cannot be blank.'); $this->assertTextPresent('Logout'); // test logout process $this->assertTextNotPresent('Login'); $this->clickAndWait('link=Logout (demo)'); $this->assertTextPresent('Login'); } }