org.gradle.configurationcache.isolated.IsolatedProjectsToolingApiIModelQueryIntegrationTest.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 2021 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.configurationcache.isolated
import org.gradle.configurationcache.fixtures.SomeToolingModel
import org.gradle.tooling.model.GradleProject
import org.gradle.tooling.model.gradle.GradleBuild
class IsolatedProjectsToolingApiIModelQueryIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
def setup() {
settingsFile << """
rootProject.name = 'root'
"""
}
def "caches creation of custom tooling model"() {
given:
withSomeToolingModelBuilderPluginInBuildSrc()
settingsFile << """
include("a")
include("b")
"""
buildFile << """
plugins.apply(my.MyPlugin)
"""
when:
executer.withArguments(ENABLE_CLI)
def model = fetchModel()
then:
model.message == "It works from project :"
and:
fixture.assertStateStored {
projectConfigured(":buildSrc")
modelsCreated(":")
}
outputContains("creating model for root project 'root'")
when:
executer.withArguments(ENABLE_CLI)
def model2 = fetchModel()
then:
model2.message == "It works from project :"
and:
fixture.assertStateLoaded()
outputDoesNotContain("creating model")
when:
buildFile << """
myExtension.message = 'this is the root project'
"""
executer.withArguments(ENABLE_CLI)
def model3 = fetchModel()
then:
model3.message == "this is the root project"
and:
fixture.assertStateUpdated {
fileChanged("build.gradle")
projectConfigured(":buildSrc")
modelsCreated(":")
}
outputContains("creating model for root project 'root'")
when:
executer.withArguments(ENABLE_CLI)
def model4 = fetchModel()
then:
model4.message == "this is the root project"
and:
fixture.assertStateLoaded()
}
def "can ignore problems and cache custom model"() {
given:
settingsFile << """
include('a')
include('b')
"""
withSomeToolingModelBuilderPluginInBuildSrc()
buildFile << """
allprojects {
plugins.apply('java-library')
}
plugins.apply(my.MyPlugin)
"""
when:
executer.withArguments(ENABLE_CLI, WARN_PROBLEMS_CLI_OPT)
def model = fetchModel()
then:
model.message == "It works from project :"
fixture.assertStateStoredWithProblems {
projectConfigured(":buildSrc")
modelsCreated(":")
problem("Build file 'build.gradle': Cannot access project ':a' from project ':'")
problem("Build file 'build.gradle': Cannot access project ':b' from project ':'")
}
when:
executer.withArguments(ENABLE_CLI, WARN_PROBLEMS_CLI_OPT)
def model2 = fetchModel()
then:
model2.message == "It works from project :"
fixture.assertStateLoaded()
}
def "caches calculation of GradleBuild model"() {
given:
settingsFile << """
include("a")
include("b")
println("configuring build")
"""
buildFile << """
throw new RuntimeException("should not be called")
"""
when:
executer.withArguments(ENABLE_CLI)
def model = fetchModel(GradleBuild)
then:
model.rootProject.name == "root"
model.projects.size() == 3
model.projects[0].name == "root"
model.projects[1].name == "a"
model.projects[2].name == "b"
and:
fixture.assertStateStored {
buildModelCreated()
}
outputContains("configuring build")
when:
executer.withArguments(ENABLE_CLI)
def model2 = fetchModel(GradleBuild)
then:
model2.rootProject.name == "root"
model2.projects.size() == 3
model2.projects[0].name == "root"
model2.projects[1].name == "a"
model2.projects[2].name == "b"
and:
fixture.assertStateLoaded()
outputDoesNotContain("configuring build")
}
def "can query and cache different models"() {
given:
withSomeToolingModelBuilderPluginInBuildSrc()
buildFile << """
plugins.apply(my.MyPlugin)
println("configuring build")
"""
when:
executer.withArguments(ENABLE_CLI)
def model = fetchModel()
then:
model.message == "It works from project :"
and:
fixture.assertStateStored {
projectConfigured(":buildSrc")
modelsCreated(":")
}
outputContains("configuring build")
outputContains("creating model for root project 'root'")
when:
executer.withArguments(ENABLE_CLI)
def model2 = fetchModel()
then:
model2.message == "It works from project :"
and:
fixture.assertStateLoaded()
outputDoesNotContain("configuring build")
outputDoesNotContain("creating model")
when:
executer.withArguments(ENABLE_CLI)
def model3 = fetchModel(GradleProject)
then:
model3 instanceof GradleProject
and:
fixture.assertStateStored {
projectConfigured(":buildSrc")
modelsCreated(":")
}
outputContains("configuring build")
outputDoesNotContain("creating model")
when:
executer.withArguments(ENABLE_CLI)
def model4 = fetchModel(GradleProject)
then:
model4 instanceof GradleProject
and:
fixture.assertStateLoaded()
outputDoesNotContain("configuring build")
outputDoesNotContain("creating model")
when:
executer.withArguments(ENABLE_CLI)
def model5 = fetchModel()
then:
model5 instanceof SomeToolingModel
model5.message == "It works from project :"
and:
fixture.assertStateLoaded()
outputDoesNotContain("configuring build")
outputDoesNotContain("creating model")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy