We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db1ed8b commit a5994e7Copy full SHA for a5994e7
tests/OpenIDConnectClientTest.php
@@ -58,7 +58,11 @@ public function testGetRedirectURL()
58
59
$_SERVER['SERVER_NAME'] = 'domain.test';
60
$_SERVER['REQUEST_URI'] = '/path/index.php?foo=bar&baz#fragment';
61
+ $_SERVER['SERVER_PORT'] = '443';
62
self::assertSame('http://domain.test/path/index.php', $client->getRedirectURL());
63
+
64
+ $_SERVER['SERVER_PORT'] = '8888';
65
+ self::assertSame('http://domain.test:8888/path/index.php', $client->getRedirectURL());
66
}
67
68
public function testAuthenticateDoesNotThrowExceptionIfClaimsIsMissingNonce()
0 commit comments