2016-01-22 17:48:04 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
2016-01-22 17:48:04 +00:00
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2016-01-22 17:48:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The controller `SettingsController` does not exist.
|
2016-02-04 16:29:14 +00:00
|
|
|
* This test cover security against the internal settings page managed by CraueConfigBundle.
|
2016-01-22 17:48:04 +00:00
|
|
|
*/
|
|
|
|
class SettingsControllerTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
public function testSettingsWithAdmin()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/settings');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-22 17:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSettingsWithNormalUser()
|
|
|
|
{
|
|
|
|
$this->logInAs('bob');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/settings');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(403, $client->getResponse()->getStatusCode());
|
2016-01-22 17:48:04 +00:00
|
|
|
}
|
|
|
|
}
|