Merge pull request #4268 from hmlnarik/KEYCLOAK-5106-BasicSamlTest-testNoPortInDestination-fails-on-auth-server-wildfly
KEYCLOAK-5106 Fix BasicSamlTest on auth-server-wildfly
This commit is contained in:
commit
0b108d83af
2 changed files with 13 additions and 1 deletions
|
@ -36,6 +36,15 @@
|
|||
</provider>
|
||||
</spi>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="samlPortsDefinition">
|
||||
<spi name="login-protocol">
|
||||
<provider name="saml" enabled="true">
|
||||
<properties>
|
||||
<property name="knownProtocols" value="["http=${{auth.server.http.port}}","https=${{auth.server.https.port}}"]"/>
|
||||
</properties>
|
||||
</provider>
|
||||
</spi>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="themeModuleDefinition">
|
||||
<modules>
|
||||
<module>org.keycloak.testsuite.integration-arquillian-testsuite-providers</module>
|
||||
|
@ -60,11 +69,12 @@
|
|||
</xsl:copy>
|
||||
</xsl:template>
|
||||
|
||||
<!--inject truststore-->
|
||||
<!--inject truststore and SAML port-protocol mappings-->
|
||||
<xsl:template match="//*[local-name()='subsystem' and starts-with(namespace-uri(), $nsKS)]">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@*|node()" />
|
||||
<xsl:copy-of select="$truststoreDefinition"/>
|
||||
<xsl:copy-of select="$samlPortsDefinition"/>
|
||||
</xsl:copy>
|
||||
</xsl:template>
|
||||
|
||||
|
|
|
@ -68,6 +68,8 @@
|
|||
<property name="jbossArguments">
|
||||
-Djboss.socket.binding.port-offset=${auth.server.port.offset}
|
||||
-Djboss.bind.address=0.0.0.0
|
||||
-Dauth.server.http.port=${auth.server.http.port}
|
||||
-Dauth.server.https.port=${auth.server.https.port}
|
||||
${adapter.test.props}
|
||||
${migration.import.properties}
|
||||
${auth.server.profile}
|
||||
|
|
Loading…
Reference in a new issue