org.gradle.api.ApplyPluginIntegSpec.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 2013 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.api
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.executer.IntegrationTestBuildContext
import org.gradle.integtests.fixtures.executer.UnexpectedBuildFailure
import org.gradle.testfixtures.ProjectBuilder
import org.gradle.util.TextUtil
import org.gradle.util.UsesNativeServices
import spock.lang.FailsWith
import spock.lang.Issue
// TODO: This needs a better home - Possibly in the test kit package in the future
@UsesNativeServices
class ApplyPluginIntegSpec extends AbstractIntegrationSpec {
def testProjectPath
def gradleUserHome
def buildContext = new IntegrationTestBuildContext()
def setup() {
testProjectPath = TextUtil.normaliseFileSeparators(file("test-project-dir").absolutePath)
gradleUserHome = TextUtil.normaliseFileSeparators(buildContext.gradleUserHomeDir.absolutePath)
}
@Issue("GRADLE-2358")
@FailsWith(UnexpectedBuildFailure) // Test is currently failing
def "can reference plugin by id in unit test"() {
given:
file("src/main/groovy/org/acme/TestPlugin.groovy") << """
package com.acme
import org.gradle.api.*
class TestPlugin implements Plugin {
void apply(Project project) {
println "testplugin applied"
}
}
"""
file("src/main/resources/META-INF/gradle-plugins/testplugin.properties") << "implementation-class=org.acme.TestPlugin"
file("src/test/groovy/org/acme/TestPluginSpec.groovy") << """
import spock.lang.Specification
import ${ProjectBuilder.name}
import ${Project.name}
import com.acme.TestPlugin
class TestPluginSpec extends Specification {
def "can apply plugin by id"() {
when:
def projectDir = new File('${testProjectPath}')
Project project = ProjectBuilder.builder().withProjectDir(projectDir).build()
project.apply(plugin: "testplugin")
then:
project.plugins.withType(TestPlugin).size() == 1
}
}
"""
and:
buildFile << """
apply plugin: 'groovy'
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.spockframework:spock-core:1.0-groovy-2.4', {
exclude module: 'groovy-all'
}
}
"""
expect:
succeeds("test")
}
@Issue("GRADLE-3068")
def "can use gradleApi in test"() {
requireGradleDistribution()
given:
file("src/test/groovy/org/acme/ProjectBuilderTest.groovy") << """
package org.acme
import org.gradle.api.Project
import org.gradle.testfixtures.ProjectBuilder
import org.junit.Test
class ProjectBuilderTest {
@Test
void "can evaluate ProjectBuilder"() {
def projectDir = new File('${testProjectPath}')
def userHome = new File('${gradleUserHome}')
def project = ProjectBuilder.builder()
.withProjectDir(projectDir)
.withGradleUserHomeDir(userHome)
.build()
project.apply(plugin: 'groovy')
project.evaluate()
}
}
"""
and:
buildFile << """
apply plugin: 'groovy'
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
testCompile 'junit:junit:4.12'
}
compileTestGroovy {
options.forkOptions.jvmArgs << '-Dorg.gradle.native.dir=' + System.getProperty('org.gradle.native.dir')
}
test {
systemProperties = ['org.gradle.native.dir' : System.getProperty('org.gradle.native.dir')]
}
"""
expect:
executer.withArgument("--info")
succeeds("test")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy