org.gradle.initialization.ProjectPropertySettingBuildLoaderTest.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.initialization
import org.gradle.api.Project
import org.gradle.api.initialization.ProjectDescriptor
import org.gradle.api.internal.GradleInternal
import org.gradle.api.internal.initialization.ClassLoaderScope
import org.gradle.api.internal.plugins.ExtensionContainerInternal
import org.gradle.api.internal.project.ProjectInternal
import org.gradle.api.plugins.ExtraPropertiesExtension
import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
import org.gradle.util.GUtil
import org.junit.Rule
import spock.lang.Specification
class ProjectPropertySettingBuildLoaderTest extends Specification {
@Rule public TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider();
final BuildLoader target = Mock()
final ProjectDescriptor rootProjectDescriptor = Mock()
final ProjectDescriptor defaultProjectDescriptor = Mock()
final GradleInternal gradle = Mock()
final ProjectInternal rootProject = Mock()
final ProjectInternal childProject = Mock()
final IGradlePropertiesLoader propertiesLoader = Mock()
final File rootProjectDir = tmpDir.createDir('root')
final File childProjectDir = tmpDir.createDir('child')
final ProjectPropertySettingBuildLoader loader = new ProjectPropertySettingBuildLoader(propertiesLoader, target)
final ExtensionContainerInternal rootExtension = Mock()
final ExtraPropertiesExtension rootProperties = Mock()
final ExtensionContainerInternal childExtension = Mock()
final ExtraPropertiesExtension childProperties = Mock()
def classLoaderScope = Mock(ClassLoaderScope)
def setup() {
_ * gradle.rootProject >> rootProject
_ * rootProject.childProjects >> [child: childProject]
_ * childProject.childProjects >> [:]
_ * rootProject.projectDir >> rootProjectDir
_ * childProject.projectDir >> childProjectDir
_ * rootProject.extensions >> rootExtension
_ * childProject.extensions >> childExtension
_ * rootExtension.extraProperties >> rootProperties
_ * childExtension.extraProperties >> childProperties
}
def "delegates to build loader"() {
given:
_ * propertiesLoader.mergeProperties(!null) >> [:]
when:
loader.load(rootProjectDescriptor, defaultProjectDescriptor, gradle, classLoaderScope)
then:
1 * target.load(rootProjectDescriptor, defaultProjectDescriptor, gradle, classLoaderScope)
0 * target._
}
def "sets project properties on each project in hierarchy"() {
given:
2 * propertiesLoader.mergeProperties([:]) >> [prop: 'value']
when:
loader.load(rootProjectDescriptor, defaultProjectDescriptor, gradle, classLoaderScope)
then:
1 * rootProperties.set('prop', 'value')
1 * childProperties.set('prop', 'value')
}
def "defines extra property for unknown property"() {
given:
2 * propertiesLoader.mergeProperties([:]) >> [prop: 'value']
when:
loader.load(rootProjectDescriptor, defaultProjectDescriptor, gradle, classLoaderScope)
then:
1 * rootProperties.set('prop', 'value')
}
def "loads project properties from gradle.properties file in project dir"() {
given:
GUtil.saveProperties(new Properties([prop: 'rootValue']), new File(rootProjectDir, Project.GRADLE_PROPERTIES))
GUtil.saveProperties(new Properties([prop: 'childValue']), new File(childProjectDir, Project.GRADLE_PROPERTIES))
when:
loader.load(rootProjectDescriptor, defaultProjectDescriptor, gradle, classLoaderScope)
then:
1 * propertiesLoader.mergeProperties([prop: 'rootValue']) >> [prop: 'rootValue']
1 * propertiesLoader.mergeProperties([prop: 'childValue']) >> [prop: 'childValue']
1 * rootProperties.set('prop', 'rootValue')
1 * childProperties.set('prop', 'childValue')
}
def "defines project properties from Project class"() {
given:
2 * propertiesLoader.mergeProperties([:]) >> [version: '1.0']
when:
loader.load(rootProjectDescriptor, defaultProjectDescriptor, gradle, classLoaderScope)
then:
1 * rootProject.setVersion('1.0')
1 * childProject.setVersion('1.0')
0 * rootProperties.set(_, _)
0 * childProperties.set(_, _)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy