Skip to content

Commit a82faa7

Browse files
committed
TestFoundation: construct FileHandle properly on Windows
This fixes the `FileHandle` construction on Windows so that we can continue to execute more of the tests.
1 parent 120f749 commit a82faa7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

TestFoundation/TestFileHandle.swift

+22
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#if !DARWIN_COMPATIBILITY_TESTS // Disable until Foundation has the new FileHandle API
1111

1212
import Dispatch
13+
#if os(Windows)
14+
import WinSDK
15+
#endif
1316

1417
class TestFileHandle : XCTestCase {
1518
var allHandles: [FileHandle] = []
@@ -101,9 +104,28 @@ class TestFileHandle : XCTestCase {
101104
func createFileHandleForReadErrors() -> FileHandle {
102105
// Create a file handle where calling read returns -1.
103106
// Accomplish this by creating one for a directory.
107+
#if os(Windows)
108+
let hDirectory: HANDLE = ".".withCString(encodedAs: UTF16.self) {
109+
// NOTE(compnerd) we need the FILE_FLAG_BACKUP_SEMANTICS so that we
110+
// can create the handle to the directory.
111+
CreateFileW($0, GENERIC_READ,
112+
DWORD(FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE),
113+
nil, DWORD(OPEN_EXISTING),
114+
DWORD(FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS), nil)
115+
}
116+
if hDirectory == INVALID_HANDLE_VALUE {
117+
fatalError("unable to create handle to current directory")
118+
}
119+
let fd = _open_osfhandle(intptr_t(bitPattern: hDirectory), 0)
120+
if fd == -1 {
121+
fatalError("unable to associate file descriptor with handle")
122+
}
123+
let fh = FileHandle(fileDescriptor: fd, closeOnDealloc: true)
124+
#else
104125
let fd = open(".", O_RDONLY)
105126
expectTrue(fd > 0, "We must be able to open a fd to the current directory (.)")
106127
let fh = FileHandle(fileDescriptor: fd, closeOnDealloc: true)
128+
#endif
107129
allHandles.append(fh)
108130
return fh
109131
}

0 commit comments

Comments
 (0)