Skip to content

Commit 07d2f53

Browse files
committed
TestFoundation: make TestFileHandle build on Windows
Use the testable import to get access to the internal `FileHandle(handle:closeOnDealloc:)`. If the testable import is unavailable, just pass a null FileHandle.
1 parent abe5c1f commit 07d2f53

File tree

1 file changed

+36
-9
lines changed

1 file changed

+36
-9
lines changed

TestFoundation/TestFileHandle.swift

+36-9
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,22 @@ class TestFileHandle : XCTestCase {
6666
allTemporaryFileURLs.append(url)
6767
return fh!
6868
}
69-
69+
70+
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
7071
func createFileHandleForSeekErrors() -> FileHandle {
72+
#if os(Windows)
73+
var hReadPipe: HANDLE? = INVALID_HANDLE_VALUE
74+
var hWritePipe: HANDLE? = INVALID_HANDLE_VALUE
75+
if CreatePipe(&hReadPipe, &hWritePipe, nil, 0) == FALSE {
76+
assert(false)
77+
}
78+
79+
if CloseHandle(hWritePipe) == FALSE {
80+
assert(false)
81+
}
82+
83+
return FileHandle(handle: hReadPipe!, closeOnDealloc: true)
84+
#else
7185
var fds: [Int32] = [-1, -1]
7286
fds.withUnsafeMutableBufferPointer { (pointer) -> Void in
7387
pipe(pointer.baseAddress)
@@ -78,8 +92,10 @@ class TestFileHandle : XCTestCase {
7892
let fh = FileHandle(fileDescriptor: fds[0], closeOnDealloc: true)
7993
allHandles.append(fh)
8094
return fh
95+
#endif
8196
}
82-
97+
#endif
98+
8399
let seekError = NSError(domain: NSCocoaErrorDomain, code: NSFileReadUnknownError, userInfo: [ NSUnderlyingErrorKey: NSError(domain: NSPOSIXErrorDomain, code: Int(ESPIPE), userInfo: [:])])
84100

85101
func createFileHandleForReadErrors() -> FileHandle {
@@ -108,13 +124,15 @@ class TestFileHandle : XCTestCase {
108124
allHandles = []
109125
allTemporaryFileURLs = []
110126
}
111-
127+
128+
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
112129
func testHandleCreationAndCleanup() {
113130
_ = createFileHandle()
114131
_ = createFileHandleForSeekErrors()
115132
_ = createFileHandleForReadErrors()
116133
}
117-
134+
#endif
135+
118136
func testReadUpToCount() {
119137
let handle = createFileHandle()
120138

@@ -178,7 +196,8 @@ class TestFileHandle : XCTestCase {
178196
_ = try createFileHandleForReadErrors().readToEnd()
179197
}, "Must throw when encountering a read error")
180198
}
181-
199+
200+
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
182201
func testOffset() {
183202
// One byte at a time:
184203
let handle = createFileHandle()
@@ -198,7 +217,8 @@ class TestFileHandle : XCTestCase {
198217
_ = try createFileHandleForSeekErrors().offset()
199218
}, "Must throw when encountering a seek error")
200219
}
201-
220+
#endif
221+
202222
func createPipe() -> Pipe {
203223
let pipe = Pipe()
204224
allHandles.append(pipe.fileHandleForWriting)
@@ -463,11 +483,9 @@ class TestFileHandle : XCTestCase {
463483
}
464484

465485
static var allTests : [(String, (TestFileHandle) -> () throws -> ())] {
466-
return [
467-
("testHandleCreationAndCleanup", testHandleCreationAndCleanup),
486+
var tests: [(String, (TestFileHandle) -> () throws -> ())] = [
468487
("testReadUpToCount", testReadUpToCount),
469488
("testReadToEnd", testReadToEnd),
470-
("testOffset", testOffset),
471489
("testWritingWithData", testWritingWithData),
472490
("testWritingWithBuffer", testWritingWithBuffer),
473491
("testWritingWithMultiregionData", testWritingWithMultiregionData),
@@ -484,6 +502,15 @@ class TestFileHandle : XCTestCase {
484502
("test_waitForDataInBackgroundAndNotify", test_waitForDataInBackgroundAndNotify),
485503
("test_readWriteHandlers", test_readWriteHandlers),
486504
]
505+
506+
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
507+
tests.append(contentsOf: [
508+
("testHandleCreationAndCleanup", testHandleCreationAndCleanup),
509+
("testOffset", testOffset),
510+
])
511+
#endif
512+
513+
return tests
487514
}
488515
}
489516

0 commit comments

Comments
 (0)