|
10 | 10 | #if !DARWIN_COMPATIBILITY_TESTS // Disable until Foundation has the new FileHandle API
|
11 | 11 |
|
12 | 12 | import Dispatch
|
| 13 | +#if os(Windows) |
| 14 | +import WinSDK |
| 15 | +#endif |
13 | 16 |
|
14 | 17 | class TestFileHandle : XCTestCase {
|
15 | 18 | var allHandles: [FileHandle] = []
|
@@ -101,9 +104,28 @@ class TestFileHandle : XCTestCase {
|
101 | 104 | func createFileHandleForReadErrors() -> FileHandle {
|
102 | 105 | // Create a file handle where calling read returns -1.
|
103 | 106 | // 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 |
104 | 125 | let fd = open(".", O_RDONLY)
|
105 | 126 | expectTrue(fd > 0, "We must be able to open a fd to the current directory (.)")
|
106 | 127 | let fh = FileHandle(fileDescriptor: fd, closeOnDealloc: true)
|
| 128 | +#endif |
107 | 129 | allHandles.append(fh)
|
108 | 130 | return fh
|
109 | 131 | }
|
|
0 commit comments