Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function execute(TestInfo $testInfo): void |
||
26 | { |
||
27 | $configUri = sprintf('%s/%s/%s/.well-known/openid-configuration', $testInfo->getRoot(), $testInfo->getRpId(), $this->getTestId()); |
||
28 | $issuer = (new IssuerBuilder()) |
||
29 | ->build($configUri); |
||
30 | |||
31 | $expected = sprintf('%s/%s/%s', $testInfo->getRoot(), $testInfo->getRpId(), $this->getTestId()); |
||
32 | Assert::assertSame($expected, $issuer->getMetadata()->getIssuer()); |
||
33 | } |
||
35 |