/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * 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 * * http://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 org.keycloak.testsuite; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; import org.keycloak.models.KeycloakSession; import org.keycloak.models.RealmModel; import org.keycloak.services.managers.RealmManager; import org.keycloak.testsuite.keycloaksaml.SamlAdapterTestStrategy; import org.keycloak.testsuite.rule.AbstractKeycloakRule; import org.openqa.selenium.WebDriver; import java.io.File; import java.net.URL; import java.util.regex.Matcher; /** * @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a> */ public class TomcatSamlTest { @ClassRule public static AbstractKeycloakRule keycloakRule = new AbstractKeycloakRule() { @Override protected void configure(KeycloakSession session, RealmManager manager, RealmModel adminRealm) { SamlAdapterTestStrategy.baseAdapterTestInitialization(session, manager, adminRealm, getClass()); } }; static TomcatServer tomcat = null; @BeforeClass public static void initTomcat() throws Exception { URL dir = TomcatSamlTest.class.getResource("/keycloak-saml/testsaml.json"); String baseDir = new File(dir.getFile()).getParentFile().toString(); System.out.println("Tomcat basedir: " + baseDir); tomcat = new TomcatServer(8082, baseDir); System.setProperty("app.server.base.url", "http://localhost:8082"); System.setProperty("my.host.name", "localhost"); tomcat.deploySaml("/sales-post", "simple-post"); tomcat.deploySaml("/sales-post2", "simple-post2"); tomcat.deploySaml("/input-portal", "simple-input"); tomcat.deploySaml("/sales-post-sig", "signed-post"); tomcat.deploySaml("/sales-post-sig-email", "signed-post-email"); tomcat.deploySaml("/sales-post-sig-transient", "signed-post-transient"); tomcat.deploySaml("/sales-post-sig-persistent", "signed-post-persistent"); tomcat.deploySaml("/sales-metadata", "signed-metadata"); tomcat.deploySaml("/employee-sig", "signed-get"); tomcat.deploySaml("/employee2", "mappers"); tomcat.deploySaml("/employee-sig-front", "signed-front-get"); tomcat.deploySaml("/bad-client-sales-post-sig", "bad-client-signed-post"); tomcat.deploySaml("/bad-realm-sales-post-sig", "bad-realm-signed-post"); tomcat.deploySaml("/sales-post-enc", "encrypted-post"); SamlAdapterTestStrategy.uploadSP("http://localhost:8081/auth"); tomcat.start(); //tomcat.getServer().await(); } @AfterClass public static void shutdownTomcat() throws Exception { tomcat.stop(); } @Rule public SamlAdapterTestStrategy testStrategy = new SamlAdapterTestStrategy("http://localhost:8081/auth", "http://localhost:8082", keycloakRule); @Test public void testSavedPostRequest() throws Exception { testStrategy.testSavedPostRequest(); } @Test public void testPostSimpleLoginLogoutIdpInitiatedRedirectTo() { testStrategy.testPostSimpleLoginLogoutIdpInitiatedRedirectTo(); } @Test public void testPostSimpleLoginLogout() { testStrategy.testPostSimpleLoginLogout(); } @Test public void testPostSimpleLoginLogoutIdpInitiated() { testStrategy.testPostSimpleLoginLogoutIdpInitiated(); } @Test public void testPostSignedLoginLogout() { testStrategy.testPostSignedLoginLogout(); } @Test public void testPostSignedLoginLogoutTransientNameID() { testStrategy.testPostSignedLoginLogoutTransientNameID(); } @Test public void testPostSignedLoginLogoutPersistentNameID() { testStrategy.testPostSignedLoginLogoutPersistentNameID(); } @Test public void testErrorHandlingSigned() throws Exception { testStrategy.testErrorHandlingSigned(); } @Test public void testErrorHandlingUnsigned() throws Exception { testStrategy.testErrorHandlingUnsigned(); } @Test public void testPostSignedLoginLogoutEmailNameID() { testStrategy.testPostSignedLoginLogoutEmailNameID(); } @Test public void testAttributes() throws Exception { testStrategy.testAttributes(); } @Test public void testRedirectSignedLoginLogout() { testStrategy.testRedirectSignedLoginLogout(); } @Test public void testRedirectSignedLoginLogoutFrontNoSSO() { testStrategy.testRedirectSignedLoginLogoutFrontNoSSO(); } @Test public void testRedirectSignedLoginLogoutFront() { testStrategy.testRedirectSignedLoginLogoutFront(); } @Test public void testPostEncryptedLoginLogout() { testStrategy.testPostEncryptedLoginLogout(); } @Test public void testPostBadClientSignature() { testStrategy.testPostBadClientSignature(); } @Test public void testPostBadRealmSignature() { testStrategy.testPostBadRealmSignature(); } @Test public void testPostSimpleUnauthorized() { testStrategy.testPostSimpleUnauthorized( new SamlAdapterTestStrategy.CheckAuthError() { @Override public void check(WebDriver driver) { Assert.assertTrue(driver.getPageSource().contains("forbidden")); } }); } @Test public void testMetadataPostSignedLoginLogout() throws Exception { testStrategy.testMetadataPostSignedLoginLogout(); } static String getBaseDirectory() { String dirPath = null; String relativeDirPath = "testsuite" + File.separator + "tomcat6" + File.separator + "target"; if (System.getProperties().containsKey("maven.home")) { dirPath = System.getProperty("user.dir").replaceFirst("testsuite.tomcat6.*", Matcher.quoteReplacement(relativeDirPath)); } else { for (String c : System.getProperty("java.class.path").split(File.pathSeparator)) { if (c.contains(File.separator + "testsuite" + File.separator + "tomcat6")) { dirPath = c.replaceFirst("testsuite.tomcat6.*", Matcher.quoteReplacement(relativeDirPath)); break; } } } String absolutePath = new File(dirPath).getAbsolutePath(); return absolutePath; } }