Skip to content

Commit

Permalink
[IdP] Fix Idp Builder using method calls (elastic#99221)
Browse files Browse the repository at this point in the history
The `SamlIdentityProviderBuilder` has mechanisms for building an
object using direct method calls, or from a `Settings` object.
Due to a lack of tests there was a bug that prevented the direct
method call approach from working correctly.
  • Loading branch information
tvernum authored Sep 8, 2023
1 parent b321351 commit e8f8a0a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ public SamlIdentityProvider build() throws ValidationException {
ex.addValidationError("Service provider defaults must be specified");
}

if (allowedNameIdFormats == null || allowedNameIdFormats.isEmpty()) {
ex.addValidationError("At least 1 allowed NameID format must be specified");
}

if (ex.validationErrors().isEmpty() == false) {
throw ex;
}
Expand Down Expand Up @@ -260,6 +264,9 @@ public SamlIdentityProviderBuilder singleLogoutEndpoint(String binding, URL endp
}

public SamlIdentityProviderBuilder allowedNameIdFormat(String nameIdFormat) {
if (this.allowedNameIdFormats == null) {
this.allowedNameIdFormats = new HashSet<>();
}
this.allowedNameIdFormats.add(nameIdFormat);
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
import org.elasticsearch.xpack.idp.saml.test.IdpSamlTestCase;
import org.hamcrest.Matchers;
import org.mockito.Mockito;
import org.opensaml.saml.saml2.core.NameID;
import org.opensaml.security.x509.X509Credential;

import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.security.PrivateKey;
Expand All @@ -43,13 +45,16 @@
import static org.elasticsearch.xpack.idp.saml.idp.SamlIdentityProviderBuilder.IDP_SLO_REDIRECT_ENDPOINT;
import static org.elasticsearch.xpack.idp.saml.idp.SamlIdentityProviderBuilder.IDP_SSO_POST_ENDPOINT;
import static org.elasticsearch.xpack.idp.saml.idp.SamlIdentityProviderBuilder.IDP_SSO_REDIRECT_ENDPOINT;
import static org.hamcrest.Matchers.contains;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.instanceOf;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
import static org.opensaml.saml.common.xml.SAMLConstants.SAML2_POST_BINDING_URI;
import static org.opensaml.saml.common.xml.SAMLConstants.SAML2_REDIRECT_BINDING_URI;
import static org.opensaml.saml.saml2.core.NameIDType.EMAIL;
import static org.opensaml.saml.saml2.core.NameIDType.PERSISTENT;
import static org.opensaml.saml.saml2.core.NameIDType.TRANSIENT;

Expand Down Expand Up @@ -592,4 +597,39 @@ public void testCreateMetadataSigningCredentialFromKeyStoreWithMultipleEntriesBu
);
}

public void testCreateViaMethodCalls() throws Exception {
final String entityId = randomAlphaOfLength(4) + ":" + randomAlphaOfLength(6) + "/" + randomAlphaOfLengthBetween(4, 12);
final URL redirectUrl = new URL(
randomFrom("http", "https")
+ "://"
+ String.join(".", randomArray(2, 5, String[]::new, () -> randomAlphaOfLengthBetween(3, 6)))
+ "/"
+ String.join("/", randomArray(1, 3, String[]::new, () -> randomAlphaOfLengthBetween(2, 4)))
);

final X509Credential credential = readCredentials("RSA", randomFrom(1024, 2048));
final String nameIdFormat = randomFrom(NameID.TRANSIENT, PERSISTENT, EMAIL);

final SamlServiceProviderResolver serviceResolver = Mockito.mock(SamlServiceProviderResolver.class);
final WildcardServiceProviderResolver wildcardResolver = Mockito.mock(WildcardServiceProviderResolver.class);
final ServiceProviderDefaults spDefaults = new ServiceProviderDefaults(
randomAlphaOfLength(2),
nameIdFormat,
Duration.ofMinutes(randomIntBetween(1, 10))
);
final SamlIdentityProvider idp = SamlIdentityProvider.builder(serviceResolver, wildcardResolver)
.entityId(entityId)
.singleSignOnEndpoint(SAML2_REDIRECT_BINDING_URI, redirectUrl)
.signingCredential(credential)
.serviceProviderDefaults(spDefaults)
.allowedNameIdFormat(nameIdFormat)
.build();

assertThat(idp.getEntityId(), is(entityId));
assertThat(idp.getSingleSignOnEndpoint(SAML2_REDIRECT_BINDING_URI), is(redirectUrl));
assertThat(idp.getSigningCredential(), is(credential));
assertThat(idp.getServiceProviderDefaults(), is(spDefaults));
assertThat(idp.getAllowedNameIdFormats(), contains(nameIdFormat));
}

}

0 comments on commit e8f8a0a

Please sign in to comment.