blob: 92ac0bfadcbdb711033b214af24f612019bc5fda [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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.apache.geode.test.golden;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;
import org.apache.geode.test.process.OutputFormatter;
/**
* Compares test output to golden text file.
*
* @since GemFire 4.1.1
*/
public abstract class GoldenComparator {
// TODO: private static final boolean ALLOW_EXTRA_WHITESPACE = true;
private String[] expectedProblemLines;
protected GoldenComparator(final String[] expectedProblemLines) {
this.expectedProblemLines = expectedProblemLines;
}
protected Reader readGoldenFile(final String goldenFileName) throws IOException {
final InputStream goldenStream = ClassLoader.getSystemResourceAsStream(goldenFileName);
assertNotNull("Golden file " + goldenFileName + " not found.", goldenStream);
return new InputStreamReader(goldenStream);
}
public void assertOutputMatchesGoldenFile(final String actualOutput, final String goldenFileName)
throws IOException {
debug("GoldenComparator:assertOutputMatchesGoldenFile");
final BufferedReader goldenReader = new BufferedReader(readGoldenFile(goldenFileName));
final BufferedReader actualReader = new BufferedReader(new StringReader(actualOutput));
final List<String> goldenStrings = readLines(goldenReader);
final List<String> actualStrings = readLines(actualReader);
scanForProblems(actualStrings);
String actualLine = null;
String goldenLine = null;
int lineCount = 0;
do {
lineCount++;
debug("GoldenComparator comparing line " + lineCount);
actualLine = actualStrings.get(lineCount - 1);
goldenLine = goldenStrings.get(lineCount - 1);
if (actualLine == null && goldenLine != null) {
fail("EOF reached in actual output but golden file, " + goldenFileName
+ ", continues at line " + lineCount + ": " + goldenLine
+ new OutputFormatter(actualStrings));
} else if (actualLine != null && goldenLine == null) {
fail("EOF reached in golden file, " + goldenFileName
+ ", but actual output continues at line " + lineCount + ": " + actualLine
+ new OutputFormatter(actualStrings));
} else if (actualLine != null && goldenLine != null) {
assertTrue("Actual output \"" + actualLine + "\" did not match expected pattern \""
+ goldenLine + "\" at line " + lineCount + " in " + goldenFileName + ": "
+ new OutputFormatter(actualStrings), compareLines(actualLine, goldenLine));
}
} while (actualLine != null && goldenLine != null);
}
/**
* Returns true if the line matches and is ok. Otherwise returns false.
*/
protected abstract boolean compareLines(final String actualLine, final String goldenLine);
private List<String> readLines(final BufferedReader reader) throws IOException {
final List<String> listOfLines = new ArrayList<String>();
String line = null;
do {
line = reader.readLine();
listOfLines.add(line);
} while (line != null);
return listOfLines;
}
private void scanForProblems(final List<String> lines) throws IOException {
debug("GoldenComparator:scanForProblems");
int lineCount = 0;
for (String line : lines) {
lineCount++;
debug("GoldenComparator:scanForProblems scanning line " + lineCount);
checkForProblem(lineCount, line);
}
}
private void checkForProblem(final int lineCount, final String line) {
if (line == null) {
return;
}
checkLineFor(lineCount, line, "warning");
checkLineFor(lineCount, line, "warn");
checkLineFor(lineCount, line, "error");
checkLineFor(lineCount, line, "fatal");
checkLineFor(lineCount, line, "severe");
}
private void checkLineFor(final int lineCount, final String line, final String problem) {
if (line != null && line.toLowerCase().contains(problem)) {
if (this.expectedProblemLines != null && this.expectedProblemLines.length > 0) {
for (int i = 0; i < this.expectedProblemLines.length; i++) {
debug("Comparing \" + line + \" against expected \" + this.expectedProblemLines[i] + \"");
if (compareLines(line, this.expectedProblemLines[i])) {
return;
}
}
}
// TODO: collect up entire stack trace if there is one (might span multiple lines)
debug("About to fail because of " + line);
fail("Actual output contains a problem (warning/error/severe) on line " + lineCount + ": "
+ line);
}
}
protected static void debug(final String string) {
GoldenTestCase.debug(string);
}
}