mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-17 02:39:24 +01:00
add test
This commit is contained in:
parent
728a432850
commit
7fc14130c7
@ -40,6 +40,25 @@ class SecurityControllerTest extends WallabagCoreTestCase
|
|||||||
$this->assertContains('Bad credentials', $client->getResponse()->getContent());
|
$this->assertContains('Bad credentials', $client->getResponse()->getContent());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testRedirectionAfterLogin()
|
||||||
|
{
|
||||||
|
$client = $this->getClient();
|
||||||
|
$client->followRedirects();
|
||||||
|
|
||||||
|
$crawler = $client->request('GET', '/config');
|
||||||
|
|
||||||
|
$form = $crawler->filter('button[type=submit]')->form();
|
||||||
|
|
||||||
|
$data = array(
|
||||||
|
'_username' => 'admin',
|
||||||
|
'_password' => 'mypassword',
|
||||||
|
);
|
||||||
|
|
||||||
|
$client->submit($form, $data);
|
||||||
|
|
||||||
|
$this->assertContains('RSS', $client->getResponse()->getContent());
|
||||||
|
}
|
||||||
|
|
||||||
public function testForgotPassword()
|
public function testForgotPassword()
|
||||||
{
|
{
|
||||||
$client = $this->getClient();
|
$client = $this->getClient();
|
||||||
|
Loading…
Reference in New Issue
Block a user