org.gradle.integtests.tooling.fixture.ToolingApiSpecification.groovy Maven / Gradle / Ivy
/*
* 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.integtests.tooling.fixture
import groovy.transform.stc.ClosureParams
import groovy.transform.stc.SimpleType
import org.gradle.integtests.fixtures.RetryRuleUtil
import org.gradle.integtests.fixtures.build.BuildTestFile
import org.gradle.integtests.fixtures.build.BuildTestFixture
import org.gradle.integtests.fixtures.daemon.DaemonsFixture
import org.gradle.integtests.fixtures.executer.GradleDistribution
import org.gradle.integtests.fixtures.executer.IntegrationTestBuildContext
import org.gradle.integtests.fixtures.executer.UnderDevelopmentGradleDistribution
import org.gradle.test.fixtures.file.CleanupTestDirectory
import org.gradle.test.fixtures.file.TestDistributionDirectoryProvider
import org.gradle.test.fixtures.file.TestFile
import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
import org.gradle.testing.internal.util.RetryRule
import org.gradle.tooling.GradleConnectionException
import org.gradle.tooling.GradleConnector
import org.gradle.tooling.ProjectConnection
import org.gradle.util.GradleVersion
import org.gradle.util.SetSystemProperties
import org.junit.Rule
import org.junit.rules.RuleChain
import org.junit.runner.RunWith
import spock.lang.Specification
/**
* A spec that executes tests against all compatible versions of tooling API consumer and testDirectoryProvider, including the current Gradle version under test.
*
* A test class or test method can be annotated with the following annotations to specify which versions the test is compatible with:
*
*
*
* - {@link ToolingApiVersion} - specifies the tooling API consumer versions that the test is compatible with.
*
- {@link TargetGradleVersion} - specifies the tooling API testDirectoryProvider versions that the test is compatible with.
*
*/
@CleanupTestDirectory
@ToolingApiVersion('>=2.0')
@TargetGradleVersion('>=1.2')
@RunWith(ToolingApiCompatibilitySuiteRunner)
abstract class ToolingApiSpecification extends Specification {
@Rule
public final SetSystemProperties sysProperties = new SetSystemProperties()
GradleConnectionException caughtGradleConnectionException
@Rule
RetryRule retryRule = RetryRuleUtil.retryCrossVersionTestOnIssueWithReleasedGradleVersion(this)
String getReleasedGradleVersion() {
return targetDist.version.baseVersion.version
}
public final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider()
final GradleDistribution dist = new UnderDevelopmentGradleDistribution()
final IntegrationTestBuildContext buildContext = new IntegrationTestBuildContext()
private static final ThreadLocal VERSION = new ThreadLocal()
TestDistributionDirectoryProvider temporaryDistributionFolder = new TestDistributionDirectoryProvider();
final ToolingApi toolingApi = new ToolingApi(targetDist, temporaryFolder)
@Rule
public RuleChain chain = RuleChain.outerRule(temporaryFolder).around(temporaryDistributionFolder).around(toolingApi)
static void selectTargetDist(GradleDistribution version) {
VERSION.set(version)
}
static GradleDistribution getTargetDist() {
VERSION.get()
}
DaemonsFixture getDaemonsFixture() {
toolingApi.daemons
}
TestFile getProjectDir() {
temporaryFolder.testDirectory
}
TestFile getBuildFile() {
file("build.gradle")
}
TestFile getSettingsFile() {
file("settings.gradle")
}
TestFile file(Object... path) {
projectDir.file(path)
}
BuildTestFile populate(String projectName, @DelegatesTo(BuildTestFile) Closure cl) {
new BuildTestFixture(projectDir).withBuildInSubDir().populate(projectName, cl)
}
TestFile singleProjectBuildInSubfolder(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
new BuildTestFixture(projectDir).withBuildInSubDir().singleProjectBuild(projectName, cl)
}
TestFile singleProjectBuildInRootFolder(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
new BuildTestFixture(projectDir).withBuildInRootDir().singleProjectBuild(projectName, cl)
}
TestFile multiProjectBuildInSubFolder(String projectName, List subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
new BuildTestFixture(projectDir).withBuildInSubDir().multiProjectBuild(projectName, subprojects, cl)
}
void multiProjectBuildInRootFolder(String projectName, List subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
new BuildTestFixture(projectDir).withBuildInRootDir().multiProjectBuild(projectName, subprojects, cl)
}
public void withConnector(@DelegatesTo(GradleConnector) @ClosureParams(value = SimpleType, options = ["org.gradle.tooling.GradleConnector"]) Closure cl) {
toolingApi.withConnector(cl)
}
public T withConnection(GradleConnector connector, @DelegatesTo(ProjectConnection) @ClosureParams(value = SimpleType, options = ["org.gradle.tooling.ProjectConnection"]) Closure cl) {
toolingApi.withConnection(connector, cl)
}
def connector() {
toolingApi.connector()
}
public T withConnection(@DelegatesTo(ProjectConnection) @ClosureParams(value = SimpleType, options = ["org.gradle.tooling.ProjectConnection"]) Closure cl) {
toolingApi.withConnection(cl)
}
public ConfigurableOperation withModel(Class modelType, Closure cl = {}) {
withConnection {
def model = it.model(modelType)
cl(model)
new ConfigurableOperation(model).buildModel()
}
}
public ConfigurableOperation withBuild(Closure cl = {}) {
withConnection {
def build = it.newBuild()
cl(build)
def out = new ConfigurableOperation(build)
build.run()
out
}
}
/**
* Returns the set of implicit task names expected for a non-root project for the target Gradle version.
*/
Set getImplicitTasks() {
if (targetVersion > GradleVersion.version("3.1")) {
return ['buildEnvironment', 'components', 'dependencies', 'dependencyInsight', 'dependentComponents', 'help', 'projects', 'properties', 'tasks', 'model']
} else if (GradleVersion.version(targetDist.version.baseVersion.version) >= GradleVersion.version("2.10")) {
return ['buildEnvironment', 'components', 'dependencies', 'dependencyInsight', 'help', 'projects', 'properties', 'tasks', 'model']
} else if (GradleVersion.version(targetDist.version.baseVersion.version) >= GradleVersion.version("2.4")) {
return ['components', 'dependencies', 'dependencyInsight', 'help', 'projects', 'properties', 'tasks', 'model']
} else if (GradleVersion.version(targetDist.version.baseVersion.version) >= GradleVersion.version("2.1")) {
return ['components', 'dependencies', 'dependencyInsight', 'help', 'projects', 'properties', 'tasks']
} else {
return ['dependencies', 'dependencyInsight', 'help', 'projects', 'properties', 'tasks']
}
}
/**
* Returns the set of implicit selector names expected for a non-root project for the target Gradle version.
*
* Note that in some versions the handling of implicit selectors was broken, so this method may return a different value
* to {@link #getImplicitTasks()}.
*/
Set getImplicitSelectors() {
if (targetVersion <= GradleVersion.version("2.0")) {
// Implicit tasks were ignored
return []
}
return getImplicitTasks()
}
/**
* Returns the set of implicit task names expected for a root project for the target Gradle version.
*/
Set getRootProjectImplicitTasks() {
if (targetVersion == GradleVersion.version("1.6")) {
return implicitTasks + ['setupBuild']
}
return implicitTasks + ['init', 'wrapper']
}
/**
* Returns the set of implicit selector names expected for a root project for the target Gradle version.
*
* Note that in some versions the handling of implicit selectors was broken, so this method may return a different value
* to {@link #getRootProjectImplicitTasks()}.
*/
Set getRootProjectImplicitSelectors() {
if (targetVersion == GradleVersion.version("1.6")) {
// Implicit tasks were ignored, and setupBuild was added as a regular task
return ['setupBuild']
}
if (targetVersion <= GradleVersion.version("2.0")) {
// Implicit tasks were ignored
return []
}
return rootProjectImplicitTasks
}
/**
* Returns the set of implicit tasks returned by GradleProject.getTasks()
*
* Note that in some versions the handling of implicit tasks was broken, so this method may return a different value
* to {@link #getRootProjectImplicitTasks()}.
*/
Set getRootProjectImplicitTasksForGradleProjectModel() {
if (targetVersion == GradleVersion.version("1.6")) {
// Implicit tasks were ignored, and setupBuild was added as a regular task
return ['setupBuild']
}
targetVersion < GradleVersion.version("2.3") ? [] : rootProjectImplicitTasks
}
public T loadToolingModel(Class modelClass) {
withConnection { connection -> connection.getModel(modelClass) }
}
protected static GradleVersion getTargetVersion() {
GradleVersion.version(targetDist.version.baseVersion.version)
}
}