login('postgres', $this->_invalidPassword, "$webUrl/login.php"); // Verify the error messages. $this->assertWantedText($lang['strlogindisallowed']); $this->assertWantedText($lang['strviewfaq']); // Login with special user name "postgres". $this->login($NORMAL_USER_NAME, '', "$webUrl/login.php"); // Verify the error messages. $this->assertWantedText($lang['strlogindisallowed']); $this->assertWantedText($lang['strviewfaq']); return TRUE; } /* * TestCaseID: CSM02 * Test to login with invalid user name or password. */ function testInvalidLogin() { global $webUrl; global $SUPER_USER_NAME; global $lang; // Login with invalid user name. $this->login($this->_invalidUserName, $this->_invalidPassword, "$webUrl/login.php"); // Verify the error messages. $this->assertWantedText($lang['strloginfailed']); // Login with valid username and invalid password. $this->login($SUPER_USER_NAME, $this->_invalidPassword, "$webUrl/login.php"); // Verify the error messages. $this->assertWantedText($lang['strloginfailed']); return TRUE; } /* * TestCaseID: CSM03 * Test to change the current user's password. */ function testAccount() { global $webUrl; global $NORMAL_USER_NAME; global $NORMAL_USER_PASSWORD; global $lang, $SERVER; $newpassword = 'newpassword'; $this->login($NORMAL_USER_NAME, $NORMAL_USER_PASSWORD, "$webUrl/login.php"); // Turn to the account page and change the password page. $this->assertTrue($this->get("$webUrl/users.php", array('server' => $SERVER, 'action' => 'account'))); $this->assertTrue($this->clickLink($lang['strchangepassword'])); // Enter the new password and different confirm password. $this->assertTrue($this->setField('password', $newpassword)); $this->assertTrue($this->setField('confirm', $this->_invalidPassword)); // Then submit and verify the error messages. $this->assertTrue($this->clickSubmit($lang['strok'])); $this->assertWantedText($lang['strpasswordconfirm']); // Enter the new password and confirm password. $this->assertTrue($this->setField('password', $NORMAL_USER_PASSWORD)); $this->assertTrue($this->setField('confirm', $NORMAL_USER_PASSWORD)); // Then submit and verify the messages. $this->assertTrue($this->clickSubmit($lang['strok'])); $this->assertWantedText($lang['strpasswordchanged']); $this->logout(); return TRUE; } } ?>