123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- /*
- * This file is part of the Symfony framework.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
- class SecurityRoutingIntegrationTest extends WebTestCase
- {
- /**
- * @dataProvider getConfigs
- */
- public function testRoutingErrorIsNotExposedForProtectedResourceWhenAnonymous($config)
- {
- $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config));
- $client->insulate();
- $client->request('GET', '/protected_resource');
- $this->assertRedirect($client->getResponse(), '/login');
- }
- /**
- * @dataProvider getConfigs
- */
- public function testRoutingErrorIsExposedWhenNotProtected($config)
- {
- if (strpos(PHP_OS, "WIN") === 0 && version_compare(phpversion(), "5.3.9", "<")) {
- $this->markTestSkipped('Test hangs on Windows & PHP due to https://bugs.php.net/bug.php?id=60120 fixed in http://svn.php.net/viewvc?view=revision&revision=318366');
- }
- $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config));
- $client->insulate();
- $client->request('GET', '/unprotected_resource');
- $this->assertEquals(404, $client->getResponse()->getStatusCode(), (string) $client->getResponse());
- }
- /**
- * @dataProvider getConfigs
- */
- public function testRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWithInsufficientRights($config)
- {
- if (strpos(PHP_OS, "WIN") === 0 && version_compare(phpversion(), "5.3.9", "<")) {
- $this->markTestSkipped('Test hangs on Windows & PHP due to https://bugs.php.net/bug.php?id=60120 fixed in http://svn.php.net/viewvc?view=revision&revision=318366');
- }
- $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config));
- $client->insulate();
- $form = $client->request('GET', '/login')->selectButton('login')->form();
- $form['_username'] = 'johannes';
- $form['_password'] = 'test';
- $client->submit($form);
- $client->request('GET', '/highly_protected_resource');
- $this->assertNotEquals(404, $client->getResponse()->getStatusCode());
- }
- public function getConfigs()
- {
- return array(array('config.yml'), array('routes_as_path.yml'));
- }
- protected function setUp()
- {
- parent::setUp();
- $this->deleteTmpDir('StandardFormLogin');
- }
- protected function tearDown()
- {
- parent::tearDown();
- $this->deleteTmpDir('StandardFormLogin');
- }
- }
|