EventLoopFuture+Assertions.swift 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. }