Skip to content
Snippets Groups Projects
Commit b50686f5 authored by Mick Jordan's avatar Mick Jordan
Browse files

add tool to compare ExpectedTestOutput files

parent 5e06f3e3
No related branches found
No related tags found
No related merge requests found
/*
* Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.truffle.r.test.tools;
import java.io.File;
import java.util.ArrayList;
import java.util.Map;
import java.util.SortedMap;
import com.oracle.truffle.r.test.generate.TestOutputManager;
import com.oracle.truffle.r.test.generate.TestOutputManager.TestInfo;
/**
* Compares several "expected" test output files and reports differences. Typically used to
* determine differences between operating system environments.
*
* When {@code --whitelist} is set, the first file is taken as providing the definitive test output
* that will be used in unit tests, and the second file is taken as the FastR output. So the
* whitelist entry will be "test, file1 output, file2 output".
*/
public class AnalyzeExpectedTestOutput {
public static void main(String[] args) {
if (args.length < 2) {
usage();
}
ArrayList<String> fileList = new ArrayList<>();
String fastrOutput = null;
int i = 0;
while (i < args.length) {
String arg = args[i];
if (arg.startsWith("--")) {
// options maybe
if (arg.equals("--whitelist")) {
fastrOutput = args[++i];
}
} else {
fileList.add(arg);
}
i++;
}
try {
String[] files = new String[fileList.size()];
fileList.toArray(files);
TestOutputManager[] toms = new TestOutputManager[files.length];
for (i = 0; i < files.length; i++) {
toms[i] = new TestOutputManager(new File(files[i]));
toms[i].readTestOutputFile();
}
ArrayList<WhiteListInfo> misMatchedTests = compare(toms);
if (fastrOutput != null) {
TestOutputManager fastrTOM = new TestOutputManager(new File(fastrOutput));
fastrTOM.readTestOutputFile();
Map<String, String> fastrMap = fastrTOM.getRuntimeMap();
for (WhiteListInfo info : misMatchedTests) {
String expected = info.expected.replace("\n", "\\n");
String fastr = fastrMap.get(info.test);
if (fastr != null) {
fastr = fastr.replace("\n", "\\n");
if (!fastr.equals(expected)) {
String fastrExpected = fastrMap.get(info.test).replace("\n", "\\n");
System.out.printf("BINARY_ARITHMETIC_WHITELIST.add(\"%s\", \"%s\", \"%s\");%n", info.test, fastrExpected, expected);
}
}
}
}
} catch (Exception ex) {
System.err.println(ex);
}
}
private static class WhiteListInfo {
private final String test;
private final String expected;
WhiteListInfo(String test, String expected) {
this.test = test;
this.expected = expected;
}
}
private static void usage() {
System.out.println("usage: file1 file2");
System.exit(1);
}
private static ArrayList<WhiteListInfo> compare(TestOutputManager[] toms) {
ArrayList<WhiteListInfo> misMatchedTests = new ArrayList<>();
// assume the maps ran on the same set of inputs and use toms[0] as iterator
SortedMap<String, SortedMap<String, TestInfo>> m0 = toms[0].getTestMaps();
ArrayList<SortedMap<String, SortedMap<String, TestInfo>>> subMaps = new ArrayList<>();
for (int i = 1; i < toms.length; i++) {
subMaps.add(toms[i].getTestMaps());
}
for (Map.Entry<String, SortedMap<String, TestInfo>> m1Entry : m0.entrySet()) {
String m0EntryKey = m1Entry.getKey();
SortedMap<String, TestInfo> m0Value = m1Entry.getValue();
for (Map.Entry<String, TestInfo> entrySet : m0Value.entrySet()) {
String test = entrySet.getKey();
TestInfo testInfo = entrySet.getValue();
String expected1 = testInfo.output;
boolean misMatch = false;
for (int i = 0; i < subMaps.size(); i++) {
Map<String, TestInfo> subMap = subMaps.get(i).get(m0EntryKey);
if (subMap == null) {
System.out.printf("testMap %s not found in file %d%n", m0EntryKey, i + 1);
continue;
}
TestInfo subMapTestInfo = subMap.get(test);
if (subMapTestInfo == null) {
System.out.printf("test %s not found in file %d%n", test, i + 1);
continue;
}
String subMapExpected = subMapTestInfo.output;
if (!expected1.equals(subMapExpected)) {
if (!misMatch) {
System.out.printf("## %s%n", m0EntryKey);
System.out.printf("# %s%n", test);
System.out.println("file1:");
System.out.println(expected1);
misMatchedTests.add(new WhiteListInfo(test, expected1));
misMatch = true;
}
System.out.printf("file %d:%n", i + 2);
System.out.println(subMapExpected);
}
}
}
}
return misMatchedTests;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment