org.gradle.initialization.PropertiesLoaderIntegrationTest.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 2016 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.initialization
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
import org.gradle.test.precondition.Requires
import org.gradle.test.preconditions.IntegTestPreconditions
import org.gradle.util.SetSystemProperties
import org.junit.Rule
import spock.lang.Issue
import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
class PropertiesLoaderIntegrationTest extends AbstractIntegrationSpec {
@Rule SetSystemProperties systemProperties = new SetSystemProperties()
@ToBeFixedForConfigurationCache(skip = INVESTIGATE)
def "build property set on command line takes precedence over properties file"() {
when:
file('gradle.properties') << """
org.gradle.configureondemand=true
"""
buildFile << """
task assertCodEnabled {
doLast {
assert gradle.startParameter.configureOnDemand
}
}
task assertCodDisabled {
doLast {
assert !gradle.startParameter.configureOnDemand
}
}
"""
then:
succeeds ':assertCodEnabled'
when:
args '-Dorg.gradle.configureondemand=false'
then:
succeeds ':assertCodDisabled'
}
def "system property set on command line takes precedence over properties file"() {
given:
file('gradle.properties') << """
systemProp.mySystemProp=properties file
"""
buildFile << """
task printSystemProp {
doLast {
println "mySystemProp=\${System.getProperty('mySystemProp')}"
}
}
"""
when:
succeeds ':printSystemProp'
then:
outputContains('mySystemProp=properties file')
when:
args '-DmySystemProp=commandline'
succeeds ':printSystemProp'
then:
outputContains('mySystemProp=commandline')
}
@Requires(IntegTestPreconditions.NotEmbeddedExecutor) // needs to run Gradle from command line
@ToBeFixedForConfigurationCache(skip = INVESTIGATE)
def "build property set on command line takes precedence over jvm args"() {
when:
executer.withEnvironmentVars 'GRADLE_OPTS': '-Dorg.gradle.configureondemand=true'
buildFile << """
task assertCodEnabled {
doLast {
assert gradle.startParameter.configureOnDemand
}
}
task assertCodDisabled {
doLast {
assert !gradle.startParameter.configureOnDemand
}
}
"""
then:
succeeds ':assertCodEnabled'
when:
args '-Dorg.gradle.configureondemand=false'
then:
succeeds ':assertCodDisabled'
}
@Requires(IntegTestPreconditions.NotEmbeddedExecutor) // needs to run Gradle from command line
def "system property set on command line takes precedence over jvm args"() {
given:
executer.withEnvironmentVars 'GRADLE_OPTS': '-DmySystemProp=jvmarg'
buildFile << """
task printSystemProp {
doLast {
println "mySystemProp=\${System.getProperty('mySystemProp')}"
}
}
"""
when:
succeeds ':printSystemProp'
then:
outputContains('mySystemProp=jvmarg')
when:
args '-DmySystemProp=commandline'
succeeds ':printSystemProp'
then:
outputContains('mySystemProp=commandline')
}
def "can always change buildDir in properties file"() {
when:
file('gradle.properties') << """
buildDir=otherBuild
"""
then:
succeeds ':help'
}
def "Gradle properties can be derived from environment variables"() {
given:
buildFile << """
task printProperty() {
def myProp = providers.gradleProperty('myProp')
doLast {
println "myProp=\${myProp.get()}"
}
}
"""
when:
executer.withEnvironmentVars(ORG_GRADLE_PROJECT_myProp: 'fromEnv')
then:
succeeds 'printProperty'
and:
outputContains("myProp=fromEnv")
when:
executer.withEnvironmentVars(ORG_GRADLE_PROJECT_myProp: 'fromEnv2')
then:
succeeds 'printProperty'
and:
outputContains("myProp=fromEnv2")
}
@Requires(IntegTestPreconditions.NotEmbeddedExecutor)
def "properties can be distributed as part of a custom Gradle installation"() {
given:
requireIsolatedGradleDistribution()
when:
distribution.gradleHomeDir.file('gradle.properties') << 'systemProp.mySystemProp=properties file'
buildFile << """
task printSystemProp {
doLast {
println "mySystemProp=\${System.getProperty('mySystemProp')}"
}
}
"""
succeeds ':printSystemProp'
then:
outputContains('mySystemProp=properties file')
cleanup:
executer.withArguments("--stop", "--info").run()
}
@Issue("https://github.com/gradle/gradle/issues/12122")
def "build property with invalid property name ('#property') does not fail the build"() {
given:
file('gradle.properties') << """
${property}
"""
expect:
succeeds 'help'
where:
property << ["=", "==", "===", ":", "::", ":::", ":=:", "=:="]
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy