aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/auth_test.php
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2012-12-12 16:30:50 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2012-12-12 16:30:50 -0600
commit7ae5b62fc68017b6bdd5e55c9641e92a86a1f487 (patch)
tree54e156815f13c40e9b880712de32ae13728ffdae /tests/functional/auth_test.php
parent84284a9ccee7d5ccc658c3d1f751a5254b3b9175 (diff)
parent9420647c43b300699afe6fe72f09d1746daf64a2 (diff)
downloadforums-7ae5b62fc68017b6bdd5e55c9641e92a86a1f487.tar
forums-7ae5b62fc68017b6bdd5e55c9641e92a86a1f487.tar.gz
forums-7ae5b62fc68017b6bdd5e55c9641e92a86a1f487.tar.bz2
forums-7ae5b62fc68017b6bdd5e55c9641e92a86a1f487.tar.xz
forums-7ae5b62fc68017b6bdd5e55c9641e92a86a1f487.zip
Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ticket/11103
Diffstat (limited to 'tests/functional/auth_test.php')
-rw-r--r--tests/functional/auth_test.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/functional/auth_test.php b/tests/functional/auth_test.php
index e955dcb4df..662b1bd38b 100644
--- a/tests/functional/auth_test.php
+++ b/tests/functional/auth_test.php
@@ -18,9 +18,19 @@ class phpbb_functional_auth_test extends phpbb_functional_test_case
// check for logout link
$crawler = $this->request('GET', 'index.php');
+ $this->assert_response_success();
$this->assertContains($this->lang('LOGOUT_USER', 'admin'), $crawler->filter('.navbar')->text());
}
+ public function test_login_other()
+ {
+ $this->create_user('anothertestuser');
+ $this->login('anothertestuser');
+ $crawler = $this->request('GET', 'index.php');
+ $this->assert_response_success();
+ $this->assertContains('anothertestuser', $crawler->filter('.icon-logout')->text());
+ }
+
/**
* @depends test_login
*/
@@ -31,10 +41,12 @@ class phpbb_functional_auth_test extends phpbb_functional_test_case
// logout
$crawler = $this->request('GET', 'ucp.php?sid=' . $this->sid . '&mode=logout');
+ $this->assert_response_success();
$this->assertContains($this->lang('LOGOUT_REDIRECT'), $crawler->filter('#message')->text());
// look for a register link, which should be visible only when logged out
$crawler = $this->request('GET', 'index.php');
+ $this->assert_response_success();
$this->assertContains($this->lang('REGISTER'), $crawler->filter('.navbar')->text());
}
}