@@ -66,8 +66,22 @@ class TestFileHandle : XCTestCase {
66
66
allTemporaryFileURLs. append ( url)
67
67
return fh!
68
68
}
69
-
69
+
70
+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
70
71
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
71
85
var fds : [ Int32 ] = [ - 1 , - 1 ]
72
86
fds. withUnsafeMutableBufferPointer { ( pointer) -> Void in
73
87
pipe ( pointer. baseAddress)
@@ -78,8 +92,10 @@ class TestFileHandle : XCTestCase {
78
92
let fh = FileHandle ( fileDescriptor: fds [ 0 ] , closeOnDealloc: true )
79
93
allHandles. append ( fh)
80
94
return fh
95
+ #endif
81
96
}
82
-
97
+ #endif
98
+
83
99
let seekError = NSError ( domain: NSCocoaErrorDomain, code: NSFileReadUnknownError, userInfo: [ NSUnderlyingErrorKey: NSError ( domain: NSPOSIXErrorDomain, code: Int ( ESPIPE) , userInfo: [ : ] ) ] )
84
100
85
101
func createFileHandleForReadErrors( ) -> FileHandle {
@@ -108,13 +124,15 @@ class TestFileHandle : XCTestCase {
108
124
allHandles = [ ]
109
125
allTemporaryFileURLs = [ ]
110
126
}
111
-
127
+
128
+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
112
129
func testHandleCreationAndCleanup( ) {
113
130
_ = createFileHandle ( )
114
131
_ = createFileHandleForSeekErrors ( )
115
132
_ = createFileHandleForReadErrors ( )
116
133
}
117
-
134
+ #endif
135
+
118
136
func testReadUpToCount( ) {
119
137
let handle = createFileHandle ( )
120
138
@@ -178,7 +196,8 @@ class TestFileHandle : XCTestCase {
178
196
_ = try createFileHandleForReadErrors ( ) . readToEnd ( )
179
197
} , " Must throw when encountering a read error " )
180
198
}
181
-
199
+
200
+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
182
201
func testOffset( ) {
183
202
// One byte at a time:
184
203
let handle = createFileHandle ( )
@@ -198,7 +217,8 @@ class TestFileHandle : XCTestCase {
198
217
_ = try createFileHandleForSeekErrors ( ) . offset ( )
199
218
} , " Must throw when encountering a seek error " )
200
219
}
201
-
220
+ #endif
221
+
202
222
func createPipe( ) -> Pipe {
203
223
let pipe = Pipe ( )
204
224
allHandles. append ( pipe. fileHandleForWriting)
@@ -463,11 +483,9 @@ class TestFileHandle : XCTestCase {
463
483
}
464
484
465
485
static var allTests : [ ( String , ( TestFileHandle ) -> ( ) throws -> ( ) ) ] {
466
- return [
467
- ( " testHandleCreationAndCleanup " , testHandleCreationAndCleanup) ,
486
+ var tests : [ ( String , ( TestFileHandle ) -> ( ) throws -> ( ) ) ] = [
468
487
( " testReadUpToCount " , testReadUpToCount) ,
469
488
( " testReadToEnd " , testReadToEnd) ,
470
- ( " testOffset " , testOffset) ,
471
489
( " testWritingWithData " , testWritingWithData) ,
472
490
( " testWritingWithBuffer " , testWritingWithBuffer) ,
473
491
( " testWritingWithMultiregionData " , testWritingWithMultiregionData) ,
@@ -484,6 +502,15 @@ class TestFileHandle : XCTestCase {
484
502
( " test_waitForDataInBackgroundAndNotify " , test_waitForDataInBackgroundAndNotify) ,
485
503
( " test_readWriteHandlers " , test_readWriteHandlers) ,
486
504
]
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
487
514
}
488
515
}
489
516
0 commit comments