org.gradle.integtests.tooling.m9.GradlePropertiesToolingApiCrossVersionSpec.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.integtests.tooling.m9
import org.gradle.integtests.fixtures.AvailableJavaHomes
import org.gradle.integtests.tooling.fixture.TextUtil
import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
import org.gradle.tooling.model.build.BuildEnvironment
import org.junit.Assume
class GradlePropertiesToolingApiCrossVersionSpec extends ToolingApiSpecification {
def setup() {
//this test does not make any sense in embedded mode
//as we don't own the process
toolingApi.requireDaemons()
}
def "tooling api honours jvm args specified in gradle.properties"() {
file('build.gradle') << """
assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-Xmx62m')
assert System.getProperty('some-prop') == 'some-value'
"""
file('gradle.properties') << "org.gradle.jvmargs=-Dsome-prop=some-value -Xmx62m"
when:
BuildEnvironment env = toolingApi.withConnection { connection ->
connection.newBuild().run() //the assert
connection.getModel(BuildEnvironment.class)
}
then:
env.java.jvmArguments.contains('-Xmx62m')
}
def "tooling api honours java home specified in gradle.properties"() {
def jdk = AvailableJavaHomes.getAvailableJdk { targetDist.isToolingApiTargetJvmSupported(it.javaVersion) }
Assume.assumeNotNull(jdk)
String javaHomePath = TextUtil.escapeString(jdk.javaHome.canonicalPath)
file('build.gradle') << "assert new File(System.getProperty('java.home')).canonicalPath.startsWith('$javaHomePath')"
file('gradle.properties') << "org.gradle.java.home=$javaHomePath"
when:
BuildEnvironment env = toolingApi.withConnection { connection ->
connection.newBuild().run() //the assert
connection.getModel(BuildEnvironment.class)
}
then:
env.java.javaHome == jdk.javaHome
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy