org.gradle.integtests.CustomPluginIntegrationTest.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 2010 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
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.executer.ArtifactBuilder
public class CustomPluginIntegrationTest extends AbstractIntegrationSpec {
public void "can reference plugin in buildSrc by id"() {
given:
file('buildSrc/src/main/java/CustomPlugin.java') << '''
import org.gradle.api.*;
import org.gradle.api.internal.plugins.DslObject;
public class CustomPlugin implements Plugin {
public void apply(Project p) {
new DslObject(p).getExtensions().getExtraProperties().set("prop", "value");
}
}
'''
file('buildSrc/src/main/resources/META-INF/gradle-plugins/custom.properties') << '''
implementation-class=CustomPlugin
'''
file('build.gradle') << '''
apply plugin: 'custom'
assert 'value' == prop
task test
'''
expect:
succeeds('test')
}
public void "can reference plugin in external jar by id"() {
given:
ArtifactBuilder builder = artifactBuilder()
builder.sourceFile('CustomPlugin.java') << '''
import org.gradle.api.*;
import org.gradle.api.internal.plugins.DslObject;
public class CustomPlugin implements Plugin {
public void apply(Project p) {
new DslObject(p).getExtensions().getExtraProperties().set("prop", "value");
}
}
'''
builder.resourceFile('META-INF/gradle-plugins/custom.properties') << '''
implementation-class=CustomPlugin
'''
builder.buildJar(file('external.jar'))
and:
file('build.gradle') << '''
buildscript {
dependencies {
classpath files('external.jar')
}
}
apply plugin: 'custom'
assert 'value' == prop
task test
'''
expect:
succeeds('test')
}
public void "loads plugin in correct environment"() {
given:
def implClassName = 'com.google.common.collect.Multimap'
ArtifactBuilder builder = artifactBuilder()
builder.sourceFile('CustomPlugin.groovy') << """
import org.gradle.api.*
public class CustomPlugin implements Plugin {
public void apply(Project p) {
Project.class.classLoader.loadClass('${implClassName}')
def cl
try {
cl = getClass().classLoader
cl.loadClass('${implClassName}')
assert false: 'should fail'
} catch (ClassNotFoundException e) {
// expected
} finally {
if (cl instanceof URLClassLoader) {
cl.close()
}
}
assert Thread.currentThread().contextClassLoader == getClass().classLoader
p.task('test')
}
}
"""
builder.resourceFile('META-INF/gradle-plugins/custom.properties') << '''
implementation-class=CustomPlugin
'''
builder.buildJar(file('external.jar'))
and:
file('build.gradle') << '''
buildscript {
dependencies {
classpath files('external.jar')
}
}
task test
'''
expect:
succeeds('test')
}
def "can integration test plugin"() {
given:
file('src/main/groovy/CustomPlugin.groovy') << """
import org.gradle.api.Project
import org.gradle.api.Plugin
class CustomPlugin implements Plugin {
void apply(Project project) {
project.ext.custom = 'value'
}
}
"""
file("src/main/resources/META-INF/gradle-plugins/custom.properties") << """
implementation-class=CustomPlugin
"""
file('src/test/groovy/CustomPluginTest.groovy') << """
import org.junit.Test
import org.gradle.testfixtures.ProjectBuilder
class CustomPluginTest {
@Test
public void test() {
def project = ProjectBuilder.builder().build()
project.apply plugin: 'custom'
assert project.custom == 'value'
}
}
"""
buildFile << """
apply plugin: 'groovy'
repositories { mavenCentral() }
dependencies {
compile gradleApi()
compile localGroovy()
testCompile 'junit:junit:4.12'
}
"""
expect:
succeeds('test')
}
def "can use java plugin from custom plugin and its integration tests"() {
given:
file('src/main/groovy/CustomPlugin.groovy') << """
import org.gradle.api.Project
import org.gradle.api.Plugin
class CustomPlugin implements Plugin {
void apply(Project project) {
project.apply plugin: 'java'
}
}
"""
file('src/test/groovy/CustomPluginTest.groovy') << """
import org.junit.Test
import org.gradle.testfixtures.ProjectBuilder
class CustomPluginTest {
@Test
public void test() {
def project = ProjectBuilder.builder().build()
project.apply plugin: 'java'
assert project.sourceSets
}
}
"""
buildFile << """
apply plugin: 'groovy'
repositories { mavenCentral() }
dependencies {
compile gradleApi()
compile localGroovy()
testCompile 'junit:junit:4.12'
}
"""
expect:
succeeds('test')
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy