org.gradle.api.tasks.compile.AbstractCompileTest.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.tasks.compile
import org.gradle.api.internal.file.collections.SimpleFileCollection
import org.gradle.api.tasks.AbstractConventionTaskTest
import org.gradle.util.WrapUtil
public abstract class AbstractCompileTest extends AbstractConventionTaskTest {
public static final String TEST_PATTERN_1 = "pattern1"
public static final String TEST_PATTERN_2 = "pattern2"
public static final String TEST_PATTERN_3 = "pattern3"
public static final List TEST_DEPENDENCY_MANAGER_CLASSPATH = WrapUtil.toList(new File("jar1"))
public static final List TEST_INCLUDES = WrapUtil.toList("incl/*")
public static final List TEST_EXCLUDES = WrapUtil.toList("excl/*")
protected File srcDir
protected File destDir
protected File depCacheDir
protected abstract AbstractCompile getCompile()
def setup() {
destDir = project.file("destDir")
depCacheDir = project.file("depCache")
srcDir = project.file("src")
srcDir.mkdirs()
}
def "default values"() {
given:
def compile = getCompile()
expect:
compile.getDestinationDir() == null
compile.getSourceCompatibility() == null
compile.getTargetCompatibility() == null
compile.getSource().isEmpty()
}
def "test includes"() {
given:
AbstractCompile compile = getCompile()
expect:
compile.is(compile.include(TEST_PATTERN_1, TEST_PATTERN_2))
compile.getIncludes() == WrapUtil.toLinkedSet(TEST_PATTERN_1, TEST_PATTERN_2)
and:
compile.is(compile.include(TEST_PATTERN_3))
compile.getIncludes() == WrapUtil.toLinkedSet(TEST_PATTERN_1, TEST_PATTERN_2, TEST_PATTERN_3)
}
def "test excludes"() {
given:
AbstractCompile compile = getCompile()
expect:
compile.is(compile.exclude(TEST_PATTERN_1, TEST_PATTERN_2))
compile.getExcludes() == WrapUtil.toLinkedSet(TEST_PATTERN_1, TEST_PATTERN_2)
and:
compile.is(compile.exclude(TEST_PATTERN_3))
compile.getExcludes() == WrapUtil.toLinkedSet(TEST_PATTERN_1, TEST_PATTERN_2, TEST_PATTERN_3)
}
protected void setUpMocksAndAttributes(final AbstractCompile compile) {
compile.source(srcDir)
compile.setIncludes(TEST_INCLUDES)
compile.setExcludes(TEST_EXCLUDES)
compile.setSourceCompatibility("1.5")
compile.setTargetCompatibility("1.5")
compile.setDestinationDir(destDir)
compile.setClasspath(new SimpleFileCollection(TEST_DEPENDENCY_MANAGER_CLASSPATH))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy