wallabag/tests/Controller/SettingsControllerTest.php

33 lines
857 B
PHP
Raw Normal View History

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.
* 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->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
}
}