-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*** Original change description *** Add MoreFiles.fileTraverser(). ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=175582408
- Loading branch information
Showing
5 changed files
with
172 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
119 changes: 119 additions & 0 deletions
119
guava-tests/test/com/google/common/io/MoreFilesFileTraverserTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
/* | ||
* Copyright (C) 2017 The Guava 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 com.google.common.io; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
|
||
import com.google.common.collect.Iterables; | ||
import com.google.errorprone.annotations.CanIgnoreReturnValue; | ||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import junit.framework.TestCase; | ||
|
||
/** | ||
* Tests for {@link MoreFiles#fileTraverser()}. | ||
* | ||
* @author Jens Nyman | ||
*/ | ||
|
||
public class MoreFilesFileTraverserTest extends TestCase { | ||
|
||
private Path rootDir; | ||
|
||
@Override | ||
public void setUp() throws IOException { | ||
rootDir = Files.createTempDir().toPath(); | ||
} | ||
|
||
@Override | ||
public void tearDown() throws IOException { | ||
MoreFiles.deleteRecursively(rootDir); | ||
} | ||
|
||
public void testFileTraverser_emptyDirectory() throws Exception { | ||
assertThat(MoreFiles.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir); | ||
} | ||
|
||
public void testFileTraverser_nonExistingFile() throws Exception { | ||
Path file = rootDir.resolve("file-that-doesnt-exist"); | ||
|
||
assertThat(MoreFiles.fileTraverser().breadthFirst(file)).containsExactly(file); | ||
} | ||
|
||
public void testFileTraverser_file() throws Exception { | ||
Path file = newFile("some-file"); | ||
|
||
assertThat(MoreFiles.fileTraverser().breadthFirst(file)).containsExactly(file); | ||
} | ||
|
||
public void testFileTraverser_singleFile() throws Exception { | ||
Path file = newFile("some-file"); | ||
|
||
assertThat(MoreFiles.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir, file); | ||
} | ||
|
||
public void testFileTraverser_singleDirectory() throws Exception { | ||
Path file = newDir("some-dir"); | ||
|
||
assertThat(MoreFiles.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir, file); | ||
} | ||
|
||
public void testFileTraverser_multipleFilesAndDirectories() throws Exception { | ||
Path fileA = newFile("file-a"); | ||
Path fileB = newFile("file-b"); | ||
Path dir1 = newDir("dir-1"); | ||
Path dir2 = newDir("dir-2"); | ||
|
||
assertThat(MoreFiles.fileTraverser().breadthFirst(rootDir)) | ||
.containsExactly(rootDir, fileA, fileB, dir1, dir2); | ||
} | ||
|
||
public void testFileTraverser_multipleDirectoryLayers_breadthFirstStartsWithTopLayer() | ||
throws Exception { | ||
Path fileA = newFile("file-a"); | ||
Path dir1 = newDir("dir-1"); | ||
newFile("dir-1/file-b"); | ||
newFile("dir-1/dir-2"); | ||
|
||
assertThat(Iterables.limit(MoreFiles.fileTraverser().breadthFirst(rootDir), 3)) | ||
.containsExactly(rootDir, fileA, dir1); | ||
} | ||
|
||
public void testFileTraverser_multipleDirectoryLayers_traversalReturnsAll() throws Exception { | ||
Path fileA = newFile("file-a"); | ||
Path dir1 = newDir("dir-1"); | ||
Path fileB = newFile("dir-1/file-b"); | ||
Path dir2 = newFile("dir-1/dir-2"); | ||
|
||
assertThat(MoreFiles.fileTraverser().breadthFirst(rootDir)) | ||
.containsExactly(rootDir, fileA, fileB, dir1, dir2); | ||
} | ||
|
||
@CanIgnoreReturnValue | ||
private Path newDir(String name) { | ||
Path dir = rootDir.resolve(name); | ||
dir.toFile().mkdir(); | ||
return dir; | ||
} | ||
|
||
@CanIgnoreReturnValue | ||
private Path newFile(String name) throws IOException { | ||
Path file = rootDir.resolve(name); | ||
file.toFile().createNewFile(); | ||
return file; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters