2016-01-22 17:48:04 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Controller;
|
2016-01-22 17:48:04 +00:00
|
|
|
|
2024-02-24 19:24:51 +00:00
|
|
|
use Tests\Wallabag\WallabagTestCase;
|
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
|
|
|
*/
|
2024-02-24 19:24:51 +00:00
|
|
|
class SettingsControllerTest extends WallabagTestCase
|
2016-01-22 17:48:04 +00:00
|
|
|
{
|
|
|
|
public function testSettingsWithAdmin()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-01-22 17:48:04 +00:00
|
|
|
|
|
|
|
$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');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-01-22 17:48:04 +00:00
|
|
|
|
|
|
|
$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
|
|
|
}
|
|
|
|
}
|