wallabag/tests/Controller/SettingsControllerTest.php

33 lines
827 B
PHP
Raw Normal View History

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
use Tests\Wallabag\WallabagTestCase;
2016-01-22 17:48:04 +00:00
/**
* The controller `SettingsController` does not exist.
* This test cover security against the internal settings page managed by CraueConfigBundle.
2016-01-22 17:48:04 +00:00
*/
class SettingsControllerTest extends WallabagTestCase
2016-01-22 17:48:04 +00:00
{
public function testSettingsWithAdmin()
{
$this->logInAs('admin');
$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');
$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
}
}