Skip to content

Commit ec188b8

Browse files
authored
[Gradle] Fix and simplify disabling assertions in test tasks (elastic#123038) (elastic#123969)
Fixes misleading assertion configuration for test tasks from the command line. We support the following command line args: 1. `-Dtests.jvm.argline=-disableassertions` 2. `-Dtests.jvm.argline=-da` 3. `-Dtests.asserts=false`
1 parent 7e46413 commit ec188b8

File tree

2 files changed

+57
-6
lines changed

2 files changed

+57
-6
lines changed

build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/ElasticsearchTestBasePluginFuncTest.groovy

+49-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,55 @@ import org.gradle.testkit.runner.TaskOutcome
1414

1515
class ElasticsearchTestBasePluginFuncTest extends AbstractGradleFuncTest {
1616

17-
def setup() {
18-
// see https://github.com/gradle/gradle/issues/24172
19-
configurationCacheCompatible = false
17+
def "can disable assertions via cmdline param"() {
18+
given:
19+
file("src/test/java/acme/SomeTests.java").text = """
20+
public class SomeTests {
21+
@org.junit.Test
22+
public void testAsserts() {
23+
assert false;
24+
}
25+
}
26+
"""
27+
buildFile.text = """
28+
plugins {
29+
id 'java'
30+
id 'elasticsearch.test-base'
31+
}
32+
33+
repositories {
34+
mavenCentral()
35+
}
36+
37+
dependencies {
38+
testImplementation 'junit:junit:4.12'
39+
}
40+
"""
41+
42+
when:
43+
def result = gradleRunner("test").buildAndFail()
44+
then:
45+
result.task(':test').outcome == TaskOutcome.FAILED
46+
47+
when:
48+
result = gradleRunner("test", "-Dtests.asserts=false").build()
49+
then:
50+
result.task(':test').outcome == TaskOutcome.SUCCESS
51+
52+
when:
53+
result = gradleRunner("test", "-Dtests.jvm.argline=-da").build()
54+
then:
55+
result.task(':test').outcome == TaskOutcome.SUCCESS
56+
57+
when:
58+
result = gradleRunner("test", "-Dtests.jvm.argline=-disableassertions").build()
59+
then:
60+
result.task(':test').outcome == TaskOutcome.SUCCESS
61+
62+
when:
63+
result = gradleRunner("test", "-Dtests.asserts=false", "-Dtests.jvm.argline=-da").build()
64+
then:
65+
result.task(':test').outcome == TaskOutcome.SUCCESS
2066
}
2167

2268
def "can configure nonInputProperties for test tasks"() {

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,15 @@ public void execute(Task t) {
137137
test.jvmArgs((Object[]) argline.split(" "));
138138
}
139139

140-
if (Util.getBooleanProperty("tests.asserts", true)) {
141-
test.jvmArgs("-ea", "-esa");
140+
// Check if "tests.asserts" is false or "tests.jvm.argline" contains the "-da" flag.
141+
boolean disableAssertions = Util.getBooleanProperty("tests.asserts", true) == false
142+
|| (argline != null && (argline.contains("-da")))
143+
|| (argline != null && (argline.contains("-disableassertions")));
144+
145+
if (disableAssertions) {
146+
System.out.println("disable assertions");
147+
test.setEnableAssertions(false);
142148
}
143-
144149
Map<String, String> sysprops = Map.of(
145150
"java.awt.headless",
146151
"true",

0 commit comments

Comments
 (0)