123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /*
- * Copyright 2021 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * https://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package example;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.concurrent.TimeUnit;
- import org.htmlunit.ElementNotFoundException;
- import org.htmlunit.WebClient;
- import org.htmlunit.html.HtmlElement;
- import org.htmlunit.html.HtmlForm;
- import org.htmlunit.html.HtmlInput;
- import org.htmlunit.html.HtmlPage;
- import org.htmlunit.html.HtmlPasswordInput;
- import org.htmlunit.html.HtmlSubmitInput;
- import org.junit.jupiter.api.BeforeEach;
- import org.junit.jupiter.api.Test;
- import org.junit.jupiter.api.extension.ExtendWith;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.core.env.Environment;
- import org.springframework.security.test.web.servlet.setup.SecurityMockMvcConfigurers;
- import org.springframework.test.context.ContextConfiguration;
- import org.springframework.test.context.junit.jupiter.SpringExtension;
- import org.springframework.test.context.web.WebAppConfiguration;
- import org.springframework.test.web.servlet.MockMvc;
- import org.springframework.test.web.servlet.htmlunit.MockMvcWebClientBuilder;
- import org.springframework.test.web.servlet.setup.MockMvcBuilders;
- import org.springframework.web.context.WebApplicationContext;
- import static org.assertj.core.api.Assertions.assertThat;
- import static org.awaitility.Awaitility.await;
- @ExtendWith(SpringExtension.class)
- @ContextConfiguration(classes = ApplicationConfiguration.class)
- @WebAppConfiguration
- public class Saml2JavaConfigurationITests {
- private MockMvc mvc;
- private WebClient webClient;
- @Autowired
- WebApplicationContext webApplicationContext;
- @Autowired
- Environment environment;
- @BeforeEach
- void setup() {
- this.mvc = MockMvcBuilders.webAppContextSetup(this.webApplicationContext)
- .apply(SecurityMockMvcConfigurers.springSecurity())
- .build();
- this.webClient = MockMvcWebClientBuilder.mockMvcSetup(this.mvc)
- .withDelegate(new LocalHostWebClient(this.environment))
- .build();
- this.webClient.getCookieManager().clearCookies();
- }
- @Test
- void authenticationAttemptWhenValidThenShowsUserEmailAddress() throws Exception {
- performLogin();
- HtmlPage home = (HtmlPage) this.webClient.getCurrentWindow().getEnclosedPage();
- assertThat(home.asNormalizedText()).contains("You're email address is testuser2@spring.security.saml");
- }
- @Test
- void logoutWhenRelyingPartyInitiatedLogoutThenLoginPageWithLogoutParam() throws Exception {
- performLogin();
- HtmlPage home = (HtmlPage) this.webClient.getCurrentWindow().getEnclosedPage();
- HtmlElement rpLogoutButton = home.getHtmlElementById("rp_logout_button");
- HtmlPage loginPage = rpLogoutButton.click();
- this.webClient.waitForBackgroundJavaScript(10000);
- List<String> urls = new ArrayList<>();
- urls.add(loginPage.getUrl().getFile());
- urls.add(((HtmlPage) this.webClient.getCurrentWindow().getEnclosedPage()).getUrl().getFile());
- assertThat(urls).withFailMessage(() -> {
- // @formatter:off
- String builder = loginPage.asXml()
- + "\n\n\n"
- + "Enclosing Page"
- + "\n\n\n"
- + ((HtmlPage) this.webClient.getCurrentWindow().getEnclosedPage()).asXml();
- // @formatter:on
- return builder;
- }).contains("/login?logout");
- }
- private void performLogin() throws Exception {
- HtmlPage login = this.webClient.getPage("/");
- this.webClient.waitForBackgroundJavaScript(10000);
- HtmlForm form = findForm(login);
- HtmlInput username = form.getInputByName("username");
- HtmlPasswordInput password = form.getInputByName("password");
- HtmlSubmitInput submit = login.getHtmlElementById("okta-signin-submit");
- username.type("testuser2@spring.security.saml");
- password.type("12345678");
- submit.click();
- this.webClient.waitForBackgroundJavaScript(10000);
- }
- private HtmlForm findForm(HtmlPage login) {
- await().atMost(10, TimeUnit.SECONDS)
- .until(() -> login.getForms().stream().map(HtmlForm::getId).anyMatch("form19"::equals));
- for (HtmlForm form : login.getForms()) {
- try {
- if (form.getId().equals("form19")) {
- return form;
- }
- }
- catch (ElementNotFoundException ex) {
- // Continue
- }
- }
- throw new IllegalStateException("Could not resolve login form");
- }
- }
|