Merge pull request #2875 from abstractj/KEYCLOAK-3023
OAuthRedirectUriTest.testLocalhost fails on wildfly
This commit is contained in:
commit
9edec8e4a6
1 changed files with 2 additions and 2 deletions
|
@ -250,7 +250,7 @@ public class OAuthRedirectUriTest extends AbstractKeycloakTest {
|
||||||
checkRedirectUri("urn:ietf:wg:oauth:2.0:oob", true, true);
|
checkRedirectUri("urn:ietf:wg:oauth:2.0:oob", true, true);
|
||||||
checkRedirectUri("http://localhost", true);
|
checkRedirectUri("http://localhost", true);
|
||||||
|
|
||||||
checkRedirectUri("http://localhost:8180", true, true);
|
checkRedirectUri("http://localhost:8280", true, true);
|
||||||
|
|
||||||
checkRedirectUri("http://localhosts", false);
|
checkRedirectUri("http://localhosts", false);
|
||||||
checkRedirectUri("http://localhost/myapp", false);
|
checkRedirectUri("http://localhost/myapp", false);
|
||||||
|
@ -258,7 +258,7 @@ public class OAuthRedirectUriTest extends AbstractKeycloakTest {
|
||||||
oauth.clientId("test-installed2");
|
oauth.clientId("test-installed2");
|
||||||
|
|
||||||
checkRedirectUri("http://localhost/myapp", true);
|
checkRedirectUri("http://localhost/myapp", true);
|
||||||
checkRedirectUri("http://localhost:8180/myapp", true, true);
|
checkRedirectUri("http://localhost:8280/myapp", true, true);
|
||||||
|
|
||||||
checkRedirectUri("http://localhosts/myapp", false);
|
checkRedirectUri("http://localhosts/myapp", false);
|
||||||
checkRedirectUri("http://localhost", false);
|
checkRedirectUri("http://localhost", false);
|
||||||
|
|
Loading…
Reference in a new issue