org.gradle.plugin.use.PluginUseClassLoadingIntegrationSpec.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 2014 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.plugin.use
import org.gradle.api.Project
import org.gradle.api.specs.AndSpec
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.plugin.use.resolve.service.PluginResolutionServiceTestServer
import org.gradle.test.fixtures.file.LeaksFileHandles
import org.gradle.test.fixtures.plugin.PluginBuilder
import org.junit.Rule
import spock.lang.Issue
@LeaksFileHandles
class PluginUseClassLoadingIntegrationSpec extends AbstractIntegrationSpec {
public static final String PLUGIN_ID = "org.myplugin"
public static final String VERSION = "1.0"
public static final String GROUP = "my"
public static final String ARTIFACT = "plugin"
public static final String USE = "plugins { id '$PLUGIN_ID' version '$VERSION' }"
def pluginBuilder = new PluginBuilder(file(ARTIFACT))
@Rule
PluginResolutionServiceTestServer resolutionService = new PluginResolutionServiceTestServer(executer, mavenRepo)
def setup() {
executer.requireGradleDistribution() // need accurate classloading
executer.requireOwnGradleUserHomeDir()
resolutionService.start()
}
def "plugin is available via plugins container"() {
publishPlugin()
buildScript """
$USE
task verify {
doLast {
def foundByClass = false
plugins.withType(pluginClass) { foundByClass = true }
def foundById = false
plugins.withId("$PLUGIN_ID") { foundById = true }
assert foundByClass
assert foundById
}
}
"""
expect:
succeeds("verify")
}
def "plugin class isn't visible to build script"() {
publishPlugin()
buildScript """
$USE
task verify {
doLast {
try {
getClass().getClassLoader().loadClass("org.gradle.test.TestPlugin")
throw new AssertionError("plugin class *is* visible to build script")
} catch (ClassNotFoundException expected) {}
}
}
"""
expect:
succeeds("verify")
}
def "plugin can access Gradle API classes"() {
publishPlugin """
assert project instanceof ${Project.name}; new ${AndSpec.name}()
project.task("verify")
"""
buildScript USE
expect:
succeeds("verify")
}
def "plugin cannot access core Gradle plugin classes"() {
publishPlugin("""
try {
getClass().getClassLoader().loadClass('org.gradle.api.plugins.JavaPlugin')
assert false : "should have failed to load java plugin"
} catch (ClassNotFoundException ignore) {
}
project.task("verify")
""")
buildScript USE
expect:
succeeds("verify")
}
def "plugin cannot access Gradle implementation classes"() {
publishPlugin("""
def implClassName = 'com.google.common.collect.Multimap'
project.getClass().getClassLoader().loadClass(implClassName)
try {
getClass().getClassLoader().loadClass(implClassName)
assert false : "should have failed to load gradle implementation class: \$implClassName"
} catch (ClassNotFoundException ignore) {
}
project.task("verify")
""")
buildScript USE
expect:
succeeds("verify")
}
def "plugin classes are reused if possible"() {
given:
publishPlugin()
settingsFile << """
include "p1"
include "p2"
"""
when:
file("p1/build.gradle") << USE
file("p2/build.gradle") << USE
buildScript """
evaluationDependsOnChildren()
task verify {
doLast {
project(":p1").pluginClass.is(project(":p2").pluginClass)
}
}
"""
then:
succeeds "verify"
}
@Issue("GRADLE-3503")
def "Context classloader contains plugin classpath during application"() {
publishPlugin("""
def className = getClass().getName()
Thread.currentThread().getContextClassLoader().loadClass(className)
project.task("verify")
""")
buildScript USE
expect:
succeeds("verify")
}
void publishPlugin() {
publishPlugin("project.ext.pluginApplied = true; project.ext.pluginClass = getClass()")
}
void publishPlugin(String impl) {
resolutionService.expectPluginQuery(PLUGIN_ID, VERSION, GROUP, ARTIFACT, VERSION)
def module = resolutionService.m2repo.module(GROUP, ARTIFACT, VERSION)
module.allowAll()
pluginBuilder.addPlugin(impl, PLUGIN_ID)
pluginBuilder.publishTo(executer, module.artifactFile)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy