org.gradle.groovy.GroovyBasePluginIntegrationTest.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 2012 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.groovy
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
class GroovyBasePluginIntegrationTest extends AbstractIntegrationSpec {
def "defaults Groovy class path to inferred Groovy dependency"() {
file("build.gradle") << """
apply plugin: "groovy-base"
sourceSets {
custom
}
repositories {
mavenCentral()
}
dependencies {
customCompile "$dependency"
}
task groovydoc(type: Groovydoc) {
classpath = sourceSets.custom.runtimeClasspath
}
task verify {
doLast {
assert compileCustomGroovy.groovyClasspath.files.any { it.name == "$jarFile" }
assert groovydoc.groovyClasspath.files.any { it.name == "$jarFile" }
}
}
"""
expect:
succeeds("verify")
where:
dependency | jarFile
"org.codehaus.groovy:groovy-all:2.4.10" | "groovy-all-2.4.10.jar"
"org.codehaus.groovy:groovy:2.4.10" | "groovy-2.4.10.jar"
"org.codehaus.groovy:groovy-all:2.4.10:indy" | "groovy-all-2.4.10-indy.jar"
}
def "only resolves source class path feeding into inferred Groovy class path if/when the latter is actually used (but not during autowiring)"() {
file("build.gradle") << """
apply plugin: "groovy-base"
sourceSets {
custom
}
repositories {
mavenCentral()
}
dependencies {
customCompile "org.codehaus.groovy:groovy-all:2.4.10"
}
task groovydoc(type: Groovydoc) {
classpath = sourceSets.custom.runtimeClasspath
}
task verify {
doLast {
assert configurations.customCompile.state.toString() == "UNRESOLVED"
assert configurations.customRuntime.state.toString() == "UNRESOLVED"
}
}
"""
expect:
succeeds("verify")
}
def "not specifying a groovy runtime produces decent error message"() {
given:
buildFile << """
apply plugin: "groovy-base"
sourceSets {
main {}
}
repositories {
mavenCentral()
}
dependencies {
compile "com.google.guava:guava:11.0.2"
}
"""
file("src/main/groovy/Thing.groovy") << """
class Thing {}
"""
when:
fails "compileGroovy"
then:
failure.assertHasDescription "Cannot infer Groovy class path because no Groovy Jar was found on class path: configuration ':compileClasspath'"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy