keycloak-scim/misc/log/LogTrimmer.java
2020-06-09 08:25:47 +02:00

52 lines
2 KiB
Java

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* A simple utility class for trimming test output (if successful).
*
* Created to shrink down the output for Travis.
*
* Created by st on 03/07/17.
*/
public class LogTrimmer {
private static Pattern TEST_START_PATTERN = Pattern.compile("(\\[INFO\\] )?Running (.*)");
private static int TEST_NAME_GROUP = 2;
public static void main(String[] args) {
try (Scanner scanner = new Scanner(System.in)) {
String testRunning = null;
String line = null;
Matcher testMatcher = null;
StringBuilder testText = new StringBuilder();
while (scanner.hasNextLine()) {
line = scanner.nextLine();
if (testRunning == null) {
testMatcher = TEST_START_PATTERN.matcher(line);
if (testMatcher.find()) {
testRunning = testMatcher.group(TEST_NAME_GROUP);
System.out.println(line);
} else {
System.out.println("-- " + line);
}
} else {
if (line.contains("Tests run:")) {
if (!(line.contains("Failures: 0") && line.contains("Errors: 0"))) {
System.out.println("--------- " + testRunning + " output start ---------");
System.out.println(testText.toString());
System.out.println("--------- " + testRunning + " output end ---------");
}
System.out.println(line);
testRunning = null;
testText = new StringBuilder();
} else {
testText.append(testRunning.substring(testRunning.lastIndexOf('.') + 1) + " ++ " + line);
testText.append("\n");
}
}
}
}
}
}