-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
178 lines (154 loc) · 5.85 KB
/
build.gradle
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
173
174
175
176
177
178
/// Why doesn't this work on Travis under Java 7?
/// The same text does in Randoop's build.gradle file.
plugins {
// Plugin that applies Google-Java-format to the Java files in the project.
// https://github.com/sherter/google-java-format-gradle-plugin
// id 'com.github.sherter.google-java-format' version '0.6'
}
apply plugin: 'java'
ext {
jsr308 = System.getenv('JSR308') ?: file(new File("..")).absolutePath
cfPath = "${jsr308}/checker-framework"
cfiPath = "${jsr308}/checker-framework-inference"
jsr308langtoolsPath = "${jsr308}/jsr308-langtools"
afu = "${jsr308}/annotation-tools/annotation-file-utilities"
securityPath = "${jsr308}/security-demo"
// Keep in sync with checker-framework/build.gradle.
// TODO: find a way to directly use that variable.
compilerArgsForRunningCF = [
"--add-exports", "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED",
"--add-exports", "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
"--add-opens", "jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED",
]
}
println '==================================='
println ' Security Checker '
println '==================================='
println ''
println '-------------------------------'
println 'Important Environment Variables'
println '-------------------------------'
println 'JSR308: ' + jsr308
println 'CF: ' + cfPath
println 'CFI: ' + cfiPath
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(dir: "${cfPath}/checker/dist", include: "checker.jar")
implementation fileTree(dir: "${cfiPath}/dist", include: "checker-framework-inference.jar")
// sat4j solver dependency
implementation 'org.ow2.sat4j:org.ow2.sat4j.core:2.3.6'
implementation 'org.ow2.sat4j:org.ow2.sat4j.maxsat:2.3.6'
implementation fileTree(dir: "${cfiPath}/dist", include: "inference-framework-test-lib.jar")
// CF test lib dependency
testImplementation fileTree(dir: "${cfPath}/framework-test/build/libs", include: "framework-test-*.jar")
testImplementation 'junit:junit:4.13.2'
}
sourceSets {
main {
java {
srcDirs = ["src"]
}
resources {
srcDirs = ["src"]
include "**/*.astub"
}
output.resourcesDir = "build/classes/java/main"
}
test {
java {
srcDirs = ["tests"]
}
}
}
compileJava {
options.compilerArgs = [
'-implicit:class',
'-Awarns',
'-Xmaxwarns', '10000',
]
}
afterEvaluate {
// Create a task for each JUnit test class whose name is the same as the JUnit class name.
sourceSets.test.allJava.filter { it.path.contains("${securityPath}/tests") }.forEach { file ->
String junitClassName = file.name.replaceAll(".java", "")
String testName = junitClassName.replaceAll("Test", "")
tasks.create(name: "${junitClassName}", type: Test) {
description "Run ${testName} tests."
include "**/${name}.class"
}
}
// Configure JUnit tests
tasks.withType(Test) {
group 'Verification'
systemProperties = ['path.afu.scripts': "${afu}/scripts",
'path.inference.script': "${cfiPath}/scripts/inference"]
if (JavaVersion.current() == JavaVersion.VERSION_1_8) {
jvmArgs "-Xbootclasspath/p:${cfiPath}/dist/javac.jar"
} else {
jvmArgs += compilerArgsForRunningCF
}
environment "external_checker_classpath", "${securityPath}/build/classes/java/main:${securityPath}/build/libs/security-demo.jar"
testLogging {
// Always run the tests
outputs.upToDateWhen { false }
// The following prints out each time a test is passed.
events "passed", "skipped", "failed", "standardOut", "standardError"
// Show the found unexpected diagnostics and expected diagnostics not found.
exceptionFormat "full"
showExceptions true
showCauses true
showStackTraces true
showStandardStreams true
}
// After each test, print a summary.
afterSuite { desc, result ->
if (desc.getClassName() != null) {
long mils = result.getEndTime() - result.getStartTime()
double seconds = mils / 1000.0
println "Testsuite: ${desc.getClassName()}\n" +
"Tests run: ${result.testCount}, " +
"Failures: ${result.failedTestCount}, " +
"Skipped: ${result.skippedTestCount}, " +
"Time elapsed: ${seconds} sec\n"
}
}
}
}
tasks.clean {
delete += "build"
delete += "dist"
delete += "testdata"
delete += "tests/build"
}
// Commented out because plugins section is commented out
/* Configuration for formatting */
/*
googleJavaFormat {
// toolVersion '1.3'
options style: 'AOSP'
}
tasks.googleJavaFormat {
group 'Formatting'
description = "Reformat Java source code with Google-Java-format"
exclude 'testing'
exclude 'testdata'
exclude 'annotated'
exclude 'worked-benchmarks'
}
tasks.verifyGoogleJavaFormat {
group 'Formatting'
description = "Check Java source code is in Google-Java-format"
exclude 'testing'
exclude 'testdata'
exclude 'annotated'
exclude 'worked-benchmarks'
}
*/