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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
import org.checkerframework.framework.test.*;
import testlib.util.*;
class MetaPostcondition {
String f1, f2, f3;
MetaPostcondition p;
/** *** normal postcondition ***** */
@EnsuresOdd("f1")
void oddF1() {
f1 = null;
}
@EnsuresOdd("p.f1")
void oddF1_1() {
p.f1 = null;
}
@EnsuresOdd("#1.f1")
void oddF1_2(final MetaPostcondition param) {
param.f1 = null;
}
@EnsuresOdd("f1")
// :: error: (contracts.postcondition.not.satisfied)
void oddF1_error() {}
@EnsuresOdd("---")
// :: error: (flowexpr.parse.error)
void error() {}
@EnsuresOdd("#1.#2")
// :: error: (flowexpr.parse.error)
void error2(final String p1, final String p2) {}
@EnsuresOdd("f1")
void exception() {
throw new RuntimeException();
}
@EnsuresOdd("#1")
void param1(final @Odd String f) {}
@EnsuresOdd({"#1", "#2"})
// :: error: (flowexpr.parameter.not.final)
void param2(@Odd String f, @Odd String g) {
f = g;
}
@EnsuresOdd("#1")
// :: error: (flowexpr.parse.index.too.big)
void param3() {}
// basic postcondition test
void t1(@Odd String p1, String p2) {
// :: error: (assignment.type.incompatible)
@Odd String l1 = f1;
oddF1();
@Odd String l2 = f1;
// :: error: (flowexpr.parse.error.postcondition)
error();
}
// test parameter syntax
void t2(@Odd String p1, String p2) {
// :: error: (flowexpr.parse.index.too.big)
param3();
}
// postcondition with more complex flow expression
void tn1(boolean b) {
// :: error: (assignment.type.incompatible)
@Odd String l1 = p.f1;
oddF1_1();
@Odd String l2 = p.f1;
}
// postcondition with more complex flow expression
void tn2(boolean b) {
MetaPostcondition param = null;
// :: error: (assignment.type.incompatible)
@Odd String l1 = param.f1;
oddF1_2(param);
@Odd String l2 = param.f1;
}
// basic postcondition test
void tnm1(@Odd String p1, @Value String p2) {
// :: error: (assignment.type.incompatible)
@Odd String l1 = f1;
// :: error: (assignment.type.incompatible)
@Value String l2 = f2;
// :: error: (flowexpr.parse.error.postcondition)
error2(p1, p2);
}
/** conditional postcondition */
@EnsuresOddIf(result = true, expression = "f1")
boolean condOddF1(boolean b) {
if (b) {
f1 = null;
return true;
}
return false;
}
@EnsuresOddIf(result = false, expression = "f1")
boolean condOddF1False(boolean b) {
if (b) {
return true;
}
f1 = null;
return false;
}
@EnsuresOddIf(result = false, expression = "f1")
boolean condOddF1Invalid(boolean b) {
if (b) {
f1 = null;
return true;
}
// :: error: (contracts.conditional.postcondition.not.satisfied)
return false;
}
@EnsuresOddIf(result = false, expression = "f1")
// :: error: (contracts.conditional.postcondition.invalid.returntype)
void wrongReturnType() {}
@EnsuresOddIf(result = false, expression = "f1")
// :: error: (contracts.conditional.postcondition.invalid.returntype)
String wrongReturnType2() {
f1 = null;
return "";
}
// basic conditional postcondition test
void t3(@Odd String p1, String p2) {
condOddF1(true);
// :: error: (assignment.type.incompatible)
@Odd String l1 = f1;
if (condOddF1(false)) {
@Odd String l2 = f1;
}
// :: error: (assignment.type.incompatible)
@Odd String l3 = f1;
}
// basic conditional postcondition test (inverted)
void t4(@Odd String p1, String p2) {
condOddF1False(true);
// :: error: (assignment.type.incompatible)
@Odd String l1 = f1;
if (!condOddF1False(false)) {
@Odd String l2 = f1;
}
// :: error: (assignment.type.incompatible)
@Odd String l3 = f1;
}
// basic conditional postcondition test 2
void t5(boolean b) {
condOddF1(true);
if (b) {
// :: error: (assignment.type.incompatible)
@Odd String l2 = f1;
}
}
}
|