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 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2020 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
// This file contains a syscall abstraction layer (SAL) which hooks the Selector and the Socket in a way that we can
// play the kernel whilst NIO thinks it's running on a real OS.
@testable import NIO
import NIOConcurrencyHelpers
import XCTest
internal enum SAL {
fileprivate static let defaultTimeout: Double = 5
private static let debugTests: Bool = false
fileprivate static func printIfDebug(_ item: Any) {
if debugTests {
print(item)
}
}
}
final class LockedBox<T> {
struct TimeoutError: Error {
var description: String
init(_ description: String) {
self.description = description
}
}
struct ExpectedEmptyBox: Error {}
private let condition = ConditionLock(value: 0)
private let description: String
private let didSet: (T?) -> Void
private var _value: T? {
didSet {
self.didSet(self._value)
}
}
init(_ value: T? = nil,
description: String? = nil,
file: StaticString = #file,
line: UInt = #line,
didSet: @escaping (T?) -> Void = { _ in }) {
self._value = value
self.didSet = didSet
self.description = description ?? "\(file):\(line)"
}
internal var value: T? {
get {
self.condition.lock()
defer {
self.condition.unlock()
}
return self._value
}
set {
self.condition.lock()
if let value = newValue {
self._value = value
self.condition.unlock(withValue: 1)
} else {
self._value = nil
self.condition.unlock(withValue: 0)
}
}
}
func waitForEmptyAndSet(_ value: T) throws {
if self.condition.lock(whenValue: 0, timeoutSeconds: SAL.defaultTimeout) {
defer {
self.condition.unlock(withValue: 1)
}
self._value = value
} else {
throw TimeoutError(self.description)
}
}
func takeValue() throws -> T {
if self.condition.lock(whenValue: 1, timeoutSeconds: SAL.defaultTimeout) {
defer {
self.condition.unlock(withValue: 0)
}
let value = self._value!
self._value = nil
return value
} else {
throw TimeoutError(self.description)
}
}
func waitForValue() throws -> T {
if self.condition.lock(whenValue: 1, timeoutSeconds: SAL.defaultTimeout) {
defer {
self.condition.unlock(withValue: 1)
}
return self._value!
} else {
throw TimeoutError(self.description)
}
}
}
extension LockedBox where T == UserToKernel {
func assertParkedRightNow(file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
let syscall = try self.waitForValue()
if case .whenReady(.block) = syscall {
return
} else {
XCTFail("unexpected syscall \(syscall)", file: (file), line: line)
}
}
}
enum UserToKernel {
case localAddress
case remoteAddress
case connect(SocketAddress)
case read(Int)
case close(CInt)
case register(Selectable, SelectorEventSet, NIORegistration)
case reregister(Selectable, SelectorEventSet)
case deregister(Selectable)
case whenReady(SelectorStrategy)
case disableSIGPIPE(CInt)
case write(CInt, ByteBuffer)
case writev(CInt, [ByteBuffer])
case bind(SocketAddress)
case setOption(NIOBSDSocket.OptionLevel, NIOBSDSocket.Option, Any)
}
enum KernelToUser {
case returnSocketAddress(SocketAddress)
case returnBool(Bool)
case returnBytes(ByteBuffer)
case returnVoid
case returnSelectorEvent(SelectorEvent<NIORegistration>?)
case returnIOResultInt(IOResult<Int>)
case error(IOError)
}
struct UnexpectedKernelReturn: Error {
private var ret: KernelToUser
init(_ ret: KernelToUser) {
self.ret = ret
}
}
struct UnexpectedSyscall: Error {
private var syscall: UserToKernel
init(_ syscall: UserToKernel) {
self.syscall = syscall
}
}
private protocol UserKernelInterface {
var userToKernel: LockedBox<UserToKernel> { get }
var kernelToUser: LockedBox<KernelToUser> { get }
}
extension UserKernelInterface {
fileprivate func waitForKernelReturn() throws -> KernelToUser {
let value = try self.kernelToUser.takeValue()
if case .error(let error) = value {
throw error
} else {
return value
}
}
}
internal class HookedSelector: NIO.Selector<NIORegistration>, UserKernelInterface {
fileprivate let userToKernel: LockedBox<UserToKernel>
fileprivate let kernelToUser: LockedBox<KernelToUser>
fileprivate let wakeups: LockedBox<()>
init(userToKernel: LockedBox<UserToKernel>, kernelToUser: LockedBox<KernelToUser>, wakeups: LockedBox<()>) throws {
self.userToKernel = userToKernel
self.kernelToUser = kernelToUser
self.wakeups = wakeups
try super.init()
self.lifecycleState = .open
}
override func register<S: Selectable>(selectable: S,
interested: SelectorEventSet,
makeRegistration: (SelectorEventSet, SelectorRegistrationID) -> NIORegistration) throws {
try self.userToKernel.waitForEmptyAndSet(.register(selectable, interested, makeRegistration(interested,
.initialRegistrationID)))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func reregister<S: Selectable>(selectable: S, interested: SelectorEventSet) throws {
try self.userToKernel.waitForEmptyAndSet(.reregister(selectable, interested))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func whenReady(strategy: SelectorStrategy, onLoopBegin loopStart: () -> Void, _ body: (SelectorEvent<NIORegistration>) throws -> Void) throws -> Void {
try self.userToKernel.waitForEmptyAndSet(.whenReady(strategy))
let ret = try self.waitForKernelReturn()
if case .returnSelectorEvent(let event) = ret {
loopStart()
if let event = event {
try body(event)
}
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func deregister<S: Selectable>(selectable: S) throws {
try self.userToKernel.waitForEmptyAndSet(.deregister(selectable))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func wakeup() throws {
SAL.printIfDebug("WAKEUP")
try self.wakeups.waitForEmptyAndSet(())
}
}
class HookedSocket: Socket, UserKernelInterface {
fileprivate let userToKernel: LockedBox<UserToKernel>
fileprivate let kernelToUser: LockedBox<KernelToUser>
init(userToKernel: LockedBox<UserToKernel>, kernelToUser: LockedBox<KernelToUser>, socket: NIOBSDSocket.Handle) throws {
self.userToKernel = userToKernel
self.kernelToUser = kernelToUser
try super.init(socket: socket)
}
override func ignoreSIGPIPE() throws {
try self.withUnsafeHandle { fd in
try self.userToKernel.waitForEmptyAndSet(.disableSIGPIPE(fd))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
}
override func localAddress() throws -> SocketAddress {
try self.userToKernel.waitForEmptyAndSet(.localAddress)
let ret = try self.waitForKernelReturn()
if case .returnSocketAddress(let address) = ret {
return address
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func remoteAddress() throws -> SocketAddress {
try self.userToKernel.waitForEmptyAndSet(.remoteAddress)
let ret = try self.waitForKernelReturn()
if case .returnSocketAddress(let address) = ret {
return address
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func connect(to address: SocketAddress) throws -> Bool {
try self.userToKernel.waitForEmptyAndSet(.connect(address))
let ret = try self.waitForKernelReturn()
if case .returnBool(let success) = ret {
return success
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func read(pointer: UnsafeMutableRawBufferPointer) throws -> IOResult<Int> {
try self.userToKernel.waitForEmptyAndSet(.read(pointer.count))
let ret = try self.waitForKernelReturn()
if case .returnBytes(let buffer) = ret {
assert(buffer.readableBytes <= pointer.count)
pointer.copyBytes(from: buffer.readableBytesView)
return .processed(buffer.readableBytes)
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func write(pointer: UnsafeRawBufferPointer) throws -> IOResult<Int> {
return try self.withUnsafeHandle { fd in
var buffer = ByteBufferAllocator().buffer(capacity: pointer.count)
buffer.writeBytes(pointer)
try self.userToKernel.waitForEmptyAndSet(.write(fd, buffer))
let ret = try self.waitForKernelReturn()
if case .returnIOResultInt(let result) = ret {
return result
} else {
throw UnexpectedKernelReturn(ret)
}
}
}
override func writev(iovecs: UnsafeBufferPointer<IOVector>) throws -> IOResult<Int> {
return try self.withUnsafeHandle { fd in
let buffers = iovecs.map { iovec -> ByteBuffer in
#if os(Android)
var buffer = ByteBufferAllocator().buffer(capacity: Int(iovec.iov_len))
buffer.writeBytes(UnsafeRawBufferPointer(start: iovec.iov_base, count: Int(iovec.iov_len)))
#else
var buffer = ByteBufferAllocator().buffer(capacity: iovec.iov_len)
buffer.writeBytes(UnsafeRawBufferPointer(start: iovec.iov_base, count: iovec.iov_len))
#endif
return buffer
}
try self.userToKernel.waitForEmptyAndSet(.writev(fd, buffers))
let ret = try self.waitForKernelReturn()
if case .returnIOResultInt(let result) = ret {
return result
} else {
throw UnexpectedKernelReturn(ret)
}
}
}
override func close() throws {
let fd = try self.takeDescriptorOwnership()
try self.userToKernel.waitForEmptyAndSet(.close(fd))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func setOption<T>(level: NIOBSDSocket.OptionLevel, name: NIOBSDSocket.Option, value: T) throws {
try self.userToKernel.waitForEmptyAndSet(.setOption(level, name, value))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
override func bind(to address: SocketAddress) throws {
try self.userToKernel.waitForEmptyAndSet(.bind(address))
let ret = try self.waitForKernelReturn()
if case .returnVoid = ret {
return
} else {
throw UnexpectedKernelReturn(ret)
}
}
}
extension HookedSelector {
func assertSyscallAndReturn(_ result: KernelToUser,
file: StaticString = #file,
line: UInt = #line,
matcher: (UserToKernel) throws -> Bool) throws {
let syscall = try self.userToKernel.takeValue()
if try matcher(syscall) {
try self.kernelToUser.waitForEmptyAndSet(result)
} else {
XCTFail("unexpected syscall \(syscall)", file: (file), line: line)
throw UnexpectedSyscall(syscall)
}
}
/// This function will wait for an event loop wakeup until it unblocks. If the event loop
/// is currently executing then it will not be woken: as a result, consider using
/// `assertParkedRightNow` before the event that you want to trigger the wakeup, and before calling
/// this code.
func assertWakeup(file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.wakeups.takeValue()
try self.assertSyscallAndReturn(.returnSelectorEvent(nil), file: (file), line: line) { syscall in
if case .whenReady(.block) = syscall {
return true
} else {
return false
}
}
}
func assertParkedRightNow(file: StaticString = #file, line: UInt = #line) throws {
try self.userToKernel.assertParkedRightNow(file: file, line: line)
}
}
extension EventLoop {
internal func runSAL<T>(syscallAssertions: () throws -> Void = {},
file: StaticString = #file,
line: UInt = #line,
_ body: @escaping () throws -> T) throws -> T {
let hookedSelector = ((self as! SelectableEventLoop)._selector as! HookedSelector)
let box = LockedBox<Result<T, Error>>()
// To prevent races between the test driver thread (this thread) and the EventLoop (another thread), we need
// to wait for the EventLoop to finish its tick and park itself. That makes sure both threads are synchronised
// so we know exactly what the EventLoop thread is currently up to (nothing at all, waiting for a wakeup).
try hookedSelector.userToKernel.assertParkedRightNow()
self.execute {
do {
try box.waitForEmptyAndSet(.init(catching: body))
} catch {
box.value = .failure(error)
}
}
try hookedSelector.assertWakeup(file: (file), line: line)
try syscallAssertions()
// Here as well, we need to synchronise and wait for the EventLoop to finish running its tick.
try hookedSelector.userToKernel.assertParkedRightNow()
return try box.takeValue().get()
}
}
extension EventLoopFuture {
/// This works like `EventLoopFuture.wait()` but can be used together with the SAL.
///
/// Using a plain `EventLoopFuture.wait()` together with the SAL would require you to spin the `EventLoop` manually
/// which is error prone and hard.
internal func salWait() throws -> Value {
let box = LockedBox<Result<Value, Error>>()
XCTAssertNoThrow(try self.eventLoop.runSAL() {
self.whenComplete { value in
// We can bang this because the LockedBox is empty so it'll immediately succeed.
try! box.waitForEmptyAndSet(value)
}
})
return try box.waitForValue().get()
}
}
protocol SALTest: AnyObject {
var group: MultiThreadedEventLoopGroup! { get set }
var wakeups: LockedBox<()>! { get set }
var userToKernelBox: LockedBox<UserToKernel>! { get set }
var kernelToUserBox: LockedBox<KernelToUser>! { get set }
}
extension SALTest {
private var selector: HookedSelector {
precondition(Array(self.group.makeIterator()).count == 1)
return self.loop._selector as! HookedSelector
}
private var loop: SelectableEventLoop {
precondition(Array(self.group.makeIterator()).count == 1)
return ((self.group!.next()) as! SelectableEventLoop)
}
func setUpSAL() {
XCTAssertNil(self.group)
XCTAssertNil(self.kernelToUserBox)
XCTAssertNil(self.userToKernelBox)
XCTAssertNil(self.wakeups)
self.kernelToUserBox = .init(description: "k2u") { newValue in
if let newValue = newValue {
SAL.printIfDebug("K --> U: \(newValue)")
}
}
self.userToKernelBox = .init(description: "u2k") { newValue in
if let newValue = newValue {
SAL.printIfDebug("U --> K: \(newValue)")
}
}
self.wakeups = .init(description: "wakeups")
self.group = MultiThreadedEventLoopGroup(numberOfThreads: 1) {
try HookedSelector(userToKernel: self.userToKernelBox,
kernelToUser: self.kernelToUserBox,
wakeups: self.wakeups)
}
}
private func makeSocketChannel(eventLoop: SelectableEventLoop,
file: StaticString = #file, line: UInt = #line) throws -> SocketChannel {
let channel = try eventLoop.runSAL(syscallAssertions: {
try self.assertdisableSIGPIPE(expectedFD: .max, result: .success(()))
try self.assertLocalAddress(address: nil)
try self.assertRemoteAddress(address: nil)
}) {
try SocketChannel(socket: HookedSocket(userToKernel: self.userToKernelBox,
kernelToUser: self.kernelToUserBox,
socket: .max),
eventLoop: eventLoop)
}
try self.assertParkedRightNow()
return channel
}
func makeSocketChannelInjectingFailures(disableSIGPIPEFailure: IOError?) throws -> SocketChannel {
let channel = try self.loop.runSAL(syscallAssertions: {
try self.assertdisableSIGPIPE(expectedFD: .max,
result: disableSIGPIPEFailure.map {
Result<Void, IOError>.failure($0)
} ?? .success(()))
guard disableSIGPIPEFailure == nil else {
// if F_NOSIGPIPE failed, we shouldn't see other syscalls.
return
}
try self.assertLocalAddress(address: nil)
try self.assertRemoteAddress(address: nil)
}) {
try SocketChannel(socket: HookedSocket(userToKernel: self.userToKernelBox,
kernelToUser: self.kernelToUserBox,
socket: .max),
eventLoop: self.loop)
}
try self.assertParkedRightNow()
return channel
}
func makeSocketChannel(file: StaticString = #file, line: UInt = #line) throws -> SocketChannel {
return try self.makeSocketChannel(eventLoop: self.loop, file: (file), line: line)
}
func makeConnectedSocketChannel(localAddress: SocketAddress?,
remoteAddress: SocketAddress,
file: StaticString = #file,
line: UInt = #line) throws -> SocketChannel {
let channel = try self.makeSocketChannel(eventLoop: self.loop)
let connectFuture = try channel.eventLoop.runSAL(syscallAssertions: {
try self.assertConnect(expectedAddress: remoteAddress, result: true)
try self.assertLocalAddress(address: localAddress)
try self.assertRemoteAddress(address: remoteAddress)
try self.assertRegister { selectable, eventSet, registration in
if case (.socketChannel(let channel), let registrationEventSet) =
(registration.channel, registration.interested) {
XCTAssertEqual(localAddress, channel.localAddress)
XCTAssertEqual(remoteAddress, channel.remoteAddress)
XCTAssertEqual(eventSet, registrationEventSet)
XCTAssertEqual(.reset, eventSet)
return true
} else {
return false
}
}
try self.assertReregister { selectable, eventSet in
XCTAssertEqual([.reset, .readEOF], eventSet)
return true
}
// because autoRead is on by default
try self.assertReregister { selectable, eventSet in
XCTAssertEqual([.reset, .readEOF, .read], eventSet)
return true
}
}) {
channel.register().flatMap {
channel.connect(to: remoteAddress)
}
}
XCTAssertNoThrow(try connectFuture.salWait())
return channel
}
func tearDownSAL() {
SAL.printIfDebug("=== TEAR DOWN ===")
XCTAssertNotNil(self.kernelToUserBox)
XCTAssertNotNil(self.userToKernelBox)
XCTAssertNotNil(self.wakeups)
XCTAssertNotNil(self.group)
let group = DispatchGroup()
group.enter()
XCTAssertNoThrow(self.group.shutdownGracefully(queue: DispatchQueue.global()) { error in
XCTAssertNil(error, "unexpected error: \(error!)")
group.leave()
})
// We're in a slightly tricky situation here. We don't know if the EventLoop thread enters `whenReady` again
// or not. If it has, we have to wake it up, so let's just put a return value in the 'kernel to user' box, just
// in case :)
XCTAssertNoThrow(try self.kernelToUserBox.waitForEmptyAndSet(.returnSelectorEvent(nil)))
group.wait()
self.group = nil
self.kernelToUserBox = nil
self.userToKernelBox = nil
self.wakeups = nil
}
func assertParkedRightNow(file: StaticString = #file, line: UInt = #line) throws {
try self.userToKernelBox.assertParkedRightNow(file: file, line: line)
}
func assertWaitingForNotification(result: SelectorEvent<NIORegistration>?,
file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)(result: \(result.debugDescription))")
try self.selector.assertSyscallAndReturn(.returnSelectorEvent(result),
file: (file), line: line) { syscall in
if case .whenReady = syscall {
return true
} else {
return false
}
}
}
func assertWakeup(file: StaticString = #file, line: UInt = #line) throws {
try self.selector.assertWakeup(file: (file), line: line)
}
func assertdisableSIGPIPE(expectedFD: CInt,
result: Result<Void, IOError>,
file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
let ret: KernelToUser
switch result {
case .success:
ret = .returnVoid
case .failure(let error):
ret = .error(error)
}
try self.selector.assertSyscallAndReturn(ret, file: (file), line: line) { syscall in
if case .disableSIGPIPE(expectedFD) = syscall {
return true
} else {
return false
}
}
}
func assertLocalAddress(address: SocketAddress?, file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(address.map {
.returnSocketAddress($0)
/* */ } ?? .error(.init(errnoCode: EOPNOTSUPP, reason: "nil passed")),
file: (file), line: line) { syscall in
if case .localAddress = syscall {
return true
} else {
return false
}
}
}
func assertRemoteAddress(address: SocketAddress?, file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(address.map { .returnSocketAddress($0) } ??
/* */ .error(.init(errnoCode: EOPNOTSUPP, reason: "nil passed")),
file: (file), line: line) { syscall in
if case .remoteAddress = syscall {
return true
} else {
return false
}
}
}
func assertConnect(expectedAddress: SocketAddress, result: Bool, file: StaticString = #file, line: UInt = #line, _ matcher: (SocketAddress) -> Bool = { _ in true }) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnBool(result), file: (file), line: line) { syscall in
if case .connect(let address) = syscall {
return address == expectedAddress
} else {
return false
}
}
}
func assertBind(expectedAddress: SocketAddress, file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnVoid, file: (file), line: line) { syscall in
if case .bind(let address) = syscall {
return address == expectedAddress
} else {
return false
}
}
}
func assertClose(expectedFD: CInt, file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnVoid, file: (file), line: line) { syscall in
if case .close(let fd) = syscall {
XCTAssertEqual(expectedFD, fd, file: (file), line: line)
return true
} else {
return false
}
}
}
func assertSetOption(expectedLevel: NIOBSDSocket.OptionLevel,
expectedOption: NIOBSDSocket.Option,
file: StaticString = #file, line: UInt = #line,
_ valueMatcher: (Any) -> Bool = { _ in true }) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnVoid, file: (file), line: line) { syscall in
if case .setOption(expectedLevel, expectedOption, let value) = syscall {
return valueMatcher(value)
} else {
return false
}
}
}
func assertRegister(file: StaticString = #file, line: UInt = #line, _ matcher: (Selectable, SelectorEventSet, NIORegistration) throws -> Bool) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnVoid, file: (file), line: line) { syscall in
if case .register(let selectable, let eventSet, let registration) = syscall {
return try matcher(selectable, eventSet, registration)
} else {
return false
}
}
}
func assertReregister(file: StaticString = #file, line: UInt = #line, _ matcher: (Selectable, SelectorEventSet) throws -> Bool) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnVoid, file: (file), line: line) { syscall in
if case .reregister(let selectable, let eventSet) = syscall {
return try matcher(selectable, eventSet)
} else {
return false
}
}
}
func assertDeregister(file: StaticString = #file, line: UInt = #line, _ matcher: (Selectable) throws -> Bool) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnVoid, file: (file), line: line) { syscall in
if case .deregister(let selectable) = syscall {
return try matcher(selectable)
} else {
return false
}
}
}
func assertWrite(expectedFD: CInt, expectedBytes: ByteBuffer, return: IOResult<Int>, file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnIOResultInt(`return`), file: (file), line: line) { syscall in
if case .write(let actualFD, let actualBytes) = syscall {
return expectedFD == actualFD && expectedBytes == actualBytes
} else {
return false
}
}
}
func assertWritev(expectedFD: CInt, expectedBytes: [ByteBuffer], return: IOResult<Int>, file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnIOResultInt(`return`), file: (file), line: line) { syscall in
if case .writev(let actualFD, let actualBytes) = syscall {
return expectedFD == actualFD && expectedBytes == actualBytes
} else {
return false
}
}
}
func assertRead(expectedFD: CInt, expectedBufferSpace: Int, return: ByteBuffer,
file: StaticString = #file, line: UInt = #line) throws {
SAL.printIfDebug("\(#function)")
try self.selector.assertSyscallAndReturn(.returnBytes(`return`),
file: (file), line: line) { syscall in
if case .read(let amount) = syscall {
XCTAssertEqual(expectedBufferSpace, amount, file: (file), line: line)
return true
} else {
return false
}
}
}
func waitForNextSyscall() throws -> UserToKernel {
return try self.userToKernelBox.waitForValue()
}
}
|