/* * 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.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.adapter.AdapterTestStrategy; import org.keycloak.testsuite.rule.AbstractKeycloakRule; import java.io.File; import java.net.URL; import java.util.regex.Matcher; /** * @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a> */ //@Ignore public class TomcatTest { @ClassRule public static AbstractKeycloakRule keycloakRule = new AbstractKeycloakRule() { @Override protected void configure(KeycloakSession session, RealmManager manager, RealmModel adminRealm) { AdapterTestStrategy.baseAdapterTestInitialization(session, manager, adminRealm, getClass()); } }; static TomcatServer tomcat = null; @BeforeClass public static void initTomcat() throws Exception { URL dir = TomcatTest.class.getResource("/adapter-test/demorealm.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.deploy("/customer-portal", "customer-portal"); tomcat.deploy("/customer-db", "customer-db"); tomcat.deploy("/customer-db-error-page", "customer-db-error-page"); tomcat.deploy("/product-portal", "product-portal"); tomcat.deploy("/secure-portal", "secure-portal"); tomcat.deploy("/session-portal", "session-portal"); tomcat.deploy("/input-portal", "input-portal"); tomcat.start(); //tomcat.getServer().await(); } @AfterClass public static void shutdownTomcat() throws Exception { tomcat.stop(); } @Rule public AdapterTestStrategy testStrategy = new AdapterTestStrategy("http://localhost:8081/auth", "http://localhost:8082", keycloakRule); @Test public void testLoginSSOAndLogout() throws Exception { testStrategy.testLoginSSOAndLogout(); } @Test public void testLoginEncodedRedirectUri() throws Exception { testStrategy.testLoginEncodedRedirectUri(); } @Test public void testSavedPostRequest() throws Exception { testStrategy.testSavedPostRequest(); } @Test public void testServletRequestLogout() throws Exception { // can't test this. Servlet 2.5 doesn't have logout() //testStrategy.testServletRequestLogout(); } @Test public void testLoginSSOIdle() throws Exception { testStrategy.testLoginSSOIdle(); } @Test public void testLoginSSOIdleRemoveExpiredUserSessions() throws Exception { testStrategy.testLoginSSOIdleRemoveExpiredUserSessions(); } @Test public void testLoginSSOMax() throws Exception { testStrategy.testLoginSSOMax(); } /** * KEYCLOAK-518 * @throws Exception */ @Test public void testNullBearerToken() throws Exception { testStrategy.testNullBearerToken(); } /** * KEYCLOAK-1368 * @throws Exception */ @Test public void testNullBearerTokenCustomErrorPage() throws Exception { testStrategy.testNullBearerTokenCustomErrorPage(); } /** * KEYCLOAK-518 * @throws Exception */ @Test public void testBadUser() throws Exception { testStrategy.testBadUser(); } @Test public void testVersion() throws Exception { testStrategy.testVersion(); } /** * KEYCLOAK-732 * * @throws Throwable */ @Test public void testSingleSessionInvalidated() throws Throwable { testStrategy.testSingleSessionInvalidated(); } /** * KEYCLOAK-741 */ @Test public void testSessionInvalidatedAfterFailedRefresh() throws Throwable { testStrategy.testSessionInvalidatedAfterFailedRefresh(); } /** * KEYCLOAK-942 */ @Test public void testAdminApplicationLogout() throws Throwable { testStrategy.testAdminApplicationLogout(); } /** * KEYCLOAK-1216 */ @Test public void testAccountManagementSessionsLogout() throws Throwable { testStrategy.testAccountManagementSessionsLogout(); } 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; } }