org.gradle.internal.classpath.BuildScriptClasspathInstrumentationIntegrationTest.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 2023 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.internal.classpath
import org.gradle.api.internal.artifacts.ivyservice.CacheLayout
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.cache.FileAccessTimeJournalFixture
import org.gradle.integtests.fixtures.versions.KotlinGradlePluginVersions
import org.gradle.test.fixtures.file.TestFile
import java.nio.file.Files
import java.util.regex.Pattern
import java.util.stream.Collectors
import static org.gradle.util.internal.TextUtil.normaliseFileSeparators
class BuildScriptClasspathInstrumentationIntegrationTest extends AbstractIntegrationSpec implements FileAccessTimeJournalFixture {
private static final String KOTLIN_VERSION = new KotlinGradlePluginVersions().latestsStable.last()
def "buildSrc and included builds should be cached in global cache"() {
given:
// We test content in the global cache
requireOwnGradleUserHomeDir()
withBuildSrc()
withIncludedBuild()
buildFile << """
buildscript {
dependencies {
classpath "org.test:included"
}
}
"""
when:
run("tasks")
then:
gradleUserHomeOutput("original/buildSrc.jar").exists()
gradleUserHomeOutput("instrumented/buildSrc.jar").exists()
gradleUserHomeOutput("original/included-1.0.jar").exists()
gradleUserHomeOutput("instrumented/included-1.0.jar").exists()
}
def "buildSrc and included build should be just instrumented and not upgraded"() {
given:
withBuildSrc()
withIncludedBuild()
buildFile << """
buildscript {
dependencies {
classpath "org.test:included"
}
}
"""
when:
run("tasks", "--info")
then:
allTransformsFor("buildSrc.jar") == ["ProjectDependencyInstrumentingArtifactTransform"]
allTransformsFor("included-1.0.jar") == ["ProjectDependencyInstrumentingArtifactTransform"]
}
def "external dependencies should not be copied to the global artifact transform cache"() {
given:
// We test content in the global cache
requireOwnGradleUserHomeDir()
buildFile << """
buildscript {
${mavenCentralRepository()}
dependencies {
classpath "org.apache.commons:commons-lang3:3.8.1"
}
}
"""
when:
run("tasks", "--info")
then:
allTransformsFor("commons-lang3-3.8.1.jar") == ["ExternalDependencyInstrumentingArtifactTransform"]
gradleUserHomeOutputs("original/commons-lang3-3.8.1.jar").isEmpty()
gradleUserHomeOutput("instrumented/commons-lang3-3.8.1.jar").exists()
}
def "directories should be instrumented"() {
given:
withIncludedBuild("first")
withIncludedBuild("second")
buildFile << """
buildscript {
dependencies {
classpath(files("./first/build/classes/java/main"))
classpath(files("./second/build/classes/java/main"))
}
}
"""
when:
executer.inDirectory(file("first")).withTasks("classes").run()
executer.inDirectory(file("second")).withTasks("classes").run()
run("tasks", "--info")
then:
allTransformsFor("main") == [
// Only the folder name is reported, so we cannot distinguish first and second
"ExternalDependencyInstrumentingArtifactTransform",
"ExternalDependencyInstrumentingArtifactTransform"
]
}
def withBuildSrc() {
file("buildSrc/src/main/java/Thing.java") << "class Thing { }"
file("buildSrc/settings.gradle") << "\n"
}
def withIncludedBuild(String folderName = "included") {
file("$folderName/src/main/java/Thing.java") << "class Thing {}"
file("$folderName/build.gradle") << """
plugins {
id("java-library")
}
group = "org.test"
version = "1.0"
"""
file("$folderName/settings.gradle") << "rootProject.name = 'included'"
settingsFile << """
includeBuild("./$folderName")
"""
}
List allTransformsFor(String fileName) {
List transforms = []
def pattern = Pattern.compile("Transforming " + fileName + ".* with (.*)")
for (def line : output.readLines()) {
def matcher = pattern.matcher(line)
if (matcher.matches()) {
transforms.add(matcher.group(1))
}
}
return transforms
}
TestFile gradleUserHomeOutput(String outputEndsWith, File cacheDir = getCacheDir()) {
findOutput(outputEndsWith, cacheDir)
}
TestFile findOutput(String outputEndsWith, File cacheDir) {
def dirs = findOutputs(outputEndsWith, cacheDir)
if (dirs.size() == 1) {
return dirs.first()
}
throw new AssertionError("Could not find exactly one output directory for $outputEndsWith: $dirs")
}
Set gradleUserHomeOutputs(String outputEndsWith, File cacheDir = getCacheDir()) {
findOutputs(outputEndsWith, cacheDir)
}
Set findOutputs(String outputEndsWith, File cacheDir) {
return Files.find(cacheDir.toPath(), 4, (path, attributes) -> normaliseFileSeparators(path.toString()).endsWith(outputEndsWith))
.map { new TestFile(it.toFile()) }
.collect(Collectors.toSet())
}
TestFile getCacheDir() {
return getUserHomeCacheDir().file(CacheLayout.TRANSFORMS.getKey())
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy