@@ -4307,7 +4307,41 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4307
4307
XCTAssertEqual ( request. headers. first ( name: " Authorization " ) , " Basic Zm9vOmJhcg== " )
4308
4308
}
4309
4309
4310
- func testHTTP1ConnectionDebugInitializer( ) {
4310
+ func testHTTP1PlainTextConnectionDebugInitializer( ) {
4311
+ let connectionDebugInitializerUtil = CountingDebugInitializerUtil ( )
4312
+
4313
+ // Initializing even with just `http1_1ConnectionDebugInitializer` (rather than manually
4314
+ // modifying `config`) to ensure that the matching `init` actually wires up this argument
4315
+ // with the respective property. This is necessary as these parameters are defaulted and can
4316
+ // be easy to miss.
4317
+ var config = HTTPClient . Configuration (
4318
+ http1_1ConnectionDebugInitializer: connectionDebugInitializerUtil. initialize ( channel: )
4319
+ )
4320
+ config. httpVersion = . http1Only
4321
+
4322
+ let client = HTTPClient (
4323
+ eventLoopGroupProvider: . singleton,
4324
+ configuration: config,
4325
+ backgroundActivityLogger: Logger (
4326
+ label: " HTTPClient " ,
4327
+ factory: StreamLogHandler . standardOutput ( label: )
4328
+ )
4329
+ )
4330
+ defer { XCTAssertNoThrow ( client. shutdown ( ) ) }
4331
+
4332
+ let bin = HTTPBin ( . http1_1( ssl: false , compress: false ) )
4333
+ defer { XCTAssertNoThrow ( try bin. shutdown ( ) ) }
4334
+
4335
+ for _ in 0 ..< 3 {
4336
+ XCTAssertNoThrow ( try client. get ( url: " http://localhost: \( bin. port) /get " ) . wait ( ) )
4337
+ }
4338
+
4339
+ // Even though multiple requests were made, the connection debug initializer must be called
4340
+ // only once.
4341
+ XCTAssertEqual ( connectionDebugInitializerUtil. executionCount, 1 )
4342
+ }
4343
+
4344
+ func testHTTP1EncryptedConnectionDebugInitializer( ) {
4311
4345
let connectionDebugInitializerUtil = CountingDebugInitializerUtil ( )
4312
4346
4313
4347
// Initializing even with just `http1_1ConnectionDebugInitializer` (rather than manually
@@ -4340,7 +4374,7 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4340
4374
4341
4375
// Even though multiple requests were made, the connection debug initializer must be called
4342
4376
// only once.
4343
- XCTAssertEqual ( connectionDebugInitializerUtil. executionCount. withLockedValue { $0 } , 1 )
4377
+ XCTAssertEqual ( connectionDebugInitializerUtil. executionCount, 1 )
4344
4378
}
4345
4379
4346
4380
func testHTTP2ConnectionAndStreamChannelDebugInitializers( ) {
@@ -4382,32 +4416,27 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4382
4416
4383
4417
// Even though multiple requests were made, the connection debug initializer must be called
4384
4418
// only once.
4385
- XCTAssertEqual (
4386
- connectionDebugInitializerUtil. executionCount. withLockedValue { $0 } ,
4387
- 1
4388
- )
4419
+ XCTAssertEqual ( connectionDebugInitializerUtil. executionCount, 1 )
4389
4420
4390
4421
// The stream channel debug initializer must be called only as much as the number of
4391
4422
// requests made.
4392
- XCTAssertEqual (
4393
- streamChannelDebugInitializerUtil. executionCount. withLockedValue { $0 } ,
4394
- numberOfRequests
4395
- )
4423
+ XCTAssertEqual ( streamChannelDebugInitializerUtil. executionCount, numberOfRequests)
4396
4424
}
4397
4425
}
4398
4426
4399
4427
final class CountingDebugInitializerUtil : Sendable {
4400
- let executionCount : NIOLockedValueBox < Int >
4428
+ private let _executionCount : NIOLockedValueBox < Int >
4429
+ var executionCount : Int { self . _executionCount. withLockedValue { $0 } }
4401
4430
4402
4431
/// The acual debug initializer.
4403
4432
@Sendable
4404
4433
func initialize( channel: Channel ) -> EventLoopFuture < Void > {
4405
- self . executionCount . withLockedValue { $0 += 1 }
4434
+ self . _executionCount . withLockedValue { $0 += 1 }
4406
4435
4407
4436
return channel. eventLoop. makeSucceededVoidFuture ( )
4408
4437
}
4409
4438
4410
4439
init ( ) {
4411
- self . executionCount = . init( 0 )
4440
+ self . _executionCount = . init( 0 )
4412
4441
}
4413
4442
}
0 commit comments