aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-01-22 18:48:04 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-31 14:48:26 +0100
commit07c9b1c98a104a88f6bd0c97b54a8783444a2ac4 (patch)
tree6ed5f2b9fedcdd7fad81f7c6264c7694f30a0b16 /src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php
parent1c7d66645b312ee41a392c1d154f49fb6a6ec389 (diff)
downloadwallabag-07c9b1c98a104a88f6bd0c97b54a8783444a2ac4.tar.gz
wallabag-07c9b1c98a104a88f6bd0c97b54a8783444a2ac4.tar.zst
wallabag-07c9b1c98a104a88f6bd0c97b54a8783444a2ac4.zip
Fix permission to settings page
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php
new file mode 100644
index 00000000..354aedba
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php
@@ -0,0 +1,32 @@
1<?php
2
3namespace Wallabag\CoreBundle\Tests\Controller;
4
5use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
6
7/**
8 * The controller `SettingsController` does not exist.
9 * This test cover security against the internal settings page managed by CraueConfigBundle
10 */
11class SettingsControllerTest extends WallabagCoreTestCase
12{
13 public function testSettingsWithAdmin()
14 {
15 $this->logInAs('admin');
16 $client = $this->getClient();
17
18 $crawler = $client->request('GET', '/settings');
19
20 $this->assertEquals(200, $client->getResponse()->getStatusCode());
21 }
22
23 public function testSettingsWithNormalUser()
24 {
25 $this->logInAs('bob');
26 $client = $this->getClient();
27
28 $crawler = $client->request('GET', '/settings');
29
30 $this->assertEquals(403, $client->getResponse()->getStatusCode());
31 }
32}