12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
- use Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\FirewallEntryPointBundle\Security\EntryPointStub;
- class FirewallEntryPointTest extends WebTestCase
- {
- public function testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials()
- {
- $client = $this->createClient(array('test_case' => 'FirewallEntryPoint'));
- $client->request('GET', '/secure/resource', array(), array(), array(
- 'PHP_AUTH_USER' => 'unknown',
- 'PHP_AUTH_PW' => 'credentials',
- ));
- $this->assertEquals(
- EntryPointStub::RESPONSE_TEXT,
- $client->getResponse()->getContent(),
- "Custom entry point wasn't started"
- );
- }
- public function testItUsesTheConfiguredEntryPointFromTheExceptionListenerWithFormLoginAndNoCredentials()
- {
- $client = $this->createClient(array('test_case' => 'FirewallEntryPoint', 'root_config' => 'config_form_login.yml'));
- $client->request('GET', '/secure/resource');
- $this->assertEquals(
- EntryPointStub::RESPONSE_TEXT,
- $client->getResponse()->getContent(),
- "Custom entry point wasn't started"
- );
- }
- }
|