org.gradle.api.plugins.antlr.AntlrPluginTest.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.api.plugins.antlr
import org.gradle.api.Action
import org.gradle.test.fixtures.AbstractProjectBuilderSpec
import static org.gradle.api.reflect.TypeOf.typeOf
class AntlrPluginTest extends AbstractProjectBuilderSpec {
def addsAntlrPropertiesToEachSourceSet() {
when:
project.pluginManager.apply(AntlrPlugin)
then:
def main = project.sourceSets.main
main.antlr.srcDirs == [project.file('src/main/antlr')] as Set
def test = project.sourceSets.test
test.antlr.srcDirs == [project.file('src/test/antlr')] as Set
when:
project.sourceSets.create('custom')
then:
def custom = project.sourceSets.custom
custom.antlr.srcDirs == [project.file('src/custom/antlr')] as Set
}
def "allows configuration of antlr directories on source sets"() {
when:
project.pluginManager.apply(AntlrPlugin)
and: 'using Closure'
def main = project.sourceSets.main
main.antlr { sourceSet ->
sourceSet.srcDirs = [project.file('src/main/antlr-custom')]
}
and: 'using Action'
def test = project.sourceSets.test
test.antlr({ sourceSet ->
sourceSet.srcDirs = [project.file('src/test/antlr-custom')]
} as Action)
then:
main.antlr.srcDirs == [project.file('src/main/antlr-custom')] as Set
test.antlr.srcDirs == [project.file('src/test/antlr-custom')] as Set
}
def addsTaskForEachSourceSet() {
when:
project.pluginManager.apply(AntlrPlugin)
then:
def main = project.tasks.generateGrammarSource
main instanceof AntlrTask
project.tasks.compileJava.taskDependencies.getDependencies(null).contains(main)
def test = project.tasks.generateTestGrammarSource
test instanceof AntlrTask
project.tasks.compileTestJava.taskDependencies.getDependencies(null).contains(test)
when:
project.sourceSets.create('custom')
then:
def custom = project.tasks.generateCustomGrammarSource
custom instanceof AntlrTask
project.tasks.compileCustomJava.taskDependencies.getDependencies(null).contains(custom)
}
def 'source set convention exposes its public type'() {
when:
project.pluginManager.apply(AntlrPlugin)
then:
def main = project.sourceSets.main
main.convention.plugins['antlr'].publicType == typeOf(AntlrSourceVirtualDirectory)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy