mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-04 16:10:03 +00:00
aa5c7f05b8
- disable autowiring for Event (because the Entry entity was injected) - rename `getClient()` for test to `getTestClient()` to avoid error while overriding (from `BrowserKitAssertionsTrait`)
32 lines
857 B
PHP
32 lines
857 B
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
|
|
|
/**
|
|
* The controller `SettingsController` does not exist.
|
|
* This test cover security against the internal settings page managed by CraueConfigBundle.
|
|
*/
|
|
class SettingsControllerTest extends WallabagCoreTestCase
|
|
{
|
|
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(403, $client->getResponse()->getStatusCode());
|
|
}
|
|
}
|