mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Merge pull request #3615 from notFloran/3612-login-by-email
Allow login by email
This commit is contained in:
commit
11f15430ff
2 changed files with 12 additions and 2 deletions
|
@ -12,7 +12,7 @@ security:
|
||||||
class: WallabagUserBundle:User
|
class: WallabagUserBundle:User
|
||||||
property: username
|
property: username
|
||||||
fos_userbundle:
|
fos_userbundle:
|
||||||
id: fos_user.user_provider.username
|
id: fos_user.user_provider.username_email
|
||||||
|
|
||||||
# the main part of the security, where you can set up firewalls
|
# the main part of the security, where you can set up firewalls
|
||||||
# for specific sections of your app
|
# for specific sections of your app
|
||||||
|
|
|
@ -6,6 +6,16 @@ use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
||||||
|
|
||||||
class SecurityControllerTest extends WallabagCoreTestCase
|
class SecurityControllerTest extends WallabagCoreTestCase
|
||||||
{
|
{
|
||||||
|
public function testLoginWithEmail()
|
||||||
|
{
|
||||||
|
$this->logInAsUsingHttp('bigboss@wallabag.org');
|
||||||
|
$client = $this->getClient();
|
||||||
|
$client->followRedirects();
|
||||||
|
|
||||||
|
$crawler = $client->request('GET', '/config');
|
||||||
|
$this->assertContains('config.form_rss.description', $crawler->filter('body')->extract(['_text'])[0]);
|
||||||
|
}
|
||||||
|
|
||||||
public function testLoginWithout2Factor()
|
public function testLoginWithout2Factor()
|
||||||
{
|
{
|
||||||
$this->logInAs('admin');
|
$this->logInAs('admin');
|
||||||
|
@ -81,7 +91,7 @@ class SecurityControllerTest extends WallabagCoreTestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
$client->followRedirects();
|
$client->followRedirects();
|
||||||
$crawler = $client->request('GET', '/register');
|
$client->request('GET', '/register');
|
||||||
$this->assertContains('registration.submit', $client->getResponse()->getContent());
|
$this->assertContains('registration.submit', $client->getResponse()->getContent());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue