Skip to content

Commit 654b105

Browse files
committed
👽️ support new UserProvider method in Symfony 5.3
1 parent 164202d commit 654b105

File tree

5 files changed

+38
-12
lines changed

5 files changed

+38
-12
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/.git* export-ignore
2-
/.php_cs export-ignore
2+
/.php-cs-fixer.* export-ignore
33
/phpstan* export-ignore
44
/phpunit.xml.dist export-ignore
55
/README.md export-ignore

.github/workflows/build.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,7 @@ jobs:
6262
- run: composer require --dev doctrine/lexer:v1.0.1 --no-update
6363
if: matrix.composer_option == '--prefer-lowest'
6464
- run: composer update --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
65-
- run: bin/phpunit
66-
65+
- run: bin/phpunit --coverage-clover=clover.xml
66+
- uses: codecov/codecov-action@v1
67+
with:
68+
files: ./clover.xml

.php_cs .php-cs-fixer.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@
66
->notPath('FakeFixtureDependent.php')
77
;
88

9-
return PhpCsFixer\Config::create()
9+
return (new PhpCsFixer\Config())
1010
->setRiskyAllowed(true)
1111
->setRules([
1212
'@Symfony' => true,
1313
'@Symfony:risky' => true,
14-
'@PHP71Migration:risky' => true,
1514
'@PHP73Migration' => true,
16-
'@PHPUnit75Migration:risky' => true,
17-
'ordered_imports' => true,
15+
'@PHPUnit84Migration:risky' => true,
1816
'declare_strict_types' => false,
19-
'native_function_invocation' => true,
17+
'native_function_invocation' => ['include' => ['@all']],
2018
'php_unit_mock_short_will_return' => true,
2119
])
2220
->setFinder($finder)

src/Test/WebTestCase.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ protected static function saveOutput(bool $delete = true): void
115115
protected static function login(string $username = '[email protected]', ?string $firewall = null, ?string $service = null): void
116116
{
117117
$service = $service ?? static::$container->getParameter('beelab_test.user_service');
118-
if (null === $user = static::$container->get($service)->loadUserByUsername($username)) {
118+
$object = static::$container->get($service);
119+
$user = \is_callable([$object, 'loadUserByIdentifier']) ? $object->loadUserByIdentifier($username) : $object->loadUserByUsername($username);
120+
if (null === $user) {
119121
throw new \InvalidArgumentException(\sprintf('Username %s not found.', $username));
120122
}
121123
$firewall = $firewall ?? static::$container->getParameter('beelab_test.firewall');
@@ -184,7 +186,7 @@ protected static function getTxtFile(string $file = '0'): UploadedFile
184186
* Load fixtures as an array of "names"
185187
* This is inspired by https://github.com/liip/LiipFunctionalTestBundle.
186188
*
187-
* @param array $fixtures e.g. ['UserData', 'OrderData']
189+
* @param array<int, string> $fixtures e.g. ['UserData', 'OrderData']
188190
*
189191
* @throws \Doctrine\DBAL\DBALException
190192
* @throws \InvalidArgumentException
@@ -321,11 +323,11 @@ protected static function postForm(string $name, array $values, array $files = [
321323
self::$client->request($method, $formAction, [$name => $values], $filesValues);
322324
}
323325

324-
protected static function setSessionException(): void
326+
protected static function setSessionException(string $msg = 'error...'): void
325327
{
326328
/** @var \Symfony\Component\HttpFoundation\Session\SessionInterface $session */
327329
$session = self::$container->get('session');
328-
$session->set('_security.last_error', new AuthenticationServiceException('error...'));
330+
$session->set('_security.last_error', new AuthenticationServiceException($msg));
329331
$session->save();
330332
$cookie = new Cookie($session->getName(), $session->getId());
331333
self::$client->getCookieJar()->set($cookie);

tests/Test/WebTestCaseTest.php

+24
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,30 @@ public function testLogin(): void
132132
$method->invoke(self::$mock, '[email protected]', 'main', 'beelab_user.manager');
133133
}
134134

135+
public function testLoginWithUserNotFound(): void
136+
{
137+
$repository = $this
138+
->getMockBuilder(UserProviderInterface::class)
139+
->setMethods(['loadUserByUsername', 'refreshUser', 'supportsClass'])
140+
->getMock()
141+
;
142+
$repository
143+
->expects(self::once())
144+
->method('loadUserByUsername')
145+
->willReturn(null)
146+
;
147+
self::$container
148+
->method('get')
149+
->with('beelab_user.manager')
150+
->willReturn($repository)
151+
;
152+
$method = new \ReflectionMethod(self::$mock, 'login');
153+
$method->setAccessible(true);
154+
$this->expectException(\InvalidArgumentException::class);
155+
$this->expectExceptionMessage('Username [email protected] not found.');
156+
$method->invoke(self::$mock, '[email protected]', 'main', 'beelab_user.manager');
157+
}
158+
135159
public function testGetFile(): void
136160
{
137161
// Call `getFile` method

0 commit comments

Comments
 (0)