forked from swiftlang/swift-corelibs-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestFileHandle.swift
490 lines (393 loc) · 18.5 KB
/
TestFileHandle.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2016, 2018, 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
#if !DARWIN_COMPATIBILITY_TESTS // Disable until Foundation has the new FileHandle API
import Dispatch
class TestFileHandle : XCTestCase {
var allHandles: [FileHandle] = []
var allTemporaryFileURLs: [URL] = []
let content: Data = {
return """
CHAPTER I.
The Author gives some account of himself and family--His first
inducements to travel--He is shipwrecked, and swims for his life--Gets
safe on shore in the country of Lilliput--Is made a prisoner, and
carried up the country
CHAPTER II.
The emperor of Lilliput, attended by several of the nobility, comes to
see the Author in his confinement--The emperor's person and habits
described--Learned men appointed to teach the Author their language--He
gains favor by his mild disposition--His pockets are searched, and his
sword and pistols taken from him
CHAPTER III.
The Author diverts the emperor, and his nobility of both sexes, in a
very uncommon manner--The diversions of the court of Lilliput
described--The Author has his liberty granted him upon certain
conditions
CHAPTER IV.
Mildendo, the metropolis of Lilliput, described, together with the
emperor's palace--A conversation between the Author and a principal
secretary concerning the affairs of that empire--The Author's offers to
serve the emperor in his wars
CHAPTER V.
The Author, by an extraordinary stratagem, prevents an invasion--A high
title of honor is conferred upon him--Ambassadors arrive from the
emperor of Blefuscu, and sue for peace
""".data(using: .utf8)!
}()
func createFileHandle() -> FileHandle {
let url = URL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent(ProcessInfo.processInfo.globallyUniqueString)
expectDoesNotThrow({ try content.write(to: url) }, "Couldn't write file at \(url.path) for testing")
var fh: FileHandle?
expectDoesNotThrow({ fh = try FileHandle(forReadingFrom: url) }, "Couldn't create file handle.")
allHandles.append(fh!)
allTemporaryFileURLs.append(url)
return fh!
}
func createFileHandleForSeekErrors() -> FileHandle {
var fds: [Int32] = [-1, -1]
fds.withUnsafeMutableBufferPointer { (pointer) -> Void in
pipe(pointer.baseAddress)
}
close(fds[1])
let fh = FileHandle(fileDescriptor: fds[0], closeOnDealloc: true)
allHandles.append(fh)
return fh
}
let seekError = NSError(domain: NSCocoaErrorDomain, code: NSFileReadUnknownError, userInfo: [ NSUnderlyingErrorKey: NSError(domain: NSPOSIXErrorDomain, code: Int(ESPIPE), userInfo: [:])])
func createFileHandleForReadErrors() -> FileHandle {
// Create a file handle where calling read returns -1.
// Accomplish this by creating one for a directory.
let fd = open(".", O_RDONLY)
expectTrue(fd > 0, "We must be able to open a fd to the current directory (.)")
let fh = FileHandle(fileDescriptor: fd, closeOnDealloc: true)
allHandles.append(fh)
return fh
}
let readError = NSError(domain: NSCocoaErrorDomain, code: NSFileReadUnknownError, userInfo: [ NSUnderlyingErrorKey: NSError(domain: NSPOSIXErrorDomain, code: Int(EISDIR), userInfo: [:])])
override func tearDown() {
for handle in allHandles {
print("Closing \(handle)…")
try? handle.close()
}
for url in allTemporaryFileURLs {
print("Deleting \(url)…")
try? FileManager.default.removeItem(at: url)
}
allHandles = []
allTemporaryFileURLs = []
}
func testHandleCreationAndCleanup() {
_ = createFileHandle()
_ = createFileHandleForSeekErrors()
_ = createFileHandleForReadErrors()
}
func testReadUpToCount() {
let handle = createFileHandle()
// Zero:
expectDoesNotThrow({
let zeroData = try handle.read(upToCount: 0)
expectEqual(zeroData, nil, "Data should be nil")
}, "Must not throw while reading zero data")
// Max:
expectDoesNotThrow({
let maxData = try handle.read(upToCount: Int.max)
expectEqual(maxData, content, "Data should be equal to the content")
}, "Must not throw while reading Int.max data")
// EOF:
expectDoesNotThrow({
let eof = try handle.read(upToCount: Int.max)
expectEqual(eof, nil, "EOF should return nil")
}, "Must not throw while reading EOF")
// One byte at a time
let onesHandle = createFileHandle()
expectDoesNotThrow({
for index in content.indices {
let oneByteData = try onesHandle.read(upToCount: 1)
let expected = content[index ..< content.index(after: index)]
expectEqual(oneByteData, expected, "Read incorrect data at index \(index)")
}
}, "Must not throw while reading one byte at a time")
// EOF:
expectDoesNotThrow({
let eof = try handle.read(upToCount: 1)
expectEqual(eof, nil, "EOF should return nil")
}, "Must not throw while reading one-byte-at-a-time EOF")
// Errors:
expectThrows(readError, {
_ = try createFileHandleForReadErrors().read(upToCount: 1)
}, "Must throw when encountering a read error")
}
func testReadToEnd() {
let handle = createFileHandle()
// To end:
expectDoesNotThrow({
let maxData = try handle.readToEnd()
expectEqual(maxData, content, "Data to end should equal what was written out")
}, "Must not throw while reading to end")
// EOF:
expectDoesNotThrow({
let eof = try handle.readToEnd()
expectEqual(eof, nil, "EOF should return nil")
}, "Must not throw while reading EOF")
// Errors:
expectThrows(readError, {
_ = try createFileHandleForReadErrors().readToEnd()
}, "Must throw when encountering a read error")
}
func testOffset() {
// One byte at a time:
let handle = createFileHandle()
var offset: UInt64 = 0
for index in content.indices {
expectDoesNotThrow({ offset = try handle.offset() }, "Reading the offset must not throw")
expectEqual(offset, UInt64(index), "The offset must match")
expectDoesNotThrow({ _ = try handle.read(upToCount: 1) }, "Advancing by reading must not throw")
}
expectDoesNotThrow({ offset = try handle.offset() }, "Reading the offset at EOF must not throw")
expectEqual(offset, UInt64(content.count), "The offset at EOF must be at the end")
// Error:
expectThrows(seekError, {
_ = try createFileHandleForSeekErrors().offset()
}, "Must throw when encountering a seek error")
}
func createPipe() -> Pipe {
let pipe = Pipe()
allHandles.append(pipe.fileHandleForWriting)
allHandles.append(pipe.fileHandleForReading)
return pipe
}
func performWriteTest<T: DataProtocol>(with data: T, expecting expectation: Data? = nil) {
let pipe = createPipe()
let writer = pipe.fileHandleForWriting
let reader = pipe.fileHandleForReading
expectDoesNotThrow({ try writer.write(contentsOf: data) }, "Writing must succeed")
expectDoesNotThrow({
expectEqual(try reader.read(upToCount: data.count), expectation ?? content, "The content must be the same")
}, "Reading must succeed")
}
func testWritingWithData() {
performWriteTest(with: content)
}
func testWritingWithBuffer() {
content.withUnsafeBytes { (buffer) in
performWriteTest(with: buffer)
}
}
func testWritingWithMultiregionData() {
var expectation = Data()
expectation.append(content)
expectation.append(content)
expectation.append(content)
expectation.append(content)
content.withUnsafeBytes { (buffer) in
let data1 = DispatchData(bytes: buffer)
let data2 = DispatchData(bytes: buffer)
var multiregion1: DispatchData = .empty
multiregion1.append(data1)
multiregion1.append(data2)
var multiregion2: DispatchData = .empty
multiregion2.append(data1)
multiregion2.append(data2)
var longMultiregion: DispatchData = .empty
longMultiregion.append(multiregion1)
longMultiregion.append(multiregion2)
expectTrue(longMultiregion.regions.count > 0, "The multiregion data must be actually composed of multiple regions")
performWriteTest(with: longMultiregion, expecting: expectation)
}
}
func test_constants() {
XCTAssertEqual(FileHandle.readCompletionNotification.rawValue, "NSFileHandleReadCompletionNotification",
"\(FileHandle.readCompletionNotification.rawValue) is not equal to NSFileHandleReadCompletionNotification")
}
func test_nullDevice() {
let fh = FileHandle.nullDevice
XCTAssertEqual(fh.fileDescriptor, -1)
fh.closeFile()
fh.seek(toFileOffset: 10)
XCTAssertEqual(fh.offsetInFile, 0)
XCTAssertEqual(fh.seekToEndOfFile(), 0)
XCTAssertEqual(fh.readData(ofLength: 15).count, 0)
fh.synchronizeFile()
fh.write(Data([1,2]))
fh.seek(toFileOffset: 0)
XCTAssertEqual(fh.availableData.count, 0)
fh.write(Data([1,2]))
fh.seek(toFileOffset: 0)
XCTAssertEqual(fh.readDataToEndOfFile().count, 0)
}
func test_truncateFile() {
mkstemp(template: "test_truncateFile.XXXXXX") { (fh) in
fh.truncateFile(atOffset: 50)
XCTAssertEqual(fh.offsetInFile, 50)
fh.truncateFile(atOffset: 0)
XCTAssertEqual(fh.offsetInFile, 0)
fh.truncateFile(atOffset: 100)
XCTAssertEqual(fh.offsetInFile, 100)
fh.write(Data([1, 2]))
XCTAssertEqual(fh.offsetInFile, 102)
fh.seek(toFileOffset: 4)
XCTAssertEqual(fh.offsetInFile, 4)
(0..<20).forEach { fh.write(Data([$0])) }
XCTAssertEqual(fh.offsetInFile, 24)
fh.seekToEndOfFile()
XCTAssertEqual(fh.offsetInFile, 102)
fh.truncateFile(atOffset: 10)
XCTAssertEqual(fh.offsetInFile, 10)
fh.seek(toFileOffset: 0)
XCTAssertEqual(fh.offsetInFile, 0)
let data = fh.readDataToEndOfFile()
XCTAssertEqual(data.count, 10)
XCTAssertEqual(data, Data([0, 0, 0, 0, 0, 1, 2, 3, 4, 5]))
}
}
func test_readabilityHandlerCloseFileRace() throws {
for _ in 0..<10 {
let handle = createFileHandle()
handle.readabilityHandler = { _ = $0.offsetInFile }
handle.closeFile()
usleep(1000)
}
}
func test_readabilityHandlerCloseFileRaceWithError() throws {
for _ in 0..<10 {
let handle = createFileHandle()
handle.readabilityHandler = { _ = try? $0.offset() }
try handle.close()
usleep(1000)
}
}
func test_fileDescriptor() throws {
let handle = createFileHandle()
#if !os(Windows)
XCTAssertTrue(handle.fileDescriptor > 0, "File descriptor after opening should be valid (is \(handle.fileDescriptor))")
#endif
try handle.close()
XCTAssertEqual(handle.fileDescriptor, -1, "File descriptor after closing should not be valid")
}
func test_availableData() {
let handle = createFileHandle()
let availableData = handle.availableData
XCTAssertEqual(availableData, content, "Available data should be the same as input")
let eofData = handle.availableData
XCTAssertTrue(eofData.isEmpty, "Should return empty data for EOF")
}
func test_readToEndOfFileInBackgroundAndNotify() {
let handle = createFileHandle()
let done = expectation(forNotification: .NSFileHandleReadToEndOfFileCompletion, object: handle, notificationCenter: .default) { (notification) -> Bool in
XCTAssertEqual(notification.userInfo as? [String: AnyHashable], [NSFileHandleNotificationDataItem: self.content], "User info was incorrect")
return true
}
handle.readToEndOfFileInBackgroundAndNotify()
wait(for: [done], timeout: 10)
}
func test_readToEndOfFileAndNotify() {
let handle = createFileHandle()
var readSomeData = false
let done = expectation(forNotification: FileHandle.readCompletionNotification, object: handle, notificationCenter: .default) { (notification) -> Bool in
guard let data = notification.userInfo?[NSFileHandleNotificationDataItem] as? Data else {
XCTFail("Couldn't find the data in the user info: \(notification)")
return true
}
if !data.isEmpty {
readSomeData = true
handle.readInBackgroundAndNotify()
return false
} else {
return true
}
}
handle.readInBackgroundAndNotify()
wait(for: [done], timeout: 10)
XCTAssertTrue(readSomeData, "At least some data must've been read")
}
func test_readToEndOfFileAndNotify_readError() {
let handle = createFileHandleForReadErrors()
let done = expectation(forNotification: FileHandle.readCompletionNotification, object: handle, notificationCenter: .default) { (notification) -> Bool in
guard let error = notification.userInfo?["NSFileHandleError"] as? NSNumber else {
XCTFail("Couldn't find the data in the user info: \(notification)")
return true
}
XCTAssertNil(notification.userInfo?[NSFileHandleNotificationDataItem])
XCTAssertEqual(error, NSNumber(value: EISDIR))
return true
}
handle.readInBackgroundAndNotify()
wait(for: [done], timeout: 10)
}
func test_waitForDataInBackgroundAndNotify() {
let handle = createFileHandle()
let done = expectation(forNotification: .NSFileHandleDataAvailable, object: handle, notificationCenter: .default) { (notification) in
let count = notification.userInfo?.count ?? 0
XCTAssertEqual(count, 0)
return true
}
handle.waitForDataInBackgroundAndNotify()
wait(for: [done], timeout: 10)
}
func test_readWriteHandlers() {
for _ in 0..<100 {
let pipe = Pipe()
let write = pipe.fileHandleForWriting
let read = pipe.fileHandleForReading
var notificationReceived = false
let semaphore = DispatchSemaphore(value: 0)
let count = content.count
read.readabilityHandler = { (handle) in
// Check that we can reentrantly set the handler:
handle.readabilityHandler = { (handle2) in
if let readData = try? handle2.read(upToCount: count) {
XCTAssertEqual(readData.count, count, "Should have read as much data as was sent")
semaphore.signal()
} else {
// EOF:
handle2.readabilityHandler = nil
}
}
notificationReceived = true
if let readData = try? handle.read(upToCount: count) {
XCTAssertEqual(readData.count, count, "Should have read as much data as was sent")
}
}
write.writeabilityHandler = { (handle) in
handle.writeabilityHandler = { (handle2) in
handle2.writeabilityHandler = nil
try? handle2.write(contentsOf: self.content)
}
try? handle.write(contentsOf: self.content)
}
let result = semaphore.wait(timeout: .distantFuture)
XCTAssertEqual(result, .success, "Waiting on the semaphore should not have had time to time out")
XCTAssertTrue(notificationReceived, "Notification should be sent")
}
}
static var allTests : [(String, (TestFileHandle) -> () throws -> ())] {
return [
("testHandleCreationAndCleanup", testHandleCreationAndCleanup),
("testReadUpToCount", testReadUpToCount),
("testReadToEnd", testReadToEnd),
("testOffset", testOffset),
("testWritingWithData", testWritingWithData),
("testWritingWithBuffer", testWritingWithBuffer),
("testWritingWithMultiregionData", testWritingWithMultiregionData),
("test_constants", test_constants),
("test_nullDevice", test_nullDevice),
("test_truncateFile", test_truncateFile),
("test_readabilityHandlerCloseFileRace", test_readabilityHandlerCloseFileRace),
("test_readabilityHandlerCloseFileRaceWithError", test_readabilityHandlerCloseFileRaceWithError),
("test_fileDescriptor", test_fileDescriptor),
("test_availableData", test_availableData),
("test_readToEndOfFileInBackgroundAndNotify", test_readToEndOfFileInBackgroundAndNotify),
("test_readToEndOfFileAndNotify", test_readToEndOfFileAndNotify),
("test_readToEndOfFileAndNotify_readError", test_readToEndOfFileAndNotify_readError),
("test_waitForDataInBackgroundAndNotify", test_waitForDataInBackgroundAndNotify),
("test_readWriteHandlers", test_readWriteHandlers),
]
}
}
#endif