-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathToolchainsIntegrationTest.kt
408 lines (348 loc) · 15.2 KB
/
ToolchainsIntegrationTest.kt
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
package net.ltgt.gradle.errorprone
import com.google.common.truth.Truth.assertThat
import com.google.common.truth.TruthJUnit.assume
import org.gradle.api.JavaVersion
import org.gradle.testkit.runner.BuildResult
import org.gradle.testkit.runner.TaskOutcome
import org.gradle.util.GradleVersion
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInfo
import java.io.File
class ToolchainsIntegrationTest : AbstractPluginIntegrationTest() {
companion object {
private val FORKED = "${System.lineSeparator()}Fork: true${System.lineSeparator()}"
private val NOT_FORKED = "${System.lineSeparator()}Fork: false${System.lineSeparator()}"
private val JVM_ARG = "${System.lineSeparator()}JVM Arg: "
private val JVM_ARG_BOOTCLASSPATH = jvmArg("-Xbootclasspath/p:")
private val JVM_ARG_BOOTCLASSPATH_ERRORPRONE_JAVAC =
"""\Q$JVM_ARG_BOOTCLASSPATH\E.*\Q${File.separator}com.google.errorprone${File.separator}javac${File.separator}9+181-r4173-1${File.separator}\E.*\Q${File.separator}javac-9+181-r4173-1.jar\E(?:\Q${File.pathSeparator}\E|${Regex.escape(System.lineSeparator())})"""
.toPattern()
private val JVM_ARGS_STRONG_ENCAPSULATION = ErrorPronePlugin.JVM_ARGS_STRONG_ENCAPSULATION.joinToString(prefix = JVM_ARG, separator = JVM_ARG)
private fun jvmArg(argPrefix: String) = "$JVM_ARG$argPrefix"
private val ALL_JVM_ARGS = if (GradleVersion.version(testGradleVersion) >= GradleVersion.version("7.1")) "allJvmArgs" else "jvmArgs?"
}
@BeforeEach
fun setup(testInfo: TestInfo) {
testProjectDir.resolve("gradle.properties").appendText(
"""
org.gradle.java.installations.auto-download=false
""".trimIndent(),
)
buildFile.appendText(
"""
plugins {
`java-library`
id("${ErrorPronePlugin.PLUGIN_ID}")
}
repositories {
mavenCentral()
}
dependencies {
errorprone("com.google.errorprone:error_prone_core:${if (testInfo.displayName.contains("JDK 8 VM")) MAX_JDK8_COMPATIBLE_ERRORPRONE_VERSION else errorproneVersion}")
}
tasks {
val alwaysFail by registering {
doFirst {
error("Forced failure")
}
}
val displayCompileJavaOptions by registering {
finalizedBy(alwaysFail)
doFirst {
println("ErrorProne: ${'$'}{if (compileJava.get().options.errorprone.isEnabled.getOrElse(false)) "enabled" else "disabled"}")
println("Fork: ${'$'}{compileJava.get().options.isFork}")
compileJava.get().options.forkOptions.$ALL_JVM_ARGS.forEach { arg ->
println("JVM Arg: ${'$'}arg")
}
}
}
compileJava {
finalizedBy(displayCompileJavaOptions)
options.forkOptions.jvmArgs!!.add("-XshowSettings")
}
}
""".trimIndent(),
)
testProjectDir.writeSuccessSource()
}
private fun BuildResult.assumeToolchainAvailable() {
if (task("alwaysFail") == null &&
// XXX: some Gradle versions use "request filter", others (7.6+) use "request specification"
output.contains("No compatible toolchains found for request ")
) {
assume().withMessage("No compatible toolchains found").fail()
}
}
@Test
fun `fails when configured toolchain is too old`() {
// given
// Fake a JDK 7 toolchain, the task should never actually run anyway.
// We cannot even use a real toolchain and rely on auto-download=false as that
// would fail too early (when computing task inputs, so our doFirst won't run)
buildFile.appendText(
"""
tasks.compileJava {
javaCompiler.set(object : JavaCompiler {
override fun getExecutablePath(): RegularFile = TODO()
override fun getMetadata(): JavaInstallationMetadata = object : JavaInstallationMetadata {
override fun getLanguageVersion(): JavaLanguageVersion = JavaLanguageVersion.of(7)
override fun getInstallationPath(): Directory = TODO()
override fun getVendor(): String = TODO()
${
if (GradleVersion.version(testGradleVersion).baseVersion >= GradleVersion.version("7.1")) {
"""override fun getJavaRuntimeVersion(): String = TODO()
override fun getJvmVersion(): String = TODO()
"""
} else {
""
}}
${
if (GradleVersion.version(testGradleVersion).baseVersion >= GradleVersion.version("8.0")) {
"override fun isCurrentJvm() = false"
} else {
""
}}
}
})
}
""".trimIndent(),
)
// First test that it's disabled by default
// when
testProjectDir.buildWithArgsAndFail("displayCompileJavaOptions").also { result ->
// then
assertThat(result.task(":displayCompileJavaOptions")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains("ErrorProne: disabled")
}
// Then test that it fails if we force-enable it
buildFile.appendText(
"""
tasks.compileJava { options.errorprone.isEnabled.set(true) }
""".trimIndent(),
)
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.FAILED)
assertThat(result.output).contains(ErrorPronePlugin.TOO_OLD_TOOLCHAIN_ERROR_MESSAGE)
}
}
@Test
fun `does not configure forking in non-Java 8 or 16+ VM`() {
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
""".trimIndent(),
)
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(NOT_FORKED)
assertThat(result.output).doesNotContain(JVM_ARG_BOOTCLASSPATH)
assertThat(result.output).contains(JVM_ARGS_STRONG_ENCAPSULATION)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
// Test a forked task
// given
buildFile.appendText(
"""
tasks.compileJava { options.isFork = true }
""".trimIndent(),
)
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(FORKED)
assertThat(result.output).doesNotContain(JVM_ARG_BOOTCLASSPATH)
assertThat(result.output).contains(JVM_ARGS_STRONG_ENCAPSULATION)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
}
@Test
fun `configure forking in JDK 8 VM`() {
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
""".trimIndent(),
)
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(FORKED)
assertThat(result.output).containsMatch(JVM_ARG_BOOTCLASSPATH_ERRORPRONE_JAVAC)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
// check that it doesn't mess with task avoidance
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.UP_TO_DATE)
}
}
@Test
fun `configure forking in Java 16+ VM (unless implicitly forked by incompatible toolchain)`() {
// https://github.com/gradle/gradle/issues/16857#issuecomment-931610187
assume().that(GradleVersion.version(testGradleVersion)).isAtLeast(GradleVersion.version("7.0"))
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
""".trimIndent(),
)
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(if (JavaVersion.current() == JavaVersion.VERSION_17) FORKED else NOT_FORKED)
assertThat(result.output).contains(JVM_ARGS_STRONG_ENCAPSULATION)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
// check that it doesn't mess with task avoidance
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.UP_TO_DATE)
}
}
@Test
fun `does not configure forking in Java 16+ VM if current JVM has appropriate JVM args`() {
// https://github.com/gradle/gradle/issues/16857#issuecomment-931610187
assume().that(GradleVersion.version(testGradleVersion)).isAtLeast(GradleVersion.version("7.0"))
assume().withMessage("isJava16Compatible").that(JavaVersion.current()).isAtLeast(JavaVersion.VERSION_16)
testProjectDir.resolve("gradle.properties").appendText(
"""
org.gradle.jvmargs=-Xmx512m "-XX:MaxMetaspaceSize=384m" ${ErrorPronePlugin.JVM_ARGS_STRONG_ENCAPSULATION.joinToString(" ")}
""".trimIndent(),
)
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(${JavaVersion.current().majorVersion}))
}
}
""".trimIndent(),
)
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(NOT_FORKED)
assertThat(result.output).contains(JVM_ARGS_STRONG_ENCAPSULATION)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
// check that it doesn't mess with task avoidance
// when
testProjectDir.buildWithArgsAndFail("compileJava").also { result ->
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.UP_TO_DATE)
}
}
@Test
fun `does not configure forking with JDK 8 if Error Prone is disabled`() {
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
tasks.compileJava { options.errorprone.isEnabled.set(false) }
""".trimIndent(),
)
// when
val result = testProjectDir.buildWithArgsAndFail("compileJava")
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(NOT_FORKED)
assertThat(result.output).doesNotContain(JVM_ARG_BOOTCLASSPATH)
assertThat(result.output).doesNotContain(JVM_ARGS_STRONG_ENCAPSULATION)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
@Test
fun `does not configure forking with JDK 16+ if Error Prone is disabled`() {
// https://github.com/gradle/gradle/issues/16857#issuecomment-931610187
assume().that(GradleVersion.version(testGradleVersion)).isAtLeast(GradleVersion.version("7.0"))
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
tasks.compileJava { options.errorprone.isEnabled.set(false) }
""".trimIndent(),
)
// when
val result = testProjectDir.buildWithArgsAndFail("compileJava")
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(NOT_FORKED)
assertThat(result.output).doesNotContain(JVM_ARG_BOOTCLASSPATH)
assertThat(result.output).doesNotContain(JVM_ARGS_STRONG_ENCAPSULATION)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
@Test
fun `configure bootclasspath for already-forked tasks with JDK 8 VM`() {
// given
buildFile.appendText(
"""
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
tasks.compileJava {
options.isFork = true
}
""".trimIndent(),
)
// when
val result = testProjectDir.buildWithArgsAndFail("compileJava")
// then
result.assumeToolchainAvailable()
assertThat(result.task(":compileJava")?.outcome).isEqualTo(TaskOutcome.SUCCESS)
assertThat(result.output).contains(FORKED)
assertThat(result.output).containsMatch(JVM_ARG_BOOTCLASSPATH_ERRORPRONE_JAVAC)
// Check that the configured jvm arg is preserved
assertThat(result.output).contains(jvmArg("-XshowSettings"))
}
}