EventLoopFuture+Assertions.swift 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright 2019, gRPC Authors All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import Foundation
  17. import NIO
  18. import XCTest
  19. extension EventLoopFuture where Value: Equatable {
  20. /// Registers a callback which asserts the value promised by this future is equal to
  21. /// the expected value. Causes a test failure if the future returns an error.
  22. ///
  23. /// - Parameters:
  24. /// - expected: The expected value.
  25. /// - expectation: A test expectation to fulfill once the future has completed.
  26. func assertEqual(_ expected: Value, fulfill expectation: XCTestExpectation, file: StaticString = #file, line: UInt = #line) {
  27. self.whenComplete { result in
  28. defer {
  29. expectation.fulfill()
  30. }
  31. switch result {
  32. case .success(let actual):
  33. XCTAssertEqual(expected, actual, file: file, line: line)
  34. case .failure(let error):
  35. XCTFail("Expecteded '\(expected)' but received error: \(error)", file: file, line: line)
  36. }
  37. }
  38. }
  39. }
  40. extension EventLoopFuture {
  41. /// Registers a callback which asserts that this future is fulfilled with an error. Causes a test
  42. /// failure if the future is not fulfilled with an error.
  43. ///
  44. /// Callers can additionally verify the error by providing an error handler.
  45. ///
  46. /// - Parameters:
  47. /// - expectation: A test expectation to fulfill once the future has completed.
  48. /// - handler: A block to run additional verification on the error. Defaults to no-op.
  49. func assertError(fulfill expectation: XCTestExpectation, file: StaticString = #file, line: UInt = #line, handler: @escaping (Error) -> Void = { _ in }) {
  50. self.whenComplete { result in
  51. defer {
  52. expectation.fulfill()
  53. }
  54. switch result {
  55. case .success:
  56. XCTFail("Unexpectedly received \(Value.self), expected an error", file: file, line: line)
  57. case .failure(let error):
  58. handler(error)
  59. }
  60. }
  61. }
  62. /// Registers a callback which fulfills an expectation when the future succeeds.
  63. ///
  64. /// - Parameter expectation: The expectation to fulfill.
  65. func assertSuccess(fulfill expectation: XCTestExpectation, file: StaticString = #file, line: UInt = #line) {
  66. self.whenSuccess { _ in
  67. expectation.fulfill()
  68. }
  69. }
  70. }
  71. extension EventLoopFuture {
  72. // TODO: Replace with `always` once https://github.com/apple/swift-nio/pull/981 is released.
  73. func peekError(callback: @escaping (Error) -> ()) -> EventLoopFuture<Value> {
  74. self.whenFailure(callback)
  75. return self
  76. }
  77. // TODO: Replace with `always` once https://github.com/apple/swift-nio/pull/981 is released.
  78. func peek(callback: @escaping (Value) -> ()) -> EventLoopFuture<Value> {
  79. self.whenSuccess(callback)
  80. return self
  81. }
  82. }