blob: fd051904b139326ab9bd4d040483e2bd42d350a3 [file] [log] [blame]
// Copyright 2014 The Bazel Authors. All rights reserved.
//
// 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 com.google.devtools.build.lib.util;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import com.google.common.base.Joiner;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import com.google.devtools.build.lib.util.FileType.HasFilename;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.lib.vfs.PathFragment;
import com.google.devtools.build.lib.vfs.inmemoryfs.InMemoryFileSystem;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import java.util.List;
/**
* Test for {@link FileType} and {@link FileTypeSet}.
*/
@RunWith(JUnit4.class)
public class FileTypeTest {
private static final FileType CFG = FileType.of(".cfg");
private static final FileType HTML = FileType.of(".html");
private static final FileType TEXT = FileType.of(".txt");
private static final FileType CPP_SOURCE = FileType.of(".cc", ".cpp", ".cxx", ".C");
private static final FileType JAVA_SOURCE = FileType.of(".java");
private static final FileType PYTHON_SOURCE = FileType.of(".py");
private static final class HasFilenameImpl implements HasFilename {
private final String path;
private HasFilenameImpl(String path) {
this.path = path;
}
@Override
public String getFilename() {
return path;
}
@Override
public String toString() {
return path;
}
}
@Test
public void simpleDotMatch() {
assertTrue(TEXT.matches("readme.txt"));
}
@Test
public void doubleDotMatches() {
assertTrue(TEXT.matches("read.me.txt"));
}
@Test
public void noExtensionMatches() {
assertTrue(FileType.NO_EXTENSION.matches("hello"));
assertTrue(FileType.NO_EXTENSION.matches("/path/to/hello"));
}
@Test
public void picksLastExtension() {
assertTrue(TEXT.matches("server.cfg.txt"));
}
@Test
public void onlyExtensionStillMatches() {
assertTrue(TEXT.matches(".txt"));
}
@Test
public void handlesPathObjects() {
Path readme = new InMemoryFileSystem().getPath("/readme.txt");
assertTrue(TEXT.matches(readme));
}
@Test
public void handlesPathFragmentObjects() {
PathFragment readme = new PathFragment("some/where/readme.txt");
assertTrue(TEXT.matches(readme));
}
@Test
public void fileTypeSetContains() {
FileTypeSet allowedTypes = FileTypeSet.of(TEXT, HTML);
assertTrue(allowedTypes.matches("readme.txt"));
assertFalse(allowedTypes.matches("style.css"));
}
private List<HasFilename> getArtifacts() {
return Lists.<HasFilename>newArrayList(
new HasFilenameImpl("Foo.java"),
new HasFilenameImpl("bar.cc"),
new HasFilenameImpl("baz.py"));
}
private String filterAll(FileType... fileTypes) {
return Joiner.on(" ").join(FileType.filter(getArtifacts(), fileTypes));
}
@Test
public void justJava() {
assertEquals("Foo.java", filterAll(JAVA_SOURCE));
}
@Test
public void javaAndCpp() {
assertEquals("Foo.java bar.cc", filterAll(JAVA_SOURCE, CPP_SOURCE));
}
@Test
public void allThree() {
assertEquals("Foo.java bar.cc baz.py", filterAll(JAVA_SOURCE, CPP_SOURCE, PYTHON_SOURCE));
}
private HasFilename filename(final String name) {
return new HasFilename() {
@Override
public String getFilename() {
return name;
}
};
}
@Test
public void checkingSingleWithTypePredicate() throws Exception {
FileType.HasFilename item = filename("config.txt");
assertTrue(FileType.contains(item, TEXT));
assertFalse(FileType.contains(item, CFG));
}
@Test
public void checkingListWithTypePredicate() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("README.txt"));
assertTrue(FileType.contains(unfiltered, TEXT));
assertFalse(FileType.contains(unfiltered, CFG));
}
@Test
public void filteringWithTypePredicate() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("README.txt"),
filename("archive.zip"));
assertThat(FileType.filter(unfiltered, TEXT)).containsExactly(unfiltered.get(0),
unfiltered.get(2)).inOrder();
}
@Test
public void filteringWithMatcherPredicate() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("README.txt"),
filename("archive.zip"));
Predicate<String> textFileTypeMatcher = new Predicate<String>() {
@Override
public boolean apply(String input) {
return TEXT.matches(input);
}
};
assertThat(FileType.filter(unfiltered, textFileTypeMatcher)).containsExactly(unfiltered.get(0),
unfiltered.get(2)).inOrder();
}
@Test
public void filteringWithAlwaysFalse() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("binary"),
filename("archive.zip"));
assertThat(FileType.filter(unfiltered, FileTypeSet.NO_FILE)).isEmpty();
}
@Test
public void filteringWithAlwaysTrue() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("binary"),
filename("archive.zip"));
assertThat(FileType.filter(unfiltered, FileTypeSet.ANY_FILE)).containsExactly(unfiltered.get(0),
unfiltered.get(1), unfiltered.get(2), unfiltered.get(3)).inOrder();
}
@Test
public void exclusionWithTypePredicate() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("README.txt"),
filename("server.cfg"));
assertThat(FileType.except(unfiltered, TEXT)).containsExactly(unfiltered.get(1),
unfiltered.get(3)).inOrder();
}
@Test
public void listFiltering() throws Exception {
ImmutableList<FileType.HasFilename> unfiltered = ImmutableList.of(
filename("config.txt"),
filename("index.html"),
filename("README.txt"),
filename("server.cfg"));
FileTypeSet filter = FileTypeSet.of(HTML, CFG);
assertThat(FileType.filterList(unfiltered, filter)).containsExactly(unfiltered.get(1),
unfiltered.get(3)).inOrder();
}
}