Merge pull request #2875 from abstractj/KEYCLOAK-3023

OAuthRedirectUriTest.testLocalhost fails on wildfly
This commit is contained in:
Stian Thorgersen 2016-05-25 07:25:22 +02:00
commit 9edec8e4a6

View file

@ -250,7 +250,7 @@ public class OAuthRedirectUriTest extends AbstractKeycloakTest {
checkRedirectUri("urn:ietf:wg:oauth:2.0:oob", true, true);
checkRedirectUri("http://localhost", true);
checkRedirectUri("http://localhost:8180", true, true);
checkRedirectUri("http://localhost:8280", true, true);
checkRedirectUri("http://localhosts", false);
checkRedirectUri("http://localhost/myapp", false);
@ -258,7 +258,7 @@ public class OAuthRedirectUriTest extends AbstractKeycloakTest {
oauth.clientId("test-installed2");
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://localhost", false);