add tests for 2factor authentication

This commit is contained in:
Nicolas Lœuillet 2015-10-14 17:10:12 +02:00
parent 2db616b586
commit 0d6a7929e1
3 changed files with 59 additions and 21 deletions

View file

@ -173,11 +173,10 @@ fos_oauth_server:
user_provider: fos_user.user_manager
scheb_two_factor:
trusted_computer:
enabled: true
cookie_name: wllbg_trusted_computer
cookie_lifetime: 5184000
cookie_lifetime: 2592000
email:
enabled: true

View file

@ -0,0 +1,58 @@
<?php
namespace Wallabag\CoreBundle\Tests\Controller;
use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
class SecurityControllerTest extends WallabagCoreTestCase
{
public function testLoginWithout2Factor()
{
$this->logInAs('admin');
$client = $this->getClient();
$client->followRedirects();
$client->request('GET', '/config');
$this->assertContains('RSS', $client->getResponse()->getContent());
}
public function testLoginWith2Factor()
{
$client = $this->getClient();
$client->followRedirects();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
->findOneByUsername('admin');
$user->setTwoFactorAuthentication(true);
$em->persist($user);
$em->flush();
$this->logInAs('admin');
$client->request('GET', '/config');
$this->assertContains('trusted computer', $client->getResponse()->getContent());
// restore user
$user = $em
->getRepository('WallabagUserBundle:User')
->findOneByUsername('admin');
$user->setTwoFactorAuthentication(false);
$em->persist($user);
$em->flush();
}
public function testTrustedComputer()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
->findOneByUsername('admin');
$date = new \DateTime();
$user->addTrustedComputer('ABCDEF', $date->add(new \DateInterval('P1M')));
$this->assertTrue($user->isTrustedComputer('ABCDEF'));
$this->assertFalse($user->isTrustedComputer('FEDCBA'));
}
}

View file

@ -1,19 +0,0 @@
parameters:
wallabag_user.twofactor.email.provider.class: Wallabag\UserBundle\Security\TwoFactor\Email\Helper
wallabag_user.twofactor.email.interactive_login_listener.class: Wallabag\UserBundle\Security\TwoFactor\Email\InteractiveLoginListener
wallabag_user.twofactor.email.request_listener.class: Wallabag\UserBundle\Security\TwoFactor\Email\RequestListener
services:
wallabag_user.twofactor.email.provider:
class: %wallabag_user.twofactor.email.provider.class%
arguments: ['@doctrine.orm.entity_manager', '@mailer']
wallabag_user.twofactor.email.interactive_login_listener:
class: %wallabag_user.twofactor.email.interactive_login_listener.class%
tags:
- { name: kernel.event_listener, event: security.interactive_login, method: onSecurityInteractiveLogin }
arguments: ['@wallabag_user.twofactor.email.provider']
wallabag_user.twofactor.email.request_listener:
class: %wallabag_user.twofactor.email.request_listener.class%
tags:
- { name: kernel.event_listener, event: kernel.request, method: onCoreRequest, priority: -1 }
arguments: ['@wallabag_user.twofactor.email.provider', '@security.context', '@templating', '@router']