diff --git a/Tests/Security/CallbackClientAuthenticatorTest.php b/Tests/Security/CallbackClientAuthenticatorTest.php index 12befe7..bc2f532 100644 --- a/Tests/Security/CallbackClientAuthenticatorTest.php +++ b/Tests/Security/CallbackClientAuthenticatorTest.php @@ -5,11 +5,14 @@ namespace RetailCrm\ServiceBundle\Tests\Security; use PHPUnit\Framework\TestCase; use RetailCrm\ServiceBundle\Response\ErrorJsonResponseFactory; use RetailCrm\ServiceBundle\Security\CallbackClientAuthenticator; +use RetailCrm\ServiceBundle\Tests\DataFixtures\User; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; +use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Core\User\UserInterface; +use Symfony\Component\Security\Core\User\UserProviderInterface; /** * Class CallbackClientAuthenticatorTest @@ -99,7 +102,7 @@ class CallbackClientAuthenticatorTest extends TestCase ); $auth = new CallbackClientAuthenticator($errorResponseFactory); - $result = $auth->start(new Request(), new AuthenticationException()); + $result = $auth->onAuthenticationFailure(new Request(), new AuthenticationException()); static::assertInstanceOf(JsonResponse::class, $result); static::assertEquals(Response::HTTP_FORBIDDEN, $result->getStatusCode()); @@ -132,4 +135,34 @@ class CallbackClientAuthenticatorTest extends TestCase static::assertFalse($result); } + + public function testGetUser(): void + { + $errorResponseFactory = $this->createMock(ErrorJsonResponseFactory::class); + $user = new User(); + $auth = new CallbackClientAuthenticator($errorResponseFactory); + + $userProvider = $this->createMock(UserProviderInterface::class); + $userProvider + ->expects(static::once()) + ->method('loadUserByUsername') + ->with('clientId') + ->willReturn($user) + ; + + $result = $auth->getUser('clientId', $userProvider); + static::assertEquals($user, $result); + } + + public function testOnAuthenticationSuccess(): void + { + $errorResponseFactory = $this->createMock(ErrorJsonResponseFactory::class); + $request = $this->createMock(Request::class); + $token = $this->createMock(TokenInterface::class); + $auth = new CallbackClientAuthenticator($errorResponseFactory); + + $result = $auth->onAuthenticationSuccess($request, $token, 'key'); + + static::assertNull($result); + } } diff --git a/Tests/Security/FrontApiClientAuthenticatorTest.php b/Tests/Security/FrontApiClientAuthenticatorTest.php index 6ee8a4e..c57bf6d 100644 --- a/Tests/Security/FrontApiClientAuthenticatorTest.php +++ b/Tests/Security/FrontApiClientAuthenticatorTest.php @@ -4,15 +4,15 @@ namespace RetailCrm\ServiceBundle\Tests\Security; use PHPUnit\Framework\TestCase; use RetailCrm\ServiceBundle\Response\ErrorJsonResponseFactory; -use RetailCrm\ServiceBundle\Security\CallbackClientAuthenticator; use RetailCrm\ServiceBundle\Security\FrontApiClientAuthenticator; use RetailCrm\ServiceBundle\Tests\DataFixtures\User; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; +use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Core\Security; -use Symfony\Component\Security\Core\User\UserInterface; +use Symfony\Component\Security\Core\User\UserProviderInterface; /** * Class FrontApiClientAuthenticatorTest @@ -45,11 +45,11 @@ class FrontApiClientAuthenticatorTest extends TestCase $security = $this->createMock(Security::class); $auth = new FrontApiClientAuthenticator($errorResponseFactory, $security); - $result = $auth->getCredentials(new Request([], [CallbackClientAuthenticator::AUTH_FIELD => '123'])); + $result = $auth->getCredentials(new Request([], [FrontApiClientAuthenticator::AUTH_FIELD => '123'])); static::assertEquals('123', $result); - $result = $auth->getCredentials(new Request([CallbackClientAuthenticator::AUTH_FIELD => '123'])); + $result = $auth->getCredentials(new Request([FrontApiClientAuthenticator::AUTH_FIELD => '123'])); static::assertEquals('123', $result); } @@ -120,4 +120,37 @@ class FrontApiClientAuthenticatorTest extends TestCase static::assertTrue($result); } + + public function testGetUser(): void + { + $errorResponseFactory = $this->createMock(ErrorJsonResponseFactory::class); + $security = $this->createMock(Security::class); + + $user = new User(); + $auth = new FrontApiClientAuthenticator($errorResponseFactory, $security); + + $userProvider = $this->createMock(UserProviderInterface::class); + $userProvider + ->expects(static::once()) + ->method('loadUserByUsername') + ->with('clientId') + ->willReturn($user) + ; + + $result = $auth->getUser('clientId', $userProvider); + static::assertEquals($user, $result); + } + + public function testOnAuthenticationSuccess(): void + { + $errorResponseFactory = $this->createMock(ErrorJsonResponseFactory::class); + $security = $this->createMock(Security::class); + $request = $this->createMock(Request::class); + $token = $this->createMock(TokenInterface::class); + $auth = new FrontApiClientAuthenticator($errorResponseFactory, $security); + + $result = $auth->onAuthenticationSuccess($request, $token, 'key'); + + static::assertNull($result); + } }