1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
import org.checkerframework.dataflow.qual.Pure;
import org.checkerframework.framework.test.*;
import testlib.util.*;
// Tests for the meta-annotations for contracts.
class MetaPrecondition {
String f1, f2, f3;
MetaPrecondition p;
@RequiresOdd("f1")
void requiresF1() {
// :: error: (assignment.type.incompatible)
@Value String l1 = f1;
@Odd String l2 = f1;
}
@Pure
@RequiresOdd("f1")
int requiresF1AndPure() {
// :: error: (assignment.type.incompatible)
@Value String l1 = f1;
@Odd String l2 = f1;
return 1;
}
@RequiresOdd("---")
// :: error: (flowexpr.parse.error)
void error() {
// :: error: (assignment.type.incompatible)
@Value String l1 = f1;
// :: error: (assignment.type.incompatible)
@Odd String l2 = f1;
}
@RequiresOdd("#1")
void requiresParam(String p) {
// :: error: (assignment.type.incompatible)
@Value String l1 = p;
@Odd String l2 = p;
}
@RequiresOdd({"#1", "#2"})
void requiresParams(String p1, String p2) {
// :: error: (assignment.type.incompatible)
@Value String l1 = p1;
// :: error: (assignment.type.incompatible)
@Value String l2 = p2;
@Odd String l3 = p1;
@Odd String l4 = p2;
}
@RequiresOdd("#1")
// :: error: (flowexpr.parse.index.too.big)
void param3() {}
void t1(@Odd String p1, String p2) {
// :: error: (contracts.precondition.not.satisfied)
requiresF1();
// :: error: (contracts.precondition.not.satisfied)
requiresParam(p2);
// :: error: (contracts.precondition.not.satisfied)
requiresParams(p1, p2);
}
void t2(@Odd String p1, String p2) {
f1 = p1;
requiresF1();
// :: error: (contracts.precondition.not.satisfied)
requiresF1();
}
void t3(@Odd String p1, String p2) {
f1 = p1;
requiresF1AndPure();
requiresF1AndPure();
requiresF1AndPure();
requiresF1();
// :: error: (contracts.precondition.not.satisfied)
requiresF1();
}
}
|