org.gradle.api.internal.file.CompositeFileTreeTest.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 2009 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.internal.file
import org.codehaus.groovy.runtime.DefaultGroovyMethods
import org.gradle.api.Action
import org.gradle.api.file.FileTree
import org.gradle.api.file.FileVisitDetails
import org.gradle.api.file.FileVisitor
import org.gradle.api.internal.file.collections.FileCollectionResolveContext
import org.gradle.api.tasks.util.PatternFilterable
import org.gradle.api.tasks.util.PatternSet
import org.gradle.internal.Actions
import org.gradle.testfixtures.internal.NativeServicesTestFixture
import org.gradle.util.TestUtil
import spock.lang.Specification
class CompositeFileTreeTest extends Specification {
private final FileTreeInternal source1 = Mock()
private final FileTreeInternal source2 = Mock()
private final CompositeFileTree tree = new CompositeFileTree() {
@Override
String getDisplayName() {
return ""
}
@Override
void visitContents(FileCollectionResolveContext context) {
context.add(source1)
context.add(source2)
}
}
def setup() {
NativeServicesTestFixture.initialize()
}
def matchingWithClosureReturnsUnionOfFilteredSets() {
final Closure closure = TestUtil.TEST_CLOSURE
final FileTreeInternal filtered1 = Mock()
final FileTreeInternal filtered2 = Mock()
when:
FileTree filtered = tree.matching(closure)
def sourceCollections = (filtered as CompositeFileTree).sourceCollections
then:
sourceCollections == [filtered1, filtered2]
and:
1 * source1.matching(closure) >> filtered1
1 * source2.matching(closure) >> filtered2
}
def matchingWithActionReturnsUnionOfFilteredSets() {
final Action action = Actions.doNothing()
final FileTreeInternal filtered1 = Mock()
final FileTreeInternal filtered2 = Mock()
when:
FileTree filtered = tree.matching(action)
def sourceCollections = (filtered as CompositeFileTree).sourceCollections
then:
sourceCollections == [filtered1, filtered2]
and:
1 * source1.matching(action) >> filtered1
1 * source2.matching(action) >> filtered2
}
def matchingWithPatternSetReturnsUnionOfFilteredSets() {
final PatternSet patternSet = new PatternSet()
final FileTreeInternal filtered1 = Mock()
final FileTreeInternal filtered2 = Mock()
when:
FileTree filtered = tree.matching(patternSet)
def sourceCollections = (filtered as CompositeFileTree).sourceCollections
then:
sourceCollections == [filtered1, filtered2]
and:
1 * source1.matching(patternSet) >> filtered1
1 * source2.matching(patternSet) >> filtered2
}
def plusReturnsUnionOfThisTreeAndSourceTree() {
FileTreeInternal other = Mock()
when:
FileTree sum = tree.plus(other)
then:
(sum as UnionFileTree).sourceCollections == [source1, source2, other]
}
def visitsEachTreeWithVisitor() {
final FileVisitor visitor = Mock()
when:
tree.visit(visitor)
then:
1 * source1.visit(visitor)
1 * source2.visit(visitor)
}
def visitsEachTreeWithClosure() {
final Closure visitor = TestUtil.TEST_CLOSURE
final FileVisitor closureAsVisitor = DefaultGroovyMethods.asType(visitor, FileVisitor.class)
when:
tree.visit(visitor)
then:
1 * source1.visit(closureAsVisitor)
1 * source2.visit(closureAsVisitor)
}
def visitsEachTreeWithAction() {
final Action visitor = Actions.doNothing()
when:
tree.visit(visitor)
then:
1 * source1.visit(visitor)
1 * source2.visit(visitor)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy