2015-10-14 15:10:12 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
2015-10-14 15:10:12 +00:00
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2015-10-14 15:10:12 +00:00
|
|
|
|
|
|
|
class SecurityControllerTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
public function testLoginWithout2Factor()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
$client->followRedirects();
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$crawler = $client->request('GET', '/config');
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertContains('config.form_rss.description', $crawler->filter('body')->extract(['_text'])[0]);
|
2015-10-14 15:10:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoginWith2Factor()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
if (!$client->getContainer()->getParameter('twofactor_auth')) {
|
|
|
|
$this->markTestSkipped('twofactor_auth is not enabled.');
|
2016-03-11 13:55:02 +00:00
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-10-14 15:10:12 +00:00
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$client->followRedirects();
|
2015-10-15 11:17:21 +00:00
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUsername('admin');
|
|
|
|
$user->setTwoFactorAuthentication(true);
|
|
|
|
$em->persist($user);
|
|
|
|
$em->flush();
|
2015-10-15 11:17:21 +00:00
|
|
|
|
2016-06-24 09:55:45 +00:00
|
|
|
$this->logInAsUsingHttp('admin');
|
2016-03-09 07:59:08 +00:00
|
|
|
$crawler = $client->request('GET', '/config');
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertContains('scheb_two_factor.trusted', $crawler->filter('body')->extract(['_text'])[0]);
|
2016-03-09 07:59:08 +00:00
|
|
|
|
|
|
|
// restore user
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUsername('admin');
|
|
|
|
$user->setTwoFactorAuthentication(false);
|
|
|
|
$em->persist($user);
|
|
|
|
$em->flush();
|
2015-10-14 15:10:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testTrustedComputer()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
2015-10-15 11:17:21 +00:00
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
if (!$client->getContainer()->getParameter('twofactor_auth')) {
|
|
|
|
$this->markTestSkipped('twofactor_auth is not enabled.');
|
2016-03-11 13:55:02 +00:00
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
return;
|
2015-10-15 11:17:21 +00:00
|
|
|
}
|
2016-03-09 07:59:08 +00:00
|
|
|
|
|
|
|
$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'));
|
2015-10-14 15:10:12 +00:00
|
|
|
}
|
2016-08-24 08:28:43 +00:00
|
|
|
|
|
|
|
public function testEnabledRegistration()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
if (!$client->getContainer()->getParameter('fosuser_registration')) {
|
|
|
|
$this->markTestSkipped('fosuser_registration is not enabled.');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$client->followRedirects();
|
|
|
|
$crawler = $client->request('GET', '/register');
|
2017-01-10 17:50:45 +00:00
|
|
|
$this->assertContains('registration.submit', $client->getResponse()->getContent());
|
2016-08-24 08:28:43 +00:00
|
|
|
}
|
2015-10-14 15:10:12 +00:00
|
|
|
}
|