1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00
wallabag/tests/Controller/SettingsControllerTest.php
2025-03-14 06:41:28 +01:00

32 lines
827 B
PHP

<?php
namespace Tests\Wallabag\Controller;
use Tests\Wallabag\WallabagTestCase;
/**
* The controller `SettingsController` does not exist.
* This test cover security against the internal settings page managed by CraueConfigBundle.
*/
class SettingsControllerTest extends WallabagTestCase
{
public function testSettingsWithAdmin()
{
$this->logInAs('admin');
$client = $this->getTestClient();
$crawler = $client->request('GET', '/settings');
$this->assertSame(200, $client->getResponse()->getStatusCode());
}
public function testSettingsWithNormalUser()
{
$this->logInAs('bob');
$client = $this->getTestClient();
$crawler = $client->request('GET', '/settings');
$this->assertSame(404, $client->getResponse()->getStatusCode());
}
}