org.gradle.api.internal.file.collections.ImmutableFileCollectionTest.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 2018 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.collections
import com.google.common.collect.ImmutableSet
import org.gradle.api.Transformer
import org.gradle.api.file.Directory
import org.gradle.api.file.FileCollection
import org.gradle.api.file.RegularFile
import org.gradle.api.internal.file.AbstractFileCollection
import org.gradle.api.internal.file.FileResolver
import org.gradle.api.provider.Provider
import org.gradle.util.UsesNativeServices
import spock.lang.Specification
import spock.lang.Unroll
import java.nio.file.Paths
import java.util.concurrent.Callable
@UsesNativeServices
class ImmutableFileCollectionTest extends Specification {
def 'can create empty collection'() {
ImmutableFileCollection collection1 = ImmutableFileCollection.of()
ImmutableFileCollection collection2 = ImmutableFileCollection.of(new File[0])
expect:
collection1.files.size() == 0
collection2.files.size() == 0
}
def 'empty collections are fixed instance'() {
ImmutableFileCollection collection1 = ImmutableFileCollection.of()
ImmutableFileCollection collection2 = ImmutableFileCollection.of()
ImmutableFileCollection collection3 = ImmutableFileCollection.of(new File[0])
expect:
collection1.is(collection2)
collection1.is(collection3)
}
def 'resolves specified files using FileResolver'() {
File file1 = new File('1')
File file2 = new File('2')
FileResolver fileResolver = Mock()
ImmutableFileCollection collection = ImmutableFileCollection.usingResolver(fileResolver, 'abc', 'def')
when:
Set files = collection.getFiles()
then:
1 * fileResolver.resolve('abc') >> file1
1 * fileResolver.resolve('def') >> file2
files == [ file1, file2 ] as LinkedHashSet
}
@Unroll
def 'fails to add paths to a #description collection'() {
FileCollection fileCollection = Mock()
when:
collection.add(fileCollection)
then:
def exception = thrown(UnsupportedOperationException)
exception.message == "File collection does not allow modification."
where:
description | collection
'empty' | ImmutableFileCollection.of()
'Files' | ImmutableFileCollection.of(new File('abc'))
'using resolver' | ImmutableFileCollection.usingResolver(Mock(FileResolver), 'abc')
}
def 'can use a Closure to specify a single file'() {
File file = new File('1')
FileResolver fileResolver = Mock()
ImmutableFileCollection collection = ImmutableFileCollection.usingResolver(fileResolver, [{ 'abc' }] as Object[])
when:
Set files = collection.getFiles()
then:
1 * fileResolver.resolve('abc') >> file
files == [ file ] as LinkedHashSet
}
@Unroll
def '#description can return null'() {
FileResolver fileResolver = Mock()
ImmutableFileCollection collection = ImmutableFileCollection.usingResolver(fileResolver, input)
when:
Set files = collection.getFiles()
then:
files.isEmpty()
where:
description | input
'Closure' | ({ null } as Object[])
'Callable' | (({ null } as Callable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy