forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KEYCLOAK-5143 Run auth-server-wildfly profile on Travis (keycloak#4317)
- Loading branch information
Showing
9 changed files
with
162 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,26 @@ | ||
language: java | ||
|
||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
|
||
before_cache: | ||
- rm -rf $HOME/.m2/repository/org/keycloak | ||
cache: false | ||
|
||
env: | ||
global: | ||
- MAVEN_SKIP_RC=true | ||
- MAVEN_OPTS="-Xms512m -Xmx2048m" | ||
- MAVEN_OPTS="-Xms512m -Xmx1536m" | ||
matrix: | ||
- TESTS=group1 | ||
- TESTS=group2 | ||
- TESTS=group3 | ||
- TESTS=group4 | ||
- TESTS=unit | ||
- TESTS=server-group1 | ||
- TESTS=server-group2 | ||
- TESTS=server-group3 | ||
- TESTS=server-group4 | ||
- TESTS=old | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
before_script: | ||
- export MAVEN_SKIP_RC=true | ||
|
||
install: | ||
- travis_wait 60 mvn install --no-snapshot-updates -Pdistribution -DskipTestsuite -B -V -q | ||
install: true | ||
|
||
script: | ||
script: | ||
- ./travis-run-tests.sh $TESTS | ||
|
||
sudo: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...arquillian/tests/base/src/test/java/org/keycloak/testsuite/runonserver/ServerVersion.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.keycloak.testsuite.runonserver; | ||
|
||
import org.keycloak.common.Version; | ||
import org.keycloak.models.utils.ModelToRepresentation; | ||
import org.keycloak.representations.idm.ComponentRepresentation; | ||
|
||
/** | ||
* Created by st on 26.01.17. | ||
*/ | ||
public class ServerVersion implements FetchOnServerWrapper<String> { | ||
|
||
@Override | ||
public FetchOnServer getRunOnServer() { | ||
return (FetchOnServer) session -> Version.RESOURCES_VERSION; | ||
} | ||
|
||
@Override | ||
public Class<String> getResultClass() { | ||
return String.class; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
~ 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. | ||
--> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<parent> | ||
<artifactId>keycloak-testsuite-pom</artifactId> | ||
<groupId>org.keycloak</groupId> | ||
<version>3.3.0.CR1-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>keycloak-testsuite-utils</artifactId> | ||
<name>Keycloak TestSuite Utils</name> | ||
<description /> | ||
|
||
<properties> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
</properties> | ||
</project> |
44 changes: 44 additions & 0 deletions
44
testsuite/utils/src/main/java/org/keycloak/testsuite/LogTrimmer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package org.keycloak.testsuite; | ||
|
||
import java.io.BufferedReader; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
|
||
/** | ||
* Created by st on 03/07/17. | ||
*/ | ||
public class LogTrimmer { | ||
|
||
public static void main(String[] args) throws IOException { | ||
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); | ||
String testRunning = null; | ||
StringBuilder sb = new StringBuilder(); | ||
for(String l = br.readLine(); l != null; l = br.readLine()) { | ||
if (testRunning == null) { | ||
if (l.startsWith("Running")) { | ||
testRunning = l.split(" ")[1]; | ||
System.out.println(l); | ||
} else { | ||
System.out.println("-- " + l); | ||
} | ||
} else { | ||
if (l.contains("Tests run:")) { | ||
if (!(l.contains("Failures: 0") && l.contains("Errors: 0"))) { | ||
System.out.println("--------- " + testRunning + " output start ---------"); | ||
System.out.println(sb.toString()); | ||
System.out.println("--------- " + testRunning + " output end ---------"); | ||
} | ||
System.out.println(l); | ||
|
||
|
||
testRunning = null; | ||
sb = new StringBuilder(); | ||
} else { | ||
sb.append(testRunning.substring(testRunning.lastIndexOf('.') + 1) + " ++ " + l); | ||
sb.append("\n"); | ||
} | ||
} | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,40 @@ | ||
#!/bin/bash -e | ||
|
||
mvn install --no-snapshot-updates -DskipTests=true -f testsuite | ||
function run-server-tests { | ||
cd testsuite/integration-arquillian | ||
mvn install -B -nsu -Pauth-server-wildfly -DskipTests | ||
|
||
if [ $1 == "old" ]; then | ||
mvn test -B --no-snapshot-updates -f testsuite/integration | ||
mvn test -B --no-snapshot-updates -f testsuite/jetty | ||
mvn test -B --no-snapshot-updates -f testsuite/tomcat6 | ||
mvn test -B --no-snapshot-updates -f testsuite/tomcat7 | ||
mvn test -B --no-snapshot-updates -f testsuite/tomcat8 | ||
fi | ||
cd tests/base | ||
mvn test -B -nsu -Pauth-server-wildfly -Dtest=$1 2>&1 | java -cp ../../../utils/target/classes org.keycloak.testsuite.LogTrimmer | ||
exit ${PIPESTATUS[0]} | ||
} | ||
|
||
if [ $1 == "group1" ]; then | ||
cd testsuite/integration-arquillian/tests/base | ||
mvn test -B --no-snapshot-updates -Dtest=org.keycloak.testsuite.ad*.**.*Test | ||
fi | ||
mvn install -B -nsu -Pdistribution -DskipTests -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | ||
|
||
if [ $1 == "group2" ]; then | ||
cd testsuite/integration-arquillian/tests/base | ||
mvn test -B --no-snapshot-updates -Dtest=org.keycloak.testsuite.ac*.**.*Test,org.keycloak.testsuite.b*.**.*Test,org.keycloak.testsuite.cli*.**.*Test,org.keycloak.testsuite.co*.**.*Test | ||
if [ $1 == "old" ]; then | ||
cd testsuite | ||
mvn test -B -nsu -f integration | ||
mvn test -B -nsu -f jetty | ||
mvn test -B -nsu -f tomcat7 | ||
mvn test -B -nsu -f tomcat8 | ||
fi | ||
|
||
if [ $1 == "group3" ]; then | ||
cd testsuite/integration-arquillian/tests/base | ||
mvn test -B --no-snapshot-updates -Dtest=org.keycloak.testsuite.au*.**.*Test,org.keycloak.testsuite.d*.**.*Test,org.keycloak.testsuite.e*.**.*Test,org.keycloak.testsuite.f*.**.*Test,org.keycloak.testsuite.i*.**.*Test | ||
if [ $1 == "unit" ]; then | ||
mvn -B test -DskipTestsuite | ||
fi | ||
|
||
if [ $1 == "group4" ]; then | ||
cd testsuite/integration-arquillian/tests/base | ||
mvn test -B --no-snapshot-updates -Dtest=org.keycloak.testsuite.k*.**.*Test,org.keycloak.testsuite.m*.**.*Test,org.keycloak.testsuite.o*.**.*Test,org.keycloak.testsuite.s*.**.*Test | ||
if [ $1 == "server-group1" ]; then | ||
run-server-tests org.keycloak.testsuite.ad*.**.*Test,!**/adapter/undertow/**/*Test | ||
fi | ||
|
||
if [ $1 == "adapter" ]; then | ||
cd testsuite/integration-arquillian/tests/other/adapters | ||
mvn test -B --no-snapshot-updates | ||
if [ $1 == "server-group2" ]; then | ||
run-server-tests org.keycloak.testsuite.ac*.**.*Test,org.keycloak.testsuite.b*.**.*Test,org.keycloak.testsuite.cli*.**.*Test,org.keycloak.testsuite.co*.**.*Test | ||
fi | ||
|
||
if [ $1 == "console" ]; then | ||
cd testsuite/integration-arquillian/tests/other/console | ||
mvn test -B --no-snapshot-updates | ||
if [ $1 == "server-group3" ]; then | ||
run-server-tests org.keycloak.testsuite.au*.**.*Test,org.keycloak.testsuite.d*.**.*Test,org.keycloak.testsuite.e*.**.*Test,org.keycloak.testsuite.f*.**.*Test,org.keycloak.testsuite.i*.**.*Test | ||
fi | ||
|
||
if [ $1 == "server-group4" ]; then | ||
run-server-tests org.keycloak.testsuite.k*.**.*Test,org.keycloak.testsuite.m*.**.*Test,org.keycloak.testsuite.o*.**.*Test,org.keycloak.testsuite.s*.**.*Test | ||
fi |