|
|
|
|
@@ -62,15 +62,7 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void autoConfigurationShouldBeConditionalOnRelyingPartyRegistrationRepositoryClass() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(false)).withClassLoader(new FilteredClassLoader(
|
|
|
|
|
"org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository"))
|
|
|
|
|
.run((context) -> assertThat(context).doesNotHaveBean(RelyingPartyRegistrationRepository.class));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoConfigurationShouldBeConditionalOnRelyingPartyRegistrationRepositoryClassDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(true)).withClassLoader(new FilteredClassLoader(
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues()).withClassLoader(new FilteredClassLoader(
|
|
|
|
|
"org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository"))
|
|
|
|
|
.run((context) -> assertThat(context).doesNotHaveBean(RelyingPartyRegistrationRepository.class));
|
|
|
|
|
}
|
|
|
|
|
@@ -79,16 +71,7 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
void autoConfigurationShouldBeConditionalOnServletWebApplication() {
|
|
|
|
|
new ApplicationContextRunner()
|
|
|
|
|
.withConfiguration(AutoConfigurations.of(Saml2RelyingPartyAutoConfiguration.class))
|
|
|
|
|
.withPropertyValues(getPropertyValues(false))
|
|
|
|
|
.run((context) -> assertThat(context).doesNotHaveBean(RelyingPartyRegistrationRepository.class));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoConfigurationShouldBeConditionalOnServletWebApplicationDeprecated() {
|
|
|
|
|
new ApplicationContextRunner()
|
|
|
|
|
.withConfiguration(AutoConfigurations.of(Saml2RelyingPartyAutoConfiguration.class))
|
|
|
|
|
.withPropertyValues(getPropertyValues(true))
|
|
|
|
|
.withPropertyValues(getPropertyValues())
|
|
|
|
|
.run((context) -> assertThat(context).doesNotHaveBean(RelyingPartyRegistrationRepository.class));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -100,31 +83,7 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void relyingPartyRegistrationRepositoryBeanShouldBeCreatedWhenPropertiesPresent() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(false)).run((context) -> {
|
|
|
|
|
RelyingPartyRegistrationRepository repository = context.getBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
RelyingPartyRegistration registration = repository.findByRegistrationId("foo");
|
|
|
|
|
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getSingleSignOnServiceLocation())
|
|
|
|
|
.isEqualTo("https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php");
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getEntityId())
|
|
|
|
|
.isEqualTo("https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php");
|
|
|
|
|
assertThat(registration.getAssertionConsumerServiceLocation())
|
|
|
|
|
.isEqualTo("{baseUrl}/login/saml2/foo-entity-id");
|
|
|
|
|
assertThat(registration.getAssertionConsumerServiceBinding()).isEqualTo(Saml2MessageBinding.REDIRECT);
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getSingleSignOnServiceBinding())
|
|
|
|
|
.isEqualTo(Saml2MessageBinding.POST);
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getWantAuthnRequestsSigned()).isEqualTo(false);
|
|
|
|
|
assertThat(registration.getSigningX509Credentials()).hasSize(1);
|
|
|
|
|
assertThat(registration.getDecryptionX509Credentials()).hasSize(1);
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getVerificationX509Credentials()).isNotNull();
|
|
|
|
|
assertThat(registration.getEntityId()).isEqualTo("{baseUrl}/saml2/foo-entity-id");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void relyingPartyRegistrationRepositoryBeanShouldBeCreatedWhenPropertiesPresentDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(true)).run((context) -> {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues()).run((context) -> {
|
|
|
|
|
RelyingPartyRegistrationRepository repository = context.getBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
RelyingPartyRegistration registration = repository.findByRegistrationId("foo");
|
|
|
|
|
|
|
|
|
|
@@ -147,18 +106,7 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void autoConfigurationWhenSignRequestsTrueAndNoSigningCredentialsShouldThrowException() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSigningCredentials(true, false))
|
|
|
|
|
.run((context) -> {
|
|
|
|
|
assertThat(context).hasFailed();
|
|
|
|
|
assertThat(context.getStartupFailure()).hasMessageContaining(
|
|
|
|
|
"Signing credentials must not be empty when authentication requests require signing.");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoConfigurationWhenSignRequestsTrueAndNoSigningCredentialsShouldThrowExceptionDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSigningCredentials(true, true)).run((context) -> {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSigningCredentials(true)).run((context) -> {
|
|
|
|
|
assertThat(context).hasFailed();
|
|
|
|
|
assertThat(context.getStartupFailure()).hasMessageContaining(
|
|
|
|
|
"Signing credentials must not be empty when authentication requests require signing.");
|
|
|
|
|
@@ -167,14 +115,7 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void autoConfigurationWhenSignRequestsFalseAndNoSigningCredentialsShouldNotThrowException() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSigningCredentials(false, false))
|
|
|
|
|
.run((context) -> assertThat(context).hasSingleBean(RelyingPartyRegistrationRepository.class));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoConfigurationWhenSignRequestsFalseAndNoSigningCredentialsShouldNotThrowExceptionDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSigningCredentials(false, true))
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSigningCredentials(false))
|
|
|
|
|
.run((context) -> assertThat(context).hasSingleBean(RelyingPartyRegistrationRepository.class));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -192,21 +133,6 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoconfigurationShouldQueryAssertingPartyMetadataWhenMetadataUrlIsPresentDeprecated() throws Exception {
|
|
|
|
|
try (MockWebServer server = new MockWebServer()) {
|
|
|
|
|
server.start();
|
|
|
|
|
String metadataUrl = server.url("").toString();
|
|
|
|
|
setupMockResponse(server, new ClassPathResource("saml/idp-metadata"));
|
|
|
|
|
this.contextRunner.withPropertyValues(PREFIX + ".foo.identityprovider.metadata-uri=" + metadataUrl)
|
|
|
|
|
.run((context) -> {
|
|
|
|
|
assertThat(context).hasSingleBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
assertThat(server.getRequestCount()).isEqualTo(1);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void autoconfigurationShouldUseBindingFromMetadataUrlIfPresent() throws Exception {
|
|
|
|
|
try (MockWebServer server = new MockWebServer()) {
|
|
|
|
|
@@ -224,24 +150,6 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoconfigurationShouldUseBindingFromMetadataUrlIfPresentDeprecated() throws Exception {
|
|
|
|
|
try (MockWebServer server = new MockWebServer()) {
|
|
|
|
|
server.start();
|
|
|
|
|
String metadataUrl = server.url("").toString();
|
|
|
|
|
setupMockResponse(server, new ClassPathResource("saml/idp-metadata"));
|
|
|
|
|
this.contextRunner.withPropertyValues(PREFIX + ".foo.identityprovider.metadata-uri=" + metadataUrl)
|
|
|
|
|
.run((context) -> {
|
|
|
|
|
RelyingPartyRegistrationRepository repository = context
|
|
|
|
|
.getBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
RelyingPartyRegistration registration = repository.findByRegistrationId("foo");
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getSingleSignOnServiceBinding())
|
|
|
|
|
.isEqualTo(Saml2MessageBinding.POST);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void autoconfigurationWhenMetadataUrlAndPropertyPresentShouldUseBindingFromProperty() throws Exception {
|
|
|
|
|
try (MockWebServer server = new MockWebServer()) {
|
|
|
|
|
@@ -259,38 +167,9 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoconfigurationWhenMetadataUrlAndPropertyPresentShouldUseBindingFromPropertyDeprecated() throws Exception {
|
|
|
|
|
try (MockWebServer server = new MockWebServer()) {
|
|
|
|
|
server.start();
|
|
|
|
|
String metadataUrl = server.url("").toString();
|
|
|
|
|
setupMockResponse(server, new ClassPathResource("saml/idp-metadata"));
|
|
|
|
|
this.contextRunner.withPropertyValues(PREFIX + ".foo.identityprovider.metadata-uri=" + metadataUrl,
|
|
|
|
|
PREFIX + ".foo.identityprovider.singlesignon.binding=redirect").run((context) -> {
|
|
|
|
|
RelyingPartyRegistrationRepository repository = context
|
|
|
|
|
.getBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
RelyingPartyRegistration registration = repository.findByRegistrationId("foo");
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getSingleSignOnServiceBinding())
|
|
|
|
|
.isEqualTo(Saml2MessageBinding.REDIRECT);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void autoconfigurationWhenNoMetadataUrlOrPropertyPresentShouldUseRedirectBinding() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSsoBinding(false)).run((context) -> {
|
|
|
|
|
RelyingPartyRegistrationRepository repository = context.getBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
RelyingPartyRegistration registration = repository.findByRegistrationId("foo");
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getSingleSignOnServiceBinding())
|
|
|
|
|
.isEqualTo(Saml2MessageBinding.REDIRECT);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void autoconfigurationWhenNoMetadataUrlOrPropertyPresentShouldUseRedirectBindingDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSsoBinding(true)).run((context) -> {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValuesWithoutSsoBinding()).run((context) -> {
|
|
|
|
|
RelyingPartyRegistrationRepository repository = context.getBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
RelyingPartyRegistration registration = repository.findByRegistrationId("foo");
|
|
|
|
|
assertThat(registration.getAssertingPartyDetails().getSingleSignOnServiceBinding())
|
|
|
|
|
@@ -300,17 +179,7 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void relyingPartyRegistrationRepositoryShouldBeConditionalOnMissingBean() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(false))
|
|
|
|
|
.withUserConfiguration(RegistrationRepositoryConfiguration.class).run((context) -> {
|
|
|
|
|
assertThat(context).hasSingleBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
assertThat(context).hasBean("testRegistrationRepository");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void relyingPartyRegistrationRepositoryShouldBeConditionalOnMissingBeanDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(true))
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues())
|
|
|
|
|
.withUserConfiguration(RegistrationRepositoryConfiguration.class).run((context) -> {
|
|
|
|
|
assertThat(context).hasSingleBean(RelyingPartyRegistrationRepository.class);
|
|
|
|
|
assertThat(context).hasBean("testRegistrationRepository");
|
|
|
|
|
@@ -319,102 +188,59 @@ class Saml2RelyingPartyAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void samlLoginShouldBeConfigured() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(false))
|
|
|
|
|
.run((context) -> assertThat(hasFilter(context, Saml2WebSsoAuthenticationFilter.class)).isTrue());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void samlLoginShouldBeConfiguredDeprecated() {
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues(true))
|
|
|
|
|
this.contextRunner.withPropertyValues(getPropertyValues())
|
|
|
|
|
.run((context) -> assertThat(hasFilter(context, Saml2WebSsoAuthenticationFilter.class)).isTrue());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void samlLoginShouldBackOffWhenAWebSecurityConfigurerAdapterIsDefined() {
|
|
|
|
|
this.contextRunner.withUserConfiguration(WebSecurityConfigurerAdapterConfiguration.class)
|
|
|
|
|
.withPropertyValues(getPropertyValues(false))
|
|
|
|
|
.run((context) -> assertThat(hasFilter(context, Saml2WebSsoAuthenticationFilter.class)).isFalse());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void samlLoginShouldBackOffWhenAWebSecurityConfigurerAdapterIsDefinedDeprecated() {
|
|
|
|
|
this.contextRunner.withUserConfiguration(WebSecurityConfigurerAdapterConfiguration.class)
|
|
|
|
|
.withPropertyValues(getPropertyValues(true))
|
|
|
|
|
.withPropertyValues(getPropertyValues())
|
|
|
|
|
.run((context) -> assertThat(hasFilter(context, Saml2WebSsoAuthenticationFilter.class)).isFalse());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void samlLoginShouldBackOffWhenASecurityFilterChainBeanIsPresent() {
|
|
|
|
|
this.contextRunner.withUserConfiguration(TestSecurityFilterChainConfig.class)
|
|
|
|
|
.withPropertyValues(getPropertyValues(false))
|
|
|
|
|
.run((context) -> assertThat(hasFilter(context, Saml2WebSsoAuthenticationFilter.class)).isFalse());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void samlLoginShouldBackOffWhenASecurityFilterChainBeanIsPresentDeprecated() {
|
|
|
|
|
this.contextRunner.withUserConfiguration(TestSecurityFilterChainConfig.class)
|
|
|
|
|
.withPropertyValues(getPropertyValues(true))
|
|
|
|
|
.withPropertyValues(getPropertyValues())
|
|
|
|
|
.run((context) -> assertThat(hasFilter(context, Saml2WebSsoAuthenticationFilter.class)).isFalse());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void samlLoginShouldShouldBeConditionalOnSecurityWebFilterClass() {
|
|
|
|
|
this.contextRunner.withClassLoader(new FilteredClassLoader(SecurityFilterChain.class))
|
|
|
|
|
.withPropertyValues(getPropertyValues(false))
|
|
|
|
|
.withPropertyValues(getPropertyValues())
|
|
|
|
|
.run((context) -> assertThat(context).doesNotHaveBean(SecurityFilterChain.class));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
void samlLoginShouldShouldBeConditionalOnSecurityWebFilterClassDeprecated() {
|
|
|
|
|
this.contextRunner.withClassLoader(new FilteredClassLoader(SecurityFilterChain.class))
|
|
|
|
|
.withPropertyValues(getPropertyValues(true))
|
|
|
|
|
.run((context) -> assertThat(context).doesNotHaveBean(SecurityFilterChain.class));
|
|
|
|
|
private String[] getPropertyValuesWithoutSigningCredentials(boolean signRequests) {
|
|
|
|
|
return new String[] { PREFIX
|
|
|
|
|
+ ".foo.asserting-party.singlesignon.url=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php",
|
|
|
|
|
PREFIX + ".foo.asserting-party.singlesignon.binding=post",
|
|
|
|
|
PREFIX + ".foo.asserting-party.singlesignon.sign-request=" + signRequests,
|
|
|
|
|
PREFIX + ".foo.asserting-party.entity-id=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php",
|
|
|
|
|
PREFIX + ".foo.asserting-party.verification.credentials[0].certificate-location=classpath:saml/certificate-location" };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String[] getPropertyValuesWithoutSigningCredentials(boolean signRequests, boolean useDeprecated) {
|
|
|
|
|
String assertingParty = useDeprecated ? "identityprovider" : "asserting-party";
|
|
|
|
|
return new String[] {
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".singlesignon.url=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php",
|
|
|
|
|
PREFIX + ".foo." + assertingParty + ".singlesignon.binding=post",
|
|
|
|
|
PREFIX + ".foo." + assertingParty + ".singlesignon.sign-request=" + signRequests,
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".entity-id=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php",
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".verification.credentials[0].certificate-location=classpath:saml/certificate-location" };
|
|
|
|
|
private String[] getPropertyValuesWithoutSsoBinding() {
|
|
|
|
|
return new String[] { PREFIX
|
|
|
|
|
+ ".foo.asserting-party.singlesignon.url=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php",
|
|
|
|
|
PREFIX + ".foo.asserting-party.singlesignon.sign-request=false",
|
|
|
|
|
PREFIX + ".foo.asserting-party.entity-id=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php",
|
|
|
|
|
PREFIX + ".foo.asserting-party.verification.credentials[0].certificate-location=classpath:saml/certificate-location" };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String[] getPropertyValuesWithoutSsoBinding(boolean useDeprecated) {
|
|
|
|
|
String assertingParty = useDeprecated ? "identityprovider" : "asserting-party";
|
|
|
|
|
return new String[] {
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".singlesignon.url=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php",
|
|
|
|
|
PREFIX + ".foo." + assertingParty + ".singlesignon.sign-request=false",
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".entity-id=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php",
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".verification.credentials[0].certificate-location=classpath:saml/certificate-location" };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String[] getPropertyValues(boolean useDeprecated) {
|
|
|
|
|
String assertingParty = useDeprecated ? "identityprovider" : "asserting-party";
|
|
|
|
|
private String[] getPropertyValues() {
|
|
|
|
|
return new String[] {
|
|
|
|
|
PREFIX + ".foo.signing.credentials[0].private-key-location=classpath:saml/private-key-location",
|
|
|
|
|
PREFIX + ".foo.signing.credentials[0].certificate-location=classpath:saml/certificate-location",
|
|
|
|
|
PREFIX + ".foo.decryption.credentials[0].private-key-location=classpath:saml/private-key-location",
|
|
|
|
|
PREFIX + ".foo.decryption.credentials[0].certificate-location=classpath:saml/certificate-location",
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".singlesignon.url=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php",
|
|
|
|
|
PREFIX + ".foo." + assertingParty + ".singlesignon.binding=post",
|
|
|
|
|
PREFIX + ".foo." + assertingParty + ".singlesignon.sign-request=false",
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".entity-id=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php",
|
|
|
|
|
PREFIX + ".foo." + assertingParty
|
|
|
|
|
+ ".verification.credentials[0].certificate-location=classpath:saml/certificate-location",
|
|
|
|
|
PREFIX + ".foo.asserting-party.singlesignon.url=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/SSOService.php",
|
|
|
|
|
PREFIX + ".foo.asserting-party.singlesignon.binding=post",
|
|
|
|
|
PREFIX + ".foo.asserting-party.singlesignon.sign-request=false",
|
|
|
|
|
PREFIX + ".foo.asserting-party.entity-id=https://simplesaml-for-spring-saml.cfapps.io/saml2/idp/metadata.php",
|
|
|
|
|
PREFIX + ".foo.asserting-party.verification.credentials[0].certificate-location=classpath:saml/certificate-location",
|
|
|
|
|
PREFIX + ".foo.entity-id={baseUrl}/saml2/foo-entity-id",
|
|
|
|
|
PREFIX + ".foo.acs.location={baseUrl}/login/saml2/foo-entity-id",
|
|
|
|
|
PREFIX + ".foo.acs.binding=redirect" };
|
|
|
|
|
|