1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
class AuthenticatorTest extends AbstractWebTestCase
{
#[\PHPUnit\Framework\Attributes\DataProvider('provideEmails')]
public function testFirewallUserProvider($email, $withinFirewall)
{
$client = $this->createClient(['test_case' => 'Authenticator', 'root_config' => 'firewall_user_provider.yml']);
$client->request('GET', '/profile', [], [], [
'HTTP_X-USER-EMAIL' => $email,
]);
if ($withinFirewall) {
$this->assertJsonStringEqualsJsonString('{"email":"'.$email.'"}', $client->getResponse()->getContent());
} else {
$this->assertJsonStringEqualsJsonString('{"error":"Invalid credentials."}', $client->getResponse()->getContent());
}
}
#[\PHPUnit\Framework\Attributes\DataProvider('provideEmails')]
public function testWithoutUserProvider($email, $withinFirewall)
{
$client = $this->createClient(['test_case' => 'Authenticator', 'root_config' => 'no_user_provider.yml']);
$client->request('GET', '/profile', [], [], [
'HTTP_X-USER-EMAIL' => $email,
]);
$this->assertJsonStringEqualsJsonString('{"email":"'.$email.'"}', $client->getResponse()->getContent());
}
public static function provideEmails(): iterable
{
yield ['jane@example.org', true];
yield ['john@example.org', false];
}
#[\PHPUnit\Framework\Attributes\DataProvider('provideEmailsWithFirewalls')]
public function testLoginUsersWithMultipleFirewalls(string $username, string $firewallContext)
{
$client = $this->createClient(['test_case' => 'Authenticator', 'root_config' => 'multiple_firewall_user_provider.yml']);
$client->request('GET', '/main/login/check');
$client->request('POST', '/'.$firewallContext.'/login/check', [
'_username' => $username,
'_password' => 'test',
]);
$this->assertResponseRedirects('/'.$firewallContext.'/user_profile');
$client->request('GET', '/'.$firewallContext.'/user_profile');
$this->assertEquals('Welcome '.$username.'!', $client->getResponse()->getContent());
}
public static function provideEmailsWithFirewalls(): iterable
{
yield ['jane@example.org', 'main'];
yield ['john@example.org', 'custom'];
}
public function testMultipleFirewalls()
{
$client = $this->createClient(['test_case' => 'Authenticator', 'root_config' => 'multiple_firewalls.yml']);
$client->request('POST', '/firewall1/login', [
'_username' => 'jane@example.org',
'_password' => 'test',
]);
$client->request('GET', '/firewall2/profile');
$this->assertResponseRedirects('http://localhost/login');
}
public function testCustomSuccessHandler()
{
$client = $this->createClient(['test_case' => 'Authenticator', 'root_config' => 'custom_handlers.yml']);
$client->request('POST', '/firewall1/login', [
'_username' => 'jane@example.org',
'_password' => 'test',
]);
$this->assertResponseRedirects('http://localhost/firewall1/test');
$client->request('POST', '/firewall1/dummy_login', [
'_username' => 'jane@example.org',
'_password' => 'test',
]);
$this->assertResponseRedirects('http://localhost/firewall1/dummy');
}
public function testCustomFailureHandler()
{
$client = $this->createClient(['test_case' => 'Authenticator', 'root_config' => 'custom_handlers.yml']);
$client->request('POST', '/firewall1/login', [
'_username' => 'jane@example.org',
'_password' => 'wrong',
]);
$this->assertResponseRedirects('http://localhost/firewall1/login');
$client->request('POST', '/firewall1/dummy_login', [
'_username' => 'jane@example.org',
'_password' => 'wrong',
]);
$this->assertResponseRedirects('http://localhost/firewall1/dummy_login');
}
}
|