| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 |
- /*
- * Copyright 2020, gRPC Authors All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- @testable import GRPC
- import NIO
- import NIOHTTP2
- import XCTest
- class ConnectionManagerTests: GRPCTestCase {
- private let loop = EmbeddedEventLoop()
- private let recorder = RecordingConnectivityDelegate()
- private var defaultConfiguration: ClientConnection.Configuration {
- return ClientConnection.Configuration(
- target: .unixDomainSocket("/ignored"),
- eventLoopGroup: self.loop,
- connectivityStateDelegate: self.recorder,
- connectionBackoff: nil,
- backgroundActivityLogger: self.clientLogger
- )
- }
- override func tearDown() {
- XCTAssertNoThrow(try self.loop.syncShutdownGracefully())
- super.tearDown()
- }
- private func waitForStateChange<Result>(
- from: ConnectivityState,
- to: ConnectivityState,
- timeout: DispatchTimeInterval = .seconds(1),
- body: () throws -> Result
- ) rethrows -> Result {
- self.recorder.expectChange {
- XCTAssertEqual($0, Change(from: from, to: to))
- }
- let result = try body()
- self.recorder.waitForExpectedChanges(timeout: timeout)
- return result
- }
- private func waitForStateChanges<Result>(
- _ changes: [Change],
- timeout: DispatchTimeInterval = .seconds(1),
- body: () throws -> Result
- ) rethrows -> Result {
- self.recorder.expectChanges(changes.count) {
- XCTAssertEqual($0, changes)
- }
- let result = try body()
- self.recorder.waitForExpectedChanges(timeout: timeout)
- return result
- }
- }
- extension ConnectionManagerTests {
- func testIdleShutdown() throws {
- let manager = ConnectionManager(configuration: self.defaultConfiguration, logger: self.logger)
- try self.waitForStateChange(from: .idle, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- // Getting a channel should fail.
- let channel = manager.getChannel()
- self.loop.run()
- XCTAssertThrowsError(try channel.wait())
- }
- func testConnectFromIdleFailsWithNoReconnect() {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- let channel: EventLoopFuture<Channel> = self.waitForStateChange(from: .idle, to: .connecting) {
- let channel = manager.getChannel()
- self.loop.run()
- return channel
- }
- self.waitForStateChange(from: .connecting, to: .shutdown) {
- channelPromise.fail(DoomedChannelError())
- }
- XCTAssertThrowsError(try channel.wait()) {
- XCTAssertTrue($0 is DoomedChannelError)
- }
- }
- func testConnectAndDisconnect() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- // Start the connection.
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Setup the real channel and activate it.
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a settings frame on the root stream; this'll make the channel 'ready'.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try channel.writeInbound(frame))
- }
- // Close the channel.
- try self.waitForStateChange(from: .ready, to: .shutdown) {
- // Now the channel should be available: shut it down,
- XCTAssertNoThrow(try readyChannel.flatMap { $0.close(mode: .all) }.wait())
- }
- }
- func testConnectAndIdle() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- // Start the connection.
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Setup the channel.
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a settings frame on the root stream; this'll make the channel 'ready'.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try channel.writeInbound(frame))
- // Wait for the channel, it _must_ be ready now.
- XCTAssertNoThrow(try readyChannel.wait())
- }
- // Go idle. This will shutdown the channel.
- try self.waitForStateChange(from: .ready, to: .idle) {
- self.loop.advanceTime(by: .minutes(5))
- XCTAssertNoThrow(try readyChannel.flatMap { $0.closeFuture }.wait())
- }
- // Now shutdown.
- try self.waitForStateChange(from: .idle, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- }
- func testIdleTimeoutWhenThereAreActiveStreams() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- // Start the connection.
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Setup the channel.
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a settings frame on the root stream; this'll make the channel 'ready'.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try channel.writeInbound(frame))
- // Wait for the channel, it _must_ be ready now.
- XCTAssertNoThrow(try readyChannel.wait())
- }
- // "create" a stream; the details don't matter here.
- let streamCreated = NIOHTTP2StreamCreatedEvent(
- streamID: 1,
- localInitialWindowSize: nil,
- remoteInitialWindowSize: nil
- )
- channel.pipeline.fireUserInboundEventTriggered(streamCreated)
- // Wait for the idle timeout: this should _not_ cause the channel to idle.
- self.loop.advanceTime(by: .minutes(5))
- // Now we're going to close the stream and wait for an idle timeout and then shutdown.
- self.waitForStateChange(from: .ready, to: .idle) {
- // Close the stream.
- let streamClosed = StreamClosedEvent(streamID: 1, reason: nil)
- channel.pipeline.fireUserInboundEventTriggered(streamClosed)
- // ... wait for the idle timeout,
- self.loop.advanceTime(by: .minutes(5))
- }
- // Now shutdown.
- try self.waitForStateChange(from: .idle, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- }
- func testConnectAndThenBecomeInactive() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Setup the channel.
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- try self.waitForStateChange(from: .connecting, to: .shutdown) {
- // Okay: now close the channel; the `readyChannel` future has not been completed yet.
- XCTAssertNoThrow(try channel.close(mode: .all).wait())
- }
- // We failed to get a channel and we don't have reconnect configured: we should be shutdown and
- // the `readyChannel` should error.
- XCTAssertThrowsError(try readyChannel.wait())
- }
- func testConnectOnSecondAttempt() throws {
- let channelPromise: EventLoopPromise<Channel> = self.loop.makePromise()
- let channelFutures: [EventLoopFuture<Channel>] = [
- self.loop.makeFailedFuture(DoomedChannelError()),
- channelPromise.futureResult,
- ]
- var channelFutureIterator = channelFutures.makeIterator()
- var configuration = self.defaultConfiguration
- configuration.connectionBackoff = .oneSecondFixed
- let manager = ConnectionManager.testingOnly(configuration: configuration, logger: self.logger) {
- guard let next = channelFutureIterator.next() else {
- XCTFail("Too many channels requested")
- return self.loop.makeFailedFuture(DoomedChannelError())
- }
- return next
- }
- let readyChannel: EventLoopFuture<Channel> = self.waitForStateChanges([
- Change(from: .idle, to: .connecting),
- Change(from: .connecting, to: .transientFailure),
- ]) {
- // Get a channel.
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Get a channel from the manager: it is a future for the same channel.
- let anotherReadyChannel = manager.getChannel()
- self.loop.run()
- // Move time forwards by a second to start the next connection attempt.
- self.waitForStateChange(from: .transientFailure, to: .connecting) {
- self.loop.advanceTime(by: .seconds(1))
- }
- // Setup the actual channel and complete the promise.
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a SETTINGS frame on the root stream.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try channel.writeInbound(frame))
- }
- // Wait for the channel, it _must_ be ready now.
- XCTAssertNoThrow(try readyChannel.wait())
- XCTAssertNoThrow(try anotherReadyChannel.wait())
- // Now shutdown.
- try self.waitForStateChange(from: .ready, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- }
- func testShutdownWhileConnecting() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Now shutdown.
- try self.waitForStateChange(from: .connecting, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- // The channel we were requesting should fail.
- XCTAssertThrowsError(try readyChannel.wait())
- // We still have our channel promise to fulfil: if it succeeds then it too should be closed.
- channelPromise.succeed(EmbeddedChannel(loop: self.loop))
- let channel = try channelPromise.futureResult.wait()
- self.loop.run()
- XCTAssertNoThrow(try channel.closeFuture.wait())
- }
- func testShutdownWhileTransientFailure() throws {
- var configuration = self.defaultConfiguration
- configuration.connectionBackoff = .oneSecondFixed
- let manager = ConnectionManager.testingOnly(configuration: configuration, logger: self.logger) {
- self.loop.makeFailedFuture(DoomedChannelError())
- }
- let readyChannel: EventLoopFuture<Channel> = self.waitForStateChanges([
- Change(from: .idle, to: .connecting),
- Change(from: .connecting, to: .transientFailure),
- ]) {
- // Get a channel.
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Now shutdown.
- try self.waitForStateChange(from: .transientFailure, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- // The channel we were requesting should fail.
- XCTAssertThrowsError(try readyChannel.wait())
- }
- func testShutdownWhileActive() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Prepare the channel
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // (No state change expected here: active is an internal state.)
- // Now shutdown.
- try self.waitForStateChange(from: .connecting, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- // The channel we were requesting should fail.
- XCTAssertThrowsError(try readyChannel.wait())
- }
- func testShutdownWhileShutdown() throws {
- let manager = ConnectionManager(configuration: self.defaultConfiguration, logger: self.logger)
- try self.waitForStateChange(from: .idle, to: .shutdown) {
- let firstShutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try firstShutdown.wait())
- }
- let secondShutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try secondShutdown.wait())
- }
- func testTransientFailureWhileActive() throws {
- var configuration = self.defaultConfiguration
- configuration.connectionBackoff = .oneSecondFixed
- let channelPromise: EventLoopPromise<Channel> = self.loop.makePromise()
- let channelFutures: [EventLoopFuture<Channel>] = [
- channelPromise.futureResult,
- self.loop.makeFailedFuture(DoomedChannelError()),
- ]
- var channelFutureIterator = channelFutures.makeIterator()
- let manager = ConnectionManager.testingOnly(configuration: configuration, logger: self.logger) {
- guard let next = channelFutureIterator.next() else {
- XCTFail("Too many channels requested")
- return self.loop.makeFailedFuture(DoomedChannelError())
- }
- return next
- }
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Prepare the channel
- let firstChannel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(firstChannel)
- XCTAssertNoThrow(
- try firstChannel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // (No state change expected here: active is an internal state.)
- // Close the channel (simulate e.g. TLS handshake failed)
- try self.waitForStateChange(from: .connecting, to: .transientFailure) {
- XCTAssertNoThrow(try firstChannel.close().wait())
- }
- // Start connecting again.
- self.waitForStateChanges([
- Change(from: .transientFailure, to: .connecting),
- Change(from: .connecting, to: .transientFailure),
- ]) {
- self.loop.advanceTime(by: .seconds(1))
- }
- // Now shutdown
- try self.waitForStateChange(from: .transientFailure, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- // The channel never came up: it should be throw.
- XCTAssertThrowsError(try readyChannel.wait())
- }
- func testTransientFailureWhileReady() throws {
- var configuration = self.defaultConfiguration
- configuration.connectionBackoff = .oneSecondFixed
- let firstChannelPromise: EventLoopPromise<Channel> = self.loop.makePromise()
- let secondChannelPromise: EventLoopPromise<Channel> = self.loop.makePromise()
- let channelFutures: [EventLoopFuture<Channel>] = [
- firstChannelPromise.futureResult,
- secondChannelPromise.futureResult,
- ]
- var channelFutureIterator = channelFutures.makeIterator()
- let manager = ConnectionManager.testingOnly(configuration: configuration, logger: self.logger) {
- guard let next = channelFutureIterator.next() else {
- XCTFail("Too many channels requested")
- return self.loop.makeFailedFuture(DoomedChannelError())
- }
- return next
- }
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Prepare the first channel
- let firstChannel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- firstChannelPromise.succeed(firstChannel)
- XCTAssertNoThrow(
- try firstChannel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a SETTINGS frame on the root stream.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try firstChannel.writeInbound(frame))
- }
- // Channel should now be ready.
- XCTAssertNoThrow(try readyChannel.wait())
- // Kill the first channel.
- try self.waitForStateChange(from: .ready, to: .transientFailure) {
- XCTAssertNoThrow(try firstChannel.close().wait())
- }
- // Run to start connecting again.
- self.waitForStateChange(from: .transientFailure, to: .connecting) {
- self.loop.advanceTime(by: .seconds(1))
- }
- // Prepare the second channel
- let secondChannel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- secondChannelPromise.succeed(secondChannel)
- XCTAssertNoThrow(
- try secondChannel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a SETTINGS frame on the root stream.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try secondChannel.writeInbound(frame))
- }
- // Now shutdown
- try self.waitForStateChange(from: .ready, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- }
- func testGoAwayWhenReady() throws {
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Setup the channel.
- let channel = EmbeddedChannel(
- handler: GRPCIdleHandler(mode: .client(manager), logger: self.logger),
- loop: self.loop
- )
- channelPromise.succeed(channel)
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- try self.waitForStateChange(from: .connecting, to: .ready) {
- // Write a SETTINGS frame on the root stream.
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try channel.writeInbound(frame))
- }
- // Wait for the channel, it _must_ be ready now.
- XCTAssertNoThrow(try readyChannel.wait())
- // Send a GO_AWAY; the details don't matter. This will cause the connection to go idle and the
- // channel to close.
- try self.waitForStateChange(from: .ready, to: .idle) {
- let goAway = HTTP2Frame(
- streamID: .rootStream,
- payload: .goAway(lastStreamID: 1, errorCode: .noError, opaqueData: nil)
- )
- XCTAssertNoThrow(try channel.writeInbound(goAway))
- }
- self.loop.run()
- XCTAssertNoThrow(try channel.closeFuture.wait())
- // Now shutdown
- try self.waitForStateChange(from: .idle, to: .shutdown) {
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- }
- }
- func testDoomedOptimisticChannelFromIdle() {
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- self.loop.makeFailedFuture(DoomedChannelError())
- }
- let candidate = manager.getOptimisticChannel()
- self.loop.run()
- XCTAssertThrowsError(try candidate.wait())
- }
- func testDoomedOptimisticChannelFromConnecting() throws {
- let promise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- promise.futureResult
- }
- self.waitForStateChange(from: .idle, to: .connecting) {
- // Trigger channel creation, and a connection attempt, we don't care about the channel.
- _ = manager.getChannel()
- self.loop.run()
- }
- // We're connecting: get an optimistic channel.
- let optimisticChannel = manager.getOptimisticChannel()
- self.loop.run()
- // Fail the promise.
- promise.fail(DoomedChannelError())
- XCTAssertThrowsError(try optimisticChannel.wait())
- }
- func testOptimisticChannelFromTransientFailure() throws {
- var configuration = self.defaultConfiguration
- configuration.connectionBackoff = ConnectionBackoff()
- let manager = ConnectionManager.testingOnly(configuration: configuration, logger: self.logger) {
- self.loop.makeFailedFuture(DoomedChannelError())
- }
- self.waitForStateChanges([
- Change(from: .idle, to: .connecting),
- Change(from: .connecting, to: .transientFailure),
- ]) {
- // Trigger channel creation, and a connection attempt, we don't care about the channel.
- _ = manager.getChannel()
- self.loop.run()
- }
- // Now we're sitting in transient failure. Get a channel optimistically.
- let optimisticChannel = manager.getOptimisticChannel()
- self.loop.run()
- XCTAssertThrowsError(try optimisticChannel.wait())
- }
- func testOptimisticChannelFromShutdown() throws {
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- self.loop.makeFailedFuture(DoomedChannelError())
- }
- let shutdown = manager.shutdown()
- self.loop.run()
- XCTAssertNoThrow(try shutdown.wait())
- // Get a channel optimistically. It'll fail, obviously.
- let channel = manager.getOptimisticChannel()
- self.loop.run()
- XCTAssertThrowsError(try channel.wait())
- }
- func testDoubleIdle() throws {
- class CloseDroppingHandler: ChannelOutboundHandler {
- typealias OutboundIn = Any
- func close(context: ChannelHandlerContext, mode: CloseMode,
- promise: EventLoopPromise<Void>?) {
- promise?
- .fail(GRPCStatus(code: .unavailable, message: "Purposefully dropping channel close"))
- }
- }
- let channelPromise = self.loop.makePromise(of: Channel.self)
- let manager = ConnectionManager.testingOnly(
- configuration: self.defaultConfiguration,
- logger: self.logger
- ) {
- channelPromise.futureResult
- }
- // Start the connection.
- let readyChannel: EventLoopFuture<Channel> = self
- .waitForStateChange(from: .idle, to: .connecting) {
- let readyChannel = manager.getChannel()
- self.loop.run()
- return readyChannel
- }
- // Setup the real channel and activate it.
- let channel = EmbeddedChannel(loop: self.loop)
- XCTAssertNoThrow(try channel.pipeline.addHandlers([
- CloseDroppingHandler(),
- GRPCIdleHandler(mode: .client(manager), logger: manager.logger),
- ]).wait())
- channelPromise.succeed(channel)
- self.loop.run()
- XCTAssertNoThrow(
- try channel.connect(to: SocketAddress(unixDomainSocketPath: "/ignored"))
- .wait()
- )
- // Write a SETTINGS frame on the root stream.
- try self.waitForStateChange(from: .connecting, to: .ready) {
- let frame = HTTP2Frame(streamID: .rootStream, payload: .settings(.settings([])))
- XCTAssertNoThrow(try channel.writeInbound(frame))
- }
- // The channel should now be ready.
- XCTAssertNoThrow(try readyChannel.wait())
- // Send a GO_AWAY; the details don't matter. This will cause the connection to go idle and the
- // channel to close.
- try self.waitForStateChange(from: .ready, to: .idle) {
- let goAway = HTTP2Frame(
- streamID: .rootStream,
- payload: .goAway(lastStreamID: 1, errorCode: .noError, opaqueData: nil)
- )
- XCTAssertNoThrow(try channel.writeInbound(goAway))
- }
- // We dropped the close; now wait for the scheduled idle to fire.
- //
- // Previously doing this this would fail a precondition.
- self.loop.advanceTime(by: .minutes(5))
- }
- }
- internal struct Change: Hashable, CustomStringConvertible {
- var from: ConnectivityState
- var to: ConnectivityState
- var description: String {
- return "\(self.from) → \(self.to)"
- }
- }
- internal class RecordingConnectivityDelegate: ConnectivityStateDelegate {
- private let serialQueue = DispatchQueue(label: "io.grpc.testing")
- private let semaphore = DispatchSemaphore(value: 0)
- private var expectation: Expectation = .noExpectation
- private enum Expectation {
- /// We have no expectation of any changes. We'll just ignore any changes.
- case noExpectation
- /// We expect one change.
- case one((Change) -> Void)
- /// We expect 'count' changes.
- case some(count: Int, recorded: [Change], ([Change]) -> Void)
- var count: Int {
- switch self {
- case .noExpectation:
- return 0
- case .one:
- return 1
- case let .some(count, _, _):
- return count
- }
- }
- }
- func connectivityStateDidChange(from oldState: ConnectivityState,
- to newState: ConnectivityState) {
- self.serialQueue.async {
- switch self.expectation {
- case let .one(verify):
- // We don't care about future changes.
- self.expectation = .noExpectation
- // Verify and notify.
- verify(Change(from: oldState, to: newState))
- self.semaphore.signal()
- case .some(let count, var recorded, let verify):
- recorded.append(Change(from: oldState, to: newState))
- if recorded.count == count {
- // We don't care about future changes.
- self.expectation = .noExpectation
- // Verify and notify.
- verify(recorded)
- self.semaphore.signal()
- } else {
- // Still need more responses.
- self.expectation = .some(count: count, recorded: recorded, verify)
- }
- case .noExpectation:
- // Ignore any changes.
- ()
- }
- }
- }
- func expectChanges(_ count: Int, verify: @escaping ([Change]) -> Void) {
- self.serialQueue.async {
- self.expectation = .some(count: count, recorded: [], verify)
- }
- }
- func expectChange(verify: @escaping (Change) -> Void) {
- self.serialQueue.async {
- self.expectation = .one(verify)
- }
- }
- func waitForExpectedChanges(timeout: DispatchTimeInterval) {
- let result = self.semaphore.wait(timeout: .now() + timeout)
- switch result {
- case .success:
- ()
- case .timedOut:
- XCTFail("Timed out before verifying \(self.expectation.count) change(s)")
- }
- }
- }
- private extension ConnectionBackoff {
- static let oneSecondFixed = ConnectionBackoff(
- initialBackoff: 1.0,
- maximumBackoff: 1.0,
- multiplier: 1.0,
- jitter: 0.0
- )
- }
- private struct DoomedChannelError: Error {}
|