@@ -4307,18 +4307,25 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4307
4307
XCTAssertEqual ( request. headers. first ( name: " Authorization " ) , " Basic Zm9vOmJhcg== " )
4308
4308
}
4309
4309
4310
- func testHTTP1PlainTextConnectionDebugInitializer ( ) {
4310
+ func runBaseTestForHTTP1ConnectionDebugInitializer ( ssl : Bool ) {
4311
4311
let connectionDebugInitializerUtil = CountingDebugInitializerUtil ( )
4312
4312
4313
4313
// Initializing even with just `http1_1ConnectionDebugInitializer` (rather than manually
4314
4314
// modifying `config`) to ensure that the matching `init` actually wires up this argument
4315
4315
// with the respective property. This is necessary as these parameters are defaulted and can
4316
4316
// be easy to miss.
4317
4317
var config = HTTPClient . Configuration (
4318
- http1_1ConnectionDebugInitializer: connectionDebugInitializerUtil. initialize ( channel: )
4318
+ http1_1ConnectionDebugInitializer: { channel in
4319
+ return connectionDebugInitializerUtil. initialize ( channel: channel)
4320
+ }
4319
4321
)
4320
4322
config. httpVersion = . http1Only
4321
4323
4324
+ if ssl {
4325
+ config. tlsConfiguration = . clientDefault
4326
+ config. tlsConfiguration? . certificateVerification = . none
4327
+ }
4328
+
4322
4329
let client = HTTPClient (
4323
4330
eventLoopGroupProvider: . singleton,
4324
4331
configuration: config,
@@ -4329,52 +4336,26 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4329
4336
)
4330
4337
defer { XCTAssertNoThrow ( client. shutdown ( ) ) }
4331
4338
4332
- let bin = HTTPBin ( . http1_1( ssl: false , compress: false ) )
4339
+ let bin = HTTPBin ( . http1_1( ssl: ssl , compress: false ) )
4333
4340
defer { XCTAssertNoThrow ( try bin. shutdown ( ) ) }
4334
4341
4342
+ let scheme = ssl ? " https " : " http "
4343
+
4335
4344
for _ in 0 ..< 3 {
4336
- XCTAssertNoThrow ( try client. get ( url: " http ://localhost:\( bin. port) /get " ) . wait ( ) )
4345
+ XCTAssertNoThrow ( try client. get ( url: " \( scheme ) ://localhost: \( bin. port) /get " ) . wait ( ) )
4337
4346
}
4338
4347
4339
4348
// Even though multiple requests were made, the connection debug initializer must be called
4340
4349
// only once.
4341
4350
XCTAssertEqual ( connectionDebugInitializerUtil. executionCount, 1 )
4342
4351
}
4343
4352
4344
- func testHTTP1EncryptedConnectionDebugInitializer( ) {
4345
- let connectionDebugInitializerUtil = CountingDebugInitializerUtil ( )
4346
-
4347
- // Initializing even with just `http1_1ConnectionDebugInitializer` (rather than manually
4348
- // modifying `config`) to ensure that the matching `init` actually wires up this argument
4349
- // with the respective property. This is necessary as these parameters are defaulted and can
4350
- // be easy to miss.
4351
- var config = HTTPClient . Configuration (
4352
- http1_1ConnectionDebugInitializer: connectionDebugInitializerUtil. initialize ( channel: )
4353
- )
4354
- config. tlsConfiguration = . clientDefault
4355
- config. tlsConfiguration? . certificateVerification = . none
4356
- config. httpVersion = . http1Only
4357
-
4358
- let client = HTTPClient (
4359
- eventLoopGroupProvider: . singleton,
4360
- configuration: config,
4361
- backgroundActivityLogger: Logger (
4362
- label: " HTTPClient " ,
4363
- factory: StreamLogHandler . standardOutput ( label: )
4364
- )
4365
- )
4366
- defer { XCTAssertNoThrow ( client. shutdown ( ) ) }
4367
-
4368
- let bin = HTTPBin ( . http1_1( ssl: true , compress: false ) )
4369
- defer { XCTAssertNoThrow ( try bin. shutdown ( ) ) }
4370
-
4371
- for _ in 0 ..< 3 {
4372
- XCTAssertNoThrow ( try client. get ( url: " https://localhost: \( bin. port) /get " ) . wait ( ) )
4373
- }
4353
+ func testHTTP1PlainTextConnectionDebugInitializer( ) {
4354
+ runBaseTestForHTTP1ConnectionDebugInitializer ( ssl: false )
4355
+ }
4374
4356
4375
- // Even though multiple requests were made, the connection debug initializer must be called
4376
- // only once.
4377
- XCTAssertEqual ( connectionDebugInitializerUtil. executionCount, 1 )
4357
+ func testHTTP1EncryptedConnectionDebugInitializer( ) {
4358
+ runBaseTestForHTTP1ConnectionDebugInitializer ( ssl: true )
4378
4359
}
4379
4360
4380
4361
func testHTTP2ConnectionAndStreamChannelDebugInitializers( ) {
@@ -4386,10 +4367,12 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4386
4367
// that the matching `init` actually wires up these arguments with the respective
4387
4368
// properties. This is necessary as these parameters are defaulted and can be easy to miss.
4388
4369
var config = HTTPClient . Configuration (
4389
- http2ConnectionDebugInitializer:
4390
- connectionDebugInitializerUtil. initialize ( channel: ) ,
4391
- http2StreamChannelDebugInitializer:
4392
- streamChannelDebugInitializerUtil. initialize ( channel: )
4370
+ http2ConnectionDebugInitializer: { channel in
4371
+ return connectionDebugInitializerUtil. initialize ( channel: channel)
4372
+ } ,
4373
+ http2StreamChannelDebugInitializer: { channel in
4374
+ return streamChannelDebugInitializerUtil. initialize ( channel: channel)
4375
+ }
4393
4376
)
4394
4377
config. tlsConfiguration = . clientDefault
4395
4378
config. tlsConfiguration? . certificateVerification = . none
@@ -4429,7 +4412,6 @@ final class CountingDebugInitializerUtil: Sendable {
4429
4412
var executionCount : Int { self . _executionCount. withLockedValue { $0 } }
4430
4413
4431
4414
/// The acual debug initializer.
4432
- @Sendable
4433
4415
func initialize( channel: Channel ) -> EventLoopFuture < Void > {
4434
4416
self . _executionCount. withLockedValue { $0 += 1 }
4435
4417
0 commit comments