27 lines
769 B
PHP
27 lines
769 B
PHP
|
<?php
|
||
|
class AdminPageTest extends WebTestCase {
|
||
|
function testAdminPage() {
|
||
|
$this->get('http://shimmie.shishnet.org/v2/admin');
|
||
|
$this->assertResponse(403);
|
||
|
$this->assertTitle("Permission Denied");
|
||
|
|
||
|
$this->assertText("Login");
|
||
|
$this->setField('user', USER_NAME);
|
||
|
$this->setField('pass', USER_PASS);
|
||
|
$this->click("Log In");
|
||
|
$this->get('http://shimmie.shishnet.org/v2/admin');
|
||
|
$this->assertResponse(403);
|
||
|
$this->assertTitle("Permission Denied");
|
||
|
$this->click('Log Out');
|
||
|
|
||
|
$this->assertText("Login");
|
||
|
$this->setField('user', ADMIN_NAME);
|
||
|
$this->setField('pass', ADMIN_PASS);
|
||
|
$this->click("Log In");
|
||
|
$this->get('http://shimmie.shishnet.org/v2/admin');
|
||
|
$this->assertTitle("Admin Tools");
|
||
|
$this->click('Log Out');
|
||
|
}
|
||
|
}
|
||
|
?>
|