aboutsummaryrefslogtreecommitdiff
path: root/test/core
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-05-08 00:38:50 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-05-08 00:39:59 +0200
commit844995fc606085af7c102954ee342edfd8cd623a (patch)
treeccba4f3c6bb6cedc9798f76d2f32e32395e887b3 /test/core
parent7f85149f3959335f1be3e75f3695e00fb1cd3594 (diff)
downloadlombok-844995fc606085af7c102954ee342edfd8cd623a.tar.gz
lombok-844995fc606085af7c102954ee342edfd8cd623a.tar.bz2
lombok-844995fc606085af7c102954ee342edfd8cd623a.zip
All tests now succeed on all platforms again;
'optional' expected messages added. expanded some tests. Added a check if the bootclasspath supports a certain version, i.e. don't try to run a JDK7-only test if AutoClosable isn't available.
Diffstat (limited to 'test/core')
-rw-r--r--test/core/src/lombok/AbstractRunTests.java38
-rw-r--r--test/core/src/lombok/CompilerMessageMatcher.java14
2 files changed, 45 insertions, 7 deletions
diff --git a/test/core/src/lombok/AbstractRunTests.java b/test/core/src/lombok/AbstractRunTests.java
index 34f6cbf4..2a04d21a 100644
--- a/test/core/src/lombok/AbstractRunTests.java
+++ b/test/core/src/lombok/AbstractRunTests.java
@@ -56,12 +56,15 @@ public abstract class AbstractRunTests {
public boolean compareFile(DirectoryRunner.TestParams params, File file) throws Throwable {
ConfigurationKeysLoader.LoaderLoader.loadAllConfigurationKeys();
final LombokTestSource sourceDirectives = LombokTestSource.readDirectives(file);
- if (sourceDirectives.isIgnore() || !sourceDirectives.versionWithinLimit(params.getVersion())) return false;
+ if (sourceDirectives.isIgnore()) return false;
+ if (!sourceDirectives.versionWithinLimit(params.getVersion())) return false;
+ if (!sourceDirectives.versionWithinLimit(getClasspathVersion())) return false;
String fileName = file.getName();
LombokTestSource expected = LombokTestSource.read(params.getAfterDirectory(), params.getMessagesDirectory(), fileName);
- if (expected.isIgnore() || !expected.versionWithinLimit(params.getVersion())) return false;
+ if (expected.isIgnore()) return false;
+ if (!expected.versionWithinLimit(params.getVersion())) return false;
LinkedHashSet<CompilerMessage> messages = new LinkedHashSet<CompilerMessage>();
StringWriter writer = new StringWriter();
@@ -78,6 +81,22 @@ public abstract class AbstractRunTests {
return true;
}
+ private static int getClasspathVersion() {
+ try {
+ Class.forName("java.lang.AutoCloseable");
+ } catch (ClassNotFoundException e) {
+ return 6;
+ }
+
+ try {
+ Class.forName("java.util.stream.Stream");
+ } catch (ClassNotFoundException e) {
+ return 7;
+ }
+
+ return 8;
+ }
+
protected abstract void transformCode(Collection<CompilerMessage> messages, StringWriter result, File file) throws Throwable;
protected String readFile(File file) throws IOException {
@@ -176,24 +195,31 @@ public abstract class AbstractRunTests {
}
}
+ @SuppressWarnings("null") /* eclipse bug; it falsely thinks stuffAc will always be null or some such hogwash. */
private static void compareMessages(String name, LombokImmutableList<CompilerMessageMatcher> expected, LinkedHashSet<CompilerMessage> actual) {
Iterator<CompilerMessageMatcher> expectedIterator = expected.iterator();
Iterator<CompilerMessage> actualIterator = actual.iterator();
+ CompilerMessage stuffAc = null;
while (true) {
boolean exHasNext = expectedIterator.hasNext();
- boolean acHasNext = actualIterator.hasNext();
+ boolean acHasNext = stuffAc != null || actualIterator.hasNext();
if (!exHasNext && !acHasNext) break;
if (exHasNext && acHasNext) {
CompilerMessageMatcher cmm = expectedIterator.next();
- CompilerMessage cm = actualIterator.next();
+ CompilerMessage cm = stuffAc == null ? actualIterator.next() : stuffAc;
if (cmm.matches(cm)) continue;
+ if (cmm.isOptional()) stuffAc = cm;
fail(String.format("[%s] Expected message '%s' but got message '%s'", name, cmm, cm));
throw new AssertionError("fail should have aborted already.");
}
- if (exHasNext) fail(String.format("[%s] Expected message '%s' but ran out of actual messages", name, expectedIterator.next()));
+
+ while (expectedIterator.hasNext()) {
+ if (expectedIterator.next().isOptional()) continue;
+ fail(String.format("[%s] Expected message '%s' but ran out of actual messages", name, expectedIterator.next()));
+ }
if (acHasNext) fail(String.format("[%s] Unexpected message: %s", name, actualIterator.next()));
- throw new AssertionError("fail should have aborted already.");
+ break;
}
}
diff --git a/test/core/src/lombok/CompilerMessageMatcher.java b/test/core/src/lombok/CompilerMessageMatcher.java
index cffad88a..0d6c0889 100644
--- a/test/core/src/lombok/CompilerMessageMatcher.java
+++ b/test/core/src/lombok/CompilerMessageMatcher.java
@@ -37,9 +37,14 @@ public class CompilerMessageMatcher {
/** Line Number (starting at 1) */
private final List<Integer> lineNumbers = new ArrayList<Integer>();
private final List<List<String>> messages = new ArrayList<List<String>>();
+ private boolean optional;
private CompilerMessageMatcher() {}
+ public boolean isOptional() {
+ return optional;
+ }
+
public static CompilerMessageMatcher asCompilerMessageMatcher(CompilerMessage message) {
CompilerMessageMatcher cmm = new CompilerMessageMatcher();
cmm.lineNumbers.add((int) message.getLine());
@@ -50,7 +55,7 @@ public class CompilerMessageMatcher {
@Override public String toString() {
StringBuilder out = new StringBuilder();
for (int i = 0; i < lineNumbers.size(); i++) {
- out.append(lineNumbers.get(i));
+ out.append(lineNumbers.get(i)).append(" ");
for (String part : messages.get(i)) out.append(part).append(" ");
if (out.length() > 0) out.setLength(out.length() - 1);
out.append(" |||| ");
@@ -87,10 +92,17 @@ public class CompilerMessageMatcher {
private static CompilerMessageMatcher read(String line) {
line = line.trim();
if (line.isEmpty()) return null;
+ boolean optional = false;
+
+ if (line.startsWith("OPTIONAL ")) {
+ line = line.substring(9);
+ optional = true;
+ }
String[] parts = line.split("\\s*\\|\\|\\|\\|\\s*");
CompilerMessageMatcher cmm = new CompilerMessageMatcher();
+ cmm.optional = optional;
for (String part : parts) {
Matcher m = PATTERN.matcher(part);
if (!m.matches()) throw new IllegalArgumentException("Typo in test file: " + line);