-
Notifications
You must be signed in to change notification settings - Fork 247
Ignore symlinks and hidden (dot) files during --recursive
.
#644
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,91 @@ | ||
import XCTest | ||
|
||
@_spi(Testing) import swift_format | ||
|
||
final class FileIteratorTests: XCTestCase { | ||
private var tmpdir: URL! | ||
|
||
override func setUpWithError() throws { | ||
tmpdir = try FileManager.default.url( | ||
for: .itemReplacementDirectory, | ||
in: .userDomainMask, | ||
appropriateFor: FileManager.default.temporaryDirectory, | ||
create: true) | ||
|
||
// Create a simple file tree used by the tests below. | ||
try touch("project/real1.swift") | ||
try touch("project/real2.swift") | ||
try touch("project/.hidden.swift") | ||
try touch("project/.build/generated.swift") | ||
try symlink("project/link.swift", to: "project/.hidden.swift") | ||
} | ||
|
||
override func tearDownWithError() throws { | ||
try FileManager.default.removeItem(at: tmpdir) | ||
} | ||
|
||
func testNoFollowSymlinks() { | ||
let seen = allFilesSeen(iteratingOver: [tmpdir], followSymlinks: false) | ||
XCTAssertEqual(seen.count, 2) | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/real1.swift") }) | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/real2.swift") }) | ||
} | ||
|
||
func testFollowSymlinks() { | ||
let seen = allFilesSeen(iteratingOver: [tmpdir], followSymlinks: true) | ||
XCTAssertEqual(seen.count, 3) | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/real1.swift") }) | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/real2.swift") }) | ||
// Hidden but found through the visible symlink project/link.swift | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/.hidden.swift") }) | ||
} | ||
|
||
func testTraversesHiddenFilesIfExplicitlySpecified() { | ||
let seen = allFilesSeen( | ||
iteratingOver: [tmpURL("project/.build"), tmpURL("project/.hidden.swift")], | ||
followSymlinks: false) | ||
XCTAssertEqual(seen.count, 2) | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/.build/generated.swift") }) | ||
XCTAssertTrue(seen.contains { $0.hasSuffix("project/.hidden.swift") }) | ||
} | ||
|
||
func testDoesNotFollowSymlinksIfFollowSymlinksIsFalseEvenIfExplicitlySpecified() { | ||
// Symlinks are not traversed even if `followSymlinks` is false even if they are explicitly | ||
// passed to the iterator. This is meant to avoid situations where a symlink could be hidden by | ||
// shell expansion; for example, if the user writes `swift-format --no-follow-symlinks *`, if | ||
// the current directory contains a symlink, they would probably *not* expect it to be followed. | ||
let seen = allFilesSeen(iteratingOver: [tmpURL("project/link.swift")], followSymlinks: false) | ||
XCTAssertTrue(seen.isEmpty) | ||
} | ||
} | ||
|
||
extension FileIteratorTests { | ||
/// Returns a URL to a file or directory in the test's temporary space. | ||
private func tmpURL(_ path: String) -> URL { | ||
return tmpdir.appendingPathComponent(path, isDirectory: false) | ||
} | ||
|
||
/// Create an empty file at the given path in the test's temporary space. | ||
private func touch(_ path: String) throws { | ||
let fileURL = tmpURL(path) | ||
try FileManager.default.createDirectory( | ||
at: fileURL.deletingLastPathComponent(), withIntermediateDirectories: true) | ||
FileManager.default.createFile(atPath: fileURL.path, contents: Data()) | ||
} | ||
|
||
/// Create a symlink between files or directories in the test's temporary space. | ||
private func symlink(_ source: String, to target: String) throws { | ||
try FileManager.default.createSymbolicLink( | ||
at: tmpURL(source), withDestinationURL: tmpURL(target)) | ||
} | ||
|
||
/// Computes the list of all files seen by using `FileIterator` to iterate over the given URLs. | ||
private func allFilesSeen(iteratingOver urls: [URL], followSymlinks: Bool) -> [String] { | ||
let iterator = FileIterator(urls: urls, followSymlinks: followSymlinks) | ||
var seen: [String] = [] | ||
for next in iterator { | ||
seen.append(next.path) | ||
} | ||
return seen | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could prefetch the
fileResourceTypeKey
here. I'm not sure how much it'll speed up the iteration, but I think it'll combine the later look-up into whenever the iterator does file IO.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately it looks like the whole
URL.resourceValues
API is busted on Linux. Switched over toFileManager.attributesOfItem
, which doesn't have the issue (but also doesn't benefit from pre-fetching).