provider = $this->prophesize(JwtProviderInterface::class); } /** * @test * @dataProvider provideNoHostConfigs */ public function throwsExceptionWhenConfigDoesNotHavePublicHost(array $mercureConfig): void { $buildToken = $this->provider->buildSubscriptionToken(Argument::any())->willReturn('abc.123'); $action = new MercureInfoAction($this->provider->reveal(), $mercureConfig); $this->expectException(MercureException::class); $buildToken->shouldNotBeCalled(); $action->handle(ServerRequestFactory::fromGlobals()); } public function provideNoHostConfigs(): iterable { yield 'host not defined' => [[]]; yield 'host is null' => [['public_hub_url' => null]]; } /** * @test * @dataProvider provideValidConfigs */ public function throwsExceptionWhenBuildingTokenFails(array $mercureConfig): void { $buildToken = $this->provider->buildSubscriptionToken(Argument::any())->willThrow( new RuntimeException('Error'), ); $action = new MercureInfoAction($this->provider->reveal(), $mercureConfig); $this->expectException(MercureException::class); $buildToken->shouldBeCalledOnce(); $action->handle(ServerRequestFactory::fromGlobals()); } public function provideValidConfigs(): iterable { yield 'days not defined' => [['public_hub_url' => 'http://foobar.com']]; yield 'days defined' => [['public_hub_url' => 'http://foobar.com', 'jwt_days_duration' => 20]]; } /** * @test * @dataProvider provideDays */ public function returnsExpectedInfoWhenEverythingIsOk(?int $days): void { $buildToken = $this->provider->buildSubscriptionToken(Argument::any())->willReturn('abc.123'); $action = new MercureInfoAction($this->provider->reveal(), [ 'public_hub_url' => 'http://foobar.com', 'jwt_days_duration' => $days, ]); /** @var JsonResponse $resp */ $resp = $action->handle(ServerRequestFactory::fromGlobals()); $payload = $resp->getPayload(); self::assertArrayHasKey('mercureHubUrl', $payload); self::assertEquals('http://foobar.com/.well-known/mercure', $payload['mercureHubUrl']); self::assertArrayHasKey('token', $payload); self::assertArrayHasKey('jwtExpiration', $payload); self::assertEquals( Chronos::now()->addDays($days ?? 1)->startOfDay(), Chronos::parse($payload['jwtExpiration'])->startOfDay(), ); $buildToken->shouldHaveBeenCalledOnce(); } public function provideDays(): iterable { yield 'days not defined' => [null]; yield 'days defined' => [10]; } }