swift-server/async-http-client

Flaky test HTTP1ConnectionTests.testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader

Closed this issue · 5 comments

The test HTTP1ConnectionTests.testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader failed once twice on Swift 5.2 CI with the error message:

/code/Tests/AsyncHTTPClientTests/HTTP1ConnectionTests.swift:365: error: HTTP1ConnectionTests.testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader : XCTAssertEqual failed: ("1") is not equal to ("0") - 

func testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader() {
let eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 1)
let eventLoop = eventLoopGroup.next()
defer { XCTAssertNoThrow(try eventLoopGroup.syncShutdownGracefully()) }
let httpBin = HTTPBin(handlerFactory: { _ in AfterRequestCloseConnectionChannelHandler() })
var maybeChannel: Channel?
XCTAssertNoThrow(maybeChannel = try ClientBootstrap(group: eventLoop).connect(host: "localhost", port: httpBin.port).wait())
let connectionDelegate = MockConnectionDelegate()
let logger = Logger(label: "test")
var maybeConnection: HTTP1Connection?
XCTAssertNoThrow(maybeConnection = try eventLoop.submit { try HTTP1Connection.start(
channel: XCTUnwrap(maybeChannel),
connectionID: 0,
delegate: connectionDelegate,
configuration: .init(),
logger: logger
) }.wait())
guard let connection = maybeConnection else { return XCTFail("Expected to have a connection here") }
var maybeRequest: HTTPClient.Request?
XCTAssertNoThrow(maybeRequest = try HTTPClient.Request(url: "http://localhost:\(httpBin.port)/"))
guard let request = maybeRequest else { return XCTFail("Expected to be able to create a request") }
let delegate = ResponseAccumulator(request: request)
var maybeRequestBag: RequestBag<ResponseAccumulator>?
XCTAssertNoThrow(maybeRequestBag = try RequestBag(
request: request,
eventLoopPreference: .delegate(on: eventLoopGroup.next()),
task: .init(eventLoop: eventLoopGroup.next(), logger: logger),
redirectHandler: nil,
connectionDeadline: .now() + .seconds(30),
requestOptions: .forTests(),
delegate: delegate
))
guard let requestBag = maybeRequestBag else { return XCTFail("Expected to be able to create a request bag") }
connection.executeRequest(requestBag)
var response: HTTPClient.Response?
XCTAssertNoThrow(response = try requestBag.task.futureResult.wait())
XCTAssertEqual(response?.status, .ok)
XCTAssertEqual(connectionDelegate.hitConnectionReleased, 1)
XCTAssertNoThrow(try XCTUnwrap(maybeChannel).closeFuture.wait())
XCTAssertEqual(connectionDelegate.hitConnectionClosed, 1)
XCTAssertEqual(httpBin.activeConnections, 0)
}

Complete CI build log

https://ci.swiftserver.group/job/async-http-client-swift52-prb/917/console

Running as SYSTEM
Setting status of 4f0346e669a130b18928b83226e2a121be53faa9 to PENDING with url https://ci.swiftserver.group/job/async-http-client-swift52-prb/917/ and message: 'Build started for merge commit.'
Using context: pull request validation (5.2)
Building remotely on agent 6 (agents) in workspace /home/jenkins/workspace/async-http-client-swift52-prb
No build steps declared
[ssh-agent] Looking for ssh-agent implementation...
[ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
$ ssh-agent
SSH_AUTH_SOCK=/tmp/ssh-0PtQBrvaAqyw/agent.15105
SSH_AGENT_PID=15107
[ssh-agent] Started.
Running ssh-add (command line suppressed)
Identity added: /home/jenkins/workspace/async-http-client-swift52-prb@tmp/private_key_338398102877762882.key (ci@swiftnio.io)
[ssh-agent] Using credentials jenkins (ssh key to connect jenkins agents)
The recommended git tool is: NONE
using credential swift-server-bot-deployment-key
 > git rev-parse --resolve-git-dir /home/jenkins/workspace/async-http-client-swift52-prb/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url git@github.com:swift-server/async-http-client.git # timeout=10
Fetching upstream changes from git@github.com:swift-server/async-http-client.git
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials swift-server-bot deployment key
[INFO] Currently running in a labeled security context
[INFO] Currently SELinux is 'enforcing' on the host
 > /usr/bin/chcon --type=ssh_home_t /home/jenkins/workspace/async-http-client-swift52-prb@tmp/jenkins-gitclient-ssh4898550277465722591.key
 > git fetch --tags --progress git@github.com:swift-server/async-http-client.git +refs/pull/467/*:refs/remotes/origin/pr/467/* # timeout=10
 > git rev-parse refs/remotes/origin/pr/467/merge^{commit} # timeout=10
Checking out Revision 0aee30ee0eab636a6e0791a9fadd89c82779bcb4 (refs/remotes/origin/pr/467/merge)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 0aee30ee0eab636a6e0791a9fadd89c82779bcb4 # timeout=10
Commit message: "Merge 4f0346e669a130b18928b83226e2a121be53faa9 into 7d1ed4cca578ff9c3ffd8aab6111c67b2f4bde52"
First time build. Skipping changelog.
Cleaning workspace
 > git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > git reset --hard # timeout=10
 > git clean -fdx # timeout=10
[async-http-client-swift52-prb] $ /bin/sh -xe /tmp/jenkins3999226725908338796.sh
+ docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.1604.52.yaml -p async-http-client-swift52-prb build --pull
docs uses an image, skipping
common uses an image, skipping
soundness uses an image, skipping
shell uses an image, skipping
test uses an image, skipping
Building runtime-setup
Sending build context to Docker daemon  9.728kB

Step 1/21 : ARG swift_version=5.2
Step 2/21 : ARG ubuntu_version=bionic
Step 3/21 : ARG base_image=swift:$swift_version-$ubuntu_version
Step 4/21 : FROM $base_image
5.2-xenial: Pulling from library/swift
Digest: sha256:ceb9df168079e3c0c2c0656ff7e22f0ed9a6c7da46a821721851b5fac4faa483
Status: Image is up to date for swift:5.2-xenial
 ---> 4e19a2c363e8
Step 5/21 : ARG swift_version
 ---> Using cache
 ---> 515e8f638019
Step 6/21 : ARG ubuntu_version
 ---> Using cache
 ---> ce19f2e37bb4
Step 7/21 : RUN apt-get update && apt-get install -y locales locales-all
 ---> Using cache
 ---> b566599e995b
Step 8/21 : ENV LC_ALL en_US.UTF-8
 ---> Using cache
 ---> c42cbd88b23f
Step 9/21 : ENV LANG en_US.UTF-8
 ---> Using cache
 ---> 2d86e54df10a
Step 10/21 : ENV LANGUAGE en_US.UTF-8
 ---> Using cache
 ---> 9ba21f78f0b4
Step 11/21 : RUN apt-get update && apt-get install -y wget
 ---> Using cache
 ---> 50334205f071
Step 12/21 : RUN apt-get update && apt-get install -y lsof dnsutils netcat-openbsd net-tools libz-dev curl jq # used by integration tests
 ---> Using cache
 ---> fb2b008ca25d
Step 13/21 : RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev build-essential
 ---> Using cache
 ---> 3db9a180462f
Step 14/21 : RUN if [ "${ubuntu_version}" = "focal" ] ; then echo "gem: --no-document" > ~/.gemrc ; fi
 ---> Using cache
 ---> facffcc3885b
Step 15/21 : RUN if [ "${ubuntu_version}" = "focal" ] ; then gem install jazzy ; fi
 ---> Using cache
 ---> c2024a3515f4
Step 16/21 : RUN mkdir -p $HOME/.tools
 ---> Using cache
 ---> 3968a50d4122
Step 17/21 : RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile
 ---> Using cache
 ---> 9e13eee30c1f
Step 18/21 : ARG swiftformat_version=0.44.6
 ---> Using cache
 ---> 8d4251b6db8f
Step 19/21 : RUN git clone --branch $swiftformat_version --depth 1 https://github.com/nicklockwood/SwiftFormat $HOME/.tools/swift-format
 ---> Using cache
 ---> 4db0d9065376
Step 20/21 : RUN cd $HOME/.tools/swift-format && swift build -c release
 ---> Using cache
 ---> 275cab094220
Step 21/21 : RUN ln -s $HOME/.tools/swift-format/.build/release/swiftformat $HOME/.tools/swiftformat
 ---> Using cache
 ---> bb08722065f5
Successfully built bb08722065f5
Successfully tagged async-http-client:16.04-5.2
[async-http-client-swift52-prb] $ /bin/sh -xe /tmp/jenkins8842827648105536251.sh
+ docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.1604.52.yaml -p async-http-client-swift52-prb run --rm test
Starting async-http-client-swift52-prb_runtime-setup_1 ... 
Starting async-http-client-swift52-prb_runtime-setup_1 ... done
Creating async-http-client-swift52-prb_test_run        ... 
Creating async-http-client-swift52-prb_test_run        ... done
+ '[' '' ']'
+ '[' -d /etc/profile.d ']'
+ for i in '/etc/profile.d/*.sh'
+ '[' -r '/etc/profile.d/*.sh' ']'
+ unset i
+ '[' /bin/bash ']'
+ '[' -f /root/.bashrc ']'
+ . /root/.bashrc
++ '[' -z '' ']'
++ return
+ mesg n
mesg: ttyname failed: Inappropriate ioctl for device
+ true
+ export PATH=/root/.tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ PATH=/root/.tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ swift test -Xswiftc -warnings-as-errors --sanitize=thread
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-nio.git
Cloning https://github.com/apple/swift-log.git
Resolving https://github.com/apple/swift-log.git at 1.4.2
Cloning https://github.com/apple/swift-nio-transport-services.git
Resolving https://github.com/apple/swift-nio-transport-services.git at 1.11.3
Cloning https://github.com/apple/swift-nio-extras.git
Resolving https://github.com/apple/swift-nio-extras.git at 1.10.2
Cloning https://github.com/apple/swift-nio-http2.git
Resolving https://github.com/apple/swift-nio-http2.git at 1.18.4
Cloning https://github.com/apple/swift-nio.git
Resolving https://github.com/apple/swift-nio.git at 2.33.0
Cloning https://github.com/apple/swift-nio-ssl.git
Resolving https://github.com/apple/swift-nio-ssl.git at 2.16.1
[1/466] Compiling CNIOWindows WSAStartup.c
[2/466] Compiling CNIOLinux liburing_shims.c
[3/466] Compiling CNIODarwin shim.c
[4/466] Compiling CNIOWindows shim.c
[5/466] Compiling CNIOExtrasZlib empty.c
[6/466] Compiling CNIOLinux shim.c
[7/466] Compiling CNIOHTTPParser c_nio_http_parser.c
[8/466] Compiling CNIOBoringSSLShims shims.c
[9/466] Compiling tls_record.cc
[10/466] Compiling tls13_both.cc
[11/466] Compiling tls13_client.cc
[12/466] Compiling tls_method.cc
[13/466] Compiling Logging Locks.swift
[15/466] Compiling tls13_server.cc
[16/466] Compiling tls13_enc.cc
[17/466] Compiling Logging LogHandler.swift
[19/467] Compiling t1_enc.cc
[20/467] Merging module _NIODataStructures
[21/467] Compiling Logging Logging.swift
[22/468] Compiling ssl_versions.cc
[23/468] Wrapping AST for _NIODataStructures for debugging
[24/468] Merging module Logging
[25/468] Compiling ssl_transcript.cc
[26/468] Compiling ssl_stat.cc
[27/468] Wrapping AST for Logging for debugging
[28/468] Compiling ssl_x509.cc
[29/468] Compiling ssl_privkey.cc
[30/468] Compiling ssl_session.cc
[31/468] Compiling ssl_file.cc
[32/468] Compiling ssl_buffer.cc
[33/468] Compiling ssl_key_share.cc
[34/468] Compiling ssl_cipher.cc
[35/468] Compiling ssl_lib.cc
[36/468] Compiling ssl_cert.cc
[37/468] Compiling ssl_asn1.cc
[38/468] Compiling ssl_aead_ctx.cc
[39/468] Compiling s3_pkt.cc
[40/468] Compiling s3_lib.cc
[41/468] Compiling s3_both.cc
[42/468] Compiling handshake_client.cc
[43/468] Compiling handshake_server.cc
[44/468] Compiling handshake.cc
[45/468] Compiling handoff.cc
[46/468] Compiling dtls_record.cc
[47/468] Compiling dtls_method.cc
[48/468] Compiling extensions.cc
[49/468] Compiling encrypted_client_hello.cc
[50/468] Compiling v3_skey.c
[51/468] Compiling d1_pkt.cc
[52/468] Compiling d1_srtp.cc
[53/468] Compiling v3_utl.c
[54/468] Compiling v3_purp.c
[55/468] Compiling v3_prn.c
[56/468] Compiling v3_pmaps.c
[57/468] Compiling d1_lib.cc
[58/468] Compiling v3_pcons.c
[59/468] Compiling v3_pcia.c
[60/468] Compiling v3_ocsp.c
[61/468] Compiling v3_pci.c
[62/468] Compiling v3_int.c
[63/468] Compiling v3_ncons.c
[64/468] Compiling v3_info.c
[65/468] Compiling v3_lib.c
[66/468] Compiling bio_ssl.cc
[67/468] Compiling v3_ia5.c
[68/468] Compiling v3_extku.c
[69/468] Compiling v3_genn.c
[70/468] Compiling d1_both.cc
[71/468] Compiling v3_enum.c
[72/468] Compiling v3_crld.c
[73/468] Compiling v3_cpols.c
[74/468] Compiling v3_conf.c
[75/468] Compiling v3_bitst.c
[76/468] Compiling v3_bcons.c
[77/468] Compiling v3_akeya.c
[78/468] Compiling v3_akey.c
[79/468] Compiling v3_alt.c
[80/468] Compiling pcy_node.c
[81/468] Compiling pcy_tree.c
[82/468] Compiling pcy_map.c
[83/468] Compiling pcy_lib.c
[84/468] Compiling pcy_data.c
[85/468] Compiling x_x509a.c
[86/468] Compiling pcy_cache.c
[87/468] Compiling x_val.c
[88/468] Compiling x_spki.c
[89/468] Compiling x_x509.c
[90/468] Compiling x_sig.c
[91/468] Compiling x_req.c
[92/468] Compiling x_pkey.c
[93/468] Compiling x_pubkey.c
[94/468] Compiling x_info.c
[95/468] Compiling x_exten.c
[96/468] Compiling x_name.c
[97/468] Compiling x_attrib.c
[98/468] Compiling x_algor.c
[99/468] Compiling x509spki.c
[100/468] Compiling x_crl.c
[101/468] Compiling x509rset.c
[102/468] Compiling x_all.c
[103/468] Compiling x509name.c
[104/468] Compiling x509cset.c
[105/468] Compiling x509_txt.c
[106/468] Compiling x509_set.c
[107/468] Compiling x509_vpm.c
[108/468] Compiling x509_v3.c
[109/468] Compiling x509_trs.c
[110/468] Compiling x509_obj.c
[111/468] Compiling x509_req.c
[112/468] Compiling x509_def.c
[113/468] Compiling x509_vfy.c
[114/468] Compiling x509_d2.c
[115/468] Compiling x509_ext.c
[116/468] Compiling x509.c
[117/468] Compiling x509_lu.c
[118/468] Compiling x509_att.c
[119/468] Compiling x509_cmp.c
[120/468] Compiling t_x509a.c
[121/468] Compiling i2d_pr.c
[122/468] Compiling t_x509.c
[123/468] Compiling t_req.c
[124/468] Compiling t_crl.c
[125/468] Compiling name_print.c
[126/468] Compiling rsa_pss.c
[127/468] Compiling by_file.c
[128/468] Compiling algorithm.c
[129/468] Compiling a_verify.c
[130/468] Compiling by_dir.c
[131/468] Compiling a_digest.c
[132/468] Compiling a_sign.c
[133/468] Compiling asn1_gen.c
[134/468] Compiling voprf.c
[135/468] Compiling thread.c
[136/468] Compiling thread_win.c
[137/468] Compiling thread_pthread.c
[138/468] Compiling thread_none.c
[139/468] Compiling trust_token.c
[140/468] Compiling siphash.c
[141/468] Compiling rsa_print.c
[142/468] Compiling rc4.c
[143/468] Compiling refcount_lock.c
[144/468] Compiling stack.c
[145/468] Compiling refcount_c11.c
[146/468] Compiling windows.c
[147/468] Compiling rsa_asn1.c
[148/468] Compiling rand_extra.c
[149/468] Compiling fuchsia.c
[150/468] Compiling deterministic.c
[151/468] Compiling poly1305_arm_asm.S
[152/468] Compiling pmbtoken.c
[153/468] Compiling passive.c
[154/468] Compiling forkunsafe.c
[155/468] Compiling poly1305_arm.c
[156/468] Compiling pool.c
[157/468] Compiling poly1305.c
[158/468] Compiling pkcs7.c
[159/468] Compiling pkcs8.c
[160/468] Compiling pem_x509.c
[161/468] Compiling p5_pbev2.c
[162/468] Compiling pem_xaux.c
[163/468] Compiling pkcs7_x509.c
[164/468] Compiling pkcs8_x509.c
[165/468] Compiling pem_pkey.c
[166/468] Compiling obj_xref.c
[167/468] Compiling pem_oth.c
[168/468] Compiling pem_pk8.c
[169/468] Compiling pem_info.c
[170/468] Compiling mem.c
[171/468] Compiling lhash.c
[172/468] Compiling pem_lib.c
[173/468] Compiling x86_64-mont5.mac.x86_64.S
[174/468] Compiling pem_all.c
[175/468] Compiling poly_rq_mul.S
[176/468] Compiling x86_64-mont.mac.x86_64.S
[177/468] Compiling x86_64-mont5.linux.x86_64.S
[178/468] Compiling hkdf.c
[179/468] Compiling x86-mont.linux.x86.S
[180/468] Compiling obj.c
[181/468] Compiling vpaes-x86_64.mac.x86_64.S
[182/468] Compiling x86_64-mont.linux.x86_64.S
[183/468] Compiling vpaes-x86_64.linux.x86_64.S
[184/468] Compiling hpke.c
[185/468] Compiling vpaes-x86.linux.x86.S
[186/468] Compiling vpaes-armv8.linux.aarch64.S
[187/468] Compiling vpaes-armv7.linux.arm.S
[188/468] Compiling vpaes-armv8.ios.aarch64.S
[189/468] Compiling sha512-x86_64.mac.x86_64.S
[190/468] Compiling vpaes-armv7.ios.arm.S
[191/468] Compiling sha512-armv8.ios.aarch64.S
[192/468] Compiling sha512-armv8.linux.aarch64.S
[193/468] Compiling sha512-armv4.linux.arm.S
[194/468] Compiling sha512-armv4.ios.arm.S
[195/468] Compiling sha256-x86_64.mac.x86_64.S
[196/468] Compiling sha512-x86_64.linux.x86_64.S
[197/468] Compiling sha512-586.linux.x86.S
[198/468] Compiling sha256-armv8.ios.aarch64.S
[199/468] Compiling sha256-armv8.linux.aarch64.S
[200/468] Compiling kdf.c
[201/468] Compiling sha256-armv4.ios.arm.S
[202/468] Compiling sha256-armv4.linux.arm.S
[203/468] Compiling sha256-x86_64.linux.x86_64.S
[204/468] Compiling sha256-586.linux.x86.S
[205/468] Compiling sha1-x86_64.mac.x86_64.S
[206/468] Compiling sha1-armv8.ios.aarch64.S
[207/468] Compiling sha1-armv8.linux.aarch64.S
[208/468] Compiling sha1-armv4-large.linux.arm.S
[209/468] Compiling sha1-armv4-large.ios.arm.S
[210/468] Compiling sha1-586.linux.x86.S
[211/468] Compiling sha1-x86_64.linux.x86_64.S
[212/468] Compiling poly1305_vec.c
[213/468] Compiling sha1-altivec.c
[214/468] Compiling rsaz-avx2.mac.x86_64.S
[215/468] Compiling sha1.c
[216/468] Compiling sha512.c
[217/468] Compiling sha256.c
[218/468] Compiling fips.c
[219/468] Compiling rsaz-avx2.linux.x86_64.S
[220/468] Compiling rdrand-x86_64.mac.x86_64.S
[221/468] Compiling rdrand-x86_64.linux.x86_64.S
[222/468] Compiling self_check.c
[223/468] Compiling blinding.c
[224/468] Compiling padding.c
[225/468] Compiling hrss.c
[226/468] Compiling p256_beeu-x86_64-asm.mac.x86_64.S
[227/468] Compiling p256_beeu-x86_64-asm.linux.x86_64.S
[228/468] Compiling rsa.c
[229/468] Compiling fork_detect.c
[230/468] Compiling urandom.c
[231/468] Compiling rand.c
[232/468] Compiling rsa_impl.c
[233/468] Compiling ctrdrbg.c
[234/468] Compiling p256-x86_64-asm.mac.x86_64.S
[235/468] Compiling p256-x86_64-asm.linux.x86_64.S
[236/468] Compiling ofb.c
[237/468] Compiling polyval.c
[238/468] Compiling gcm_nohw.c
[239/468] Compiling ctr.c
[240/468] Compiling cbc.c
[241/468] Compiling cfb.c
[242/468] Compiling md5-x86_64.mac.x86_64.S
[243/468] Compiling md5-586.linux.x86.S
[244/468] Compiling md5-x86_64.linux.x86_64.S
[245/468] Compiling ghashv8-armx64.linux.aarch64.S
[246/468] Compiling ghashv8-armx32.linux.arm.S
[247/468] Compiling ghashv8-armx64.ios.aarch64.S
[248/468] Compiling gcm.c
[249/468] Compiling md5.c
[250/468] Compiling ghashv8-armx32.ios.arm.S
[251/468] Compiling ghash-x86_64.mac.x86_64.S
[252/468] Compiling ghash-x86.linux.x86.S
[253/468] Compiling ghash-ssse3-x86_64.mac.x86_64.S
[254/468] Compiling ghash-x86_64.linux.x86_64.S
[255/468] Compiling hmac.c
[256/468] Compiling ghash-neon-armv8.linux.aarch64.S
[257/468] Compiling ghash-ssse3-x86_64.linux.x86_64.S
[258/468] Compiling ghash-ssse3-x86.linux.x86.S
[259/468] Compiling ghash-neon-armv8.ios.aarch64.S
[260/468] Compiling ghash-armv4.linux.arm.S
[261/468] Compiling ghash-armv4.ios.arm.S
[262/468] Compiling md4.c
[263/468] Compiling fips_shared_support.c
[264/468] Compiling util.c
[265/468] Compiling ecdh.c
[266/468] Compiling wnaf.c
[267/468] Compiling ecdsa.c
[268/468] Compiling simple_mul.c
[269/468] Compiling simple.c
[270/468] Compiling scalar.c
[271/468] Compiling felem.c
[272/468] Compiling oct.c
[273/468] Compiling p256.c
[274/468] Compiling ec_montgomery.c
[275/468] Compiling ec_key.c
[276/468] Compiling p224-64.c
[277/468] Compiling digest.c
[278/468] Compiling check.c
[279/468] Compiling co-586.linux.x86.S
[280/468] Compiling digests.c
[281/468] Compiling ec.c
[282/468] Compiling dh.c
[283/468] Compiling bsaes-armv7.linux.arm.S
[284/468] Compiling bsaes-armv7.ios.arm.S
[285/468] Compiling e_des.c
[286/468] Compiling aead.c
[287/468] Compiling cipher.c
[288/468] Compiling sqrt.c
[289/468] Compiling shift.c
[290/468] Compiling rsaz_exp.c
[291/468] Compiling des.c
[292/468] Compiling p256-x86_64.c
[293/468] Compiling e_aes.c
[294/468] Compiling random.c
[295/468] Compiling prime.c
[296/468] Compiling montgomery_inv.c
[297/468] Compiling mul.c
[298/468] Compiling jacobi.c
[299/468] Compiling montgomery.c
[300/468] Compiling generic.c
[301/468] Compiling gcd.c
[302/468] Compiling div_extra.c
[303/468] Compiling gcd_extra.c
[304/468] Compiling ctx.c
[305/468] Compiling exponentiation.c
[306/468] Compiling div.c
[307/468] Compiling bytes.c
[308/468] Compiling cmp.c
[309/468] Compiling armv8-mont.linux.aarch64.S
[310/468] Compiling armv8-mont.ios.aarch64.S
[311/468] Compiling bn-586.linux.x86.S
[312/468] Compiling armv4-mont.linux.arm.S
[313/468] Compiling armv4-mont.ios.arm.S
[314/468] Compiling add.c
[315/468] Compiling bn.c
[316/468] Compiling aesv8-armx32.ios.arm.S
[317/468] Compiling aesv8-armx64.linux.aarch64.S
[318/468] Compiling aesv8-armx32.linux.arm.S
[319/468] Compiling aesv8-armx64.ios.aarch64.S
[320/468] Compiling aesni-x86_64.mac.x86_64.S
[321/468] Compiling aesni-x86.linux.x86.S
[322/468] Compiling aesni-gcm-x86_64.mac.x86_64.S
[323/468] Compiling aesni-x86_64.linux.x86_64.S
[324/468] Compiling aesni-gcm-x86_64.linux.x86_64.S
[325/468] Compiling mode_wrappers.c
[326/468] Compiling key_wrap.c
[327/468] Compiling aes.c
[328/468] Compiling ex_data.c
[329/468] Compiling sign.c
[330/468] Compiling x86_64-gcc.c
[331/468] Compiling scrypt.c
[332/468] Compiling pbkdf.c
[333/468] Compiling aes_nohw.c
[334/468] Compiling p_x25519.c
[335/468] Compiling p_rsa_asn1.c
[336/468] Compiling print.c
[337/468] Compiling p_x25519_asn1.c
[338/468] Compiling p_ed25519.c
[339/468] Compiling p_ed25519_asn1.c
[340/468] Compiling p_rsa.c
[341/468] Compiling p_ec_asn1.c
[342/468] Compiling p_dsa_asn1.c
[343/468] Compiling p_ec.c
[344/468] Compiling err_data.c
[345/468] Compiling evp_ctx.c
[346/468] Compiling digestsign.c
[347/468] Compiling evp_asn1.c
[348/468] Compiling engine.c
[349/468] Compiling evp.c
[350/468] Compiling err.c
[351/468] Compiling ec_derive.c
[352/468] Compiling ecdh_extra.c
[353/468] Compiling ecdsa_asn1.c
[354/468] Compiling hash_to_curve.c
[355/468] Compiling dsa_asn1.c
[356/468] Compiling dh_asn1.c
[357/468] Compiling ec_asn1.c
[358/468] Compiling x25519-asm-arm.S
[359/468] Compiling params.c
[360/468] Compiling cpu-ppc64le.c
[361/468] Compiling spake25519.c
[362/468] Compiling digest_extra.c
[363/468] Compiling dsa.c
[364/468] Compiling cpu-arm.c
[365/468] Compiling cpu-aarch64-win.c
[366/468] Compiling crypto.c
[367/468] Compiling cpu-aarch64-linux.c
[368/468] Compiling cpu-arm-linux.c
[369/468] Compiling cpu-aarch64-fuchsia.c
[370/468] Compiling cpu-intel.c
[371/468] Compiling e_rc4.c
[372/468] Compiling cmac.c
[373/468] Compiling tls_cbc.c
[374/468] Compiling e_null.c
[375/468] Compiling e_tls.c
[376/468] Compiling e_rc2.c
[377/468] Compiling conf.c
[378/468] Compiling e_chacha20poly1305.c
[379/468] Compiling chacha20_poly1305_x86_64.mac.x86_64.S
[380/468] Compiling derive_key.c
[381/468] Compiling aes128gcmsiv-x86_64.mac.x86_64.S
[382/468] Compiling e_aesctrhmac.c
[383/468] Compiling cipher_extra.c
[384/468] Compiling curve25519.c
[385/468] Compiling e_aesgcmsiv.c
[386/468] Compiling e_aesccm.c
[387/468] Compiling chacha-x86.linux.x86.S
[388/468] Compiling aes128gcmsiv-x86_64.linux.x86_64.S
[389/468] Compiling chacha-x86_64.mac.x86_64.S
[390/468] Compiling chacha-armv8.linux.aarch64.S
[391/468] Compiling chacha-armv8.ios.aarch64.S
[392/468] Compiling chacha-x86_64.linux.x86_64.S
[393/468] Compiling chacha20_poly1305_x86_64.linux.x86_64.S
[394/468] Compiling chacha-armv4.linux.arm.S
[395/468] Compiling chacha-armv4.ios.arm.S
[396/468] Compiling chacha.c
[397/468] Compiling unicode.c
[398/468] Compiling asn1_compat.c
[399/468] Compiling bn_asn1.c
[400/468] Compiling ber.c
[401/468] Compiling buf.c
[402/468] Compiling blake2.c
[403/468] Compiling cbs.c
[404/468] Compiling convert.c
[405/468] Compiling cbb.c
[406/468] Compiling printf.c
[407/468] Compiling socket_helper.c
[408/468] Compiling socket.c
[409/468] Compiling hexdump.c
[410/468] Compiling pair.c
[411/468] Compiling file.c
[412/468] Compiling fd.c
[413/468] Compiling bio_mem.c
[414/468] Compiling connect.c
[415/468] Compiling base64.c
[416/468] Compiling time_support.c
[417/468] Compiling bio.c
[418/468] Compiling tasn_utl.c
[419/468] Compiling tasn_fre.c
[420/468] Compiling tasn_new.c
[421/468] Compiling tasn_typ.c
[422/468] Compiling f_string.c
[423/468] Compiling tasn_enc.c
[424/468] Compiling f_int.c
[425/468] Compiling f_enum.c
[426/468] Compiling asn_pack.c
[427/468] Compiling tasn_dec.c
[428/468] Compiling asn1_par.c
[429/468] Compiling a_utf8.c
[430/468] Compiling a_utctm.c
[431/468] Compiling asn1_lib.c
[432/468] Compiling a_type.c
[433/468] Compiling a_print.c
[434/468] Compiling a_time.c
[435/468] Compiling a_strnid.c
[436/468] Compiling a_strex.c
[437/468] Compiling a_octet.c
[438/468] Compiling a_mbstr.c
[439/468] Compiling a_i2d_fp.c
[440/468] Compiling a_object.c
[441/468] Compiling a_int.c
[442/468] Compiling a_gentm.c
[443/468] Compiling a_dup.c
[444/468] Compiling a_d2i_fp.c
[445/468] Compiling a_enum.c
[446/468] Compiling a_bool.c
[447/468] Compiling a_bitstr.c
[448/468] Compiling c-nioatomics.c
[449/468] Compiling c-atomics.c
[450/471] Compiling NIOConcurrencyHelpers lock.swift
[451/471] Compiling NIOConcurrencyHelpers atomics.swift
[452/471] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[453/472] Merging module NIOConcurrencyHelpers
[454/475] Wrapping AST for NIOConcurrencyHelpers for debugging
[455/516] Compiling NIOCore SocketOptionProvider.swift
[456/516] Compiling NIOCore SystemCallHelpers.swift
[457/516] Compiling NIOCore TypeAssistedChannelHandler.swift
[458/516] Compiling NIOCore UniversalBootstrapSupport.swift
[459/516] Compiling NIOCore Utilities.swift
[460/516] Compiling NIOCore FileRegion.swift
[461/516] Compiling NIOCore IO.swift
[462/516] Compiling NIOCore IOData.swift
[463/516] Compiling NIOCore IntegerBitPacking.swift
[464/516] Compiling NIOCore IntegerTypes.swift
[465/516] Compiling NIOCore NIOCloseOnErrorHandler.swift
[466/516] Compiling NIOCore PointerHelpers.swift
[467/516] Compiling NIOCore RecvByteBufferAllocator.swift
[468/516] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[469/516] Compiling NIOCore SocketAddresses.swift
[470/516] Compiling NIOCore Interfaces.swift
[471/516] Compiling NIOCore Linux.swift
[472/516] Compiling NIOCore MarkedCircularBuffer.swift
[473/516] Compiling NIOCore MulticastChannel.swift
[474/516] Compiling NIOCore NIOAny.swift
[475/516] Compiling NIOCore ByteBuffer-int.swift
[476/516] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[477/516] Compiling NIOCore ByteBuffer-views.swift
[478/516] Compiling NIOCore Channel.swift
[479/516] Compiling NIOCore ChannelHandler.swift
[480/516] Compiling NIOCore ChannelHandlers.swift
[481/516] Compiling NIOCore AddressedEnvelope.swift
[482/516] Compiling NIOCore AsyncAwaitSupport.swift
[483/516] Compiling NIOCore BSDSocketAPI.swift
[484/516] Compiling NIOCore ByteBuffer-aux.swift
[485/516] Compiling NIOCore ByteBuffer-conversions.swift
[486/516] Compiling NIOCore ByteBuffer-core.swift
[487/516] Compiling NIOCore DeadChannel.swift
[488/516] Compiling NIOCore DispatchQueue+WithFuture.swift
[489/516] Compiling NIOCore EventLoop.swift
[490/516] Compiling NIOCore EventLoopFuture.swift
[491/516] Compiling NIOCore FileDescriptor.swift
[492/516] Compiling NIOCore FileHandle.swift
[493/516] Compiling NIOCore ChannelInvoker.swift
[494/516] Compiling NIOCore ChannelOption.swift
[495/516] Compiling NIOCore ChannelPipeline.swift
[496/516] Compiling NIOCore CircularBuffer.swift
[497/516] Compiling NIOCore Codec.swift
[498/516] Compiling NIOCore ConvenienceOptionSupport.swift
[499/517] Merging module NIOCore
[500/518] Wrapping AST for NIOCore for debugging
[501/562] Compiling NIOPosix PipeChannel.swift
[502/562] Compiling NIOPosix PipePair.swift
[503/562] Compiling NIOPosix PointerHelpers.swift
[504/562] Compiling NIOPosix Resolver.swift
[505/562] Compiling NIOPosix Selectable.swift
[506/562] Compiling NIOPosix BSDSocketAPICommon.swift
[507/563] Merging module NIOEmbedded
[508/563] Wrapping AST for NIOEmbedded for debugging
[509/563] Compiling NIOPosix System.swift
[510/563] Compiling NIOPosix Thread.swift
[511/563] Compiling NIOPosix ThreadPosix.swift
[512/563] Compiling NIOPosix ThreadWindows.swift
[513/563] Compiling NIOPosix Utilities.swift
[514/563] Compiling NIOPosix HappyEyeballs.swift
[515/563] Compiling NIOPosix IO.swift
[516/563] Compiling NIOPosix IntegerBitPacking.swift
[517/563] Compiling NIOPosix IntegerTypes.swift
[518/563] Compiling NIOPosix Linux.swift
[519/563] Compiling NIOPosix LinuxCPUSet.swift
[520/563] Compiling NIOPosix SelectorUring.swift
[521/563] Compiling NIOPosix ServerSocket.swift
[522/563] Compiling NIOPosix Socket.swift
[523/563] Compiling NIOPosix SocketChannel.swift
[524/563] Compiling NIOPosix SocketProtocols.swift
[525/563] Compiling NIOPosix SelectableChannel.swift
[526/563] Compiling NIOPosix SelectableEventLoop.swift
[527/563] Compiling NIOPosix SelectorEpoll.swift
[528/563] Compiling NIOPosix SelectorGeneric.swift
[529/563] Compiling NIOPosix SelectorKqueue.swift
[530/563] Compiling NIOPosix BaseStreamSocketChannel.swift
[531/563] Compiling NIOPosix Bootstrap.swift
[532/563] Compiling NIOPosix ControlMessage.swift
[533/563] Compiling NIOPosix DatagramVectorReadManager.swift
[534/563] Compiling NIOPosix FileDescriptor.swift
[535/563] Compiling NIOPosix GetaddrinfoResolver.swift
[537/563] Compiling NIOPosix BSDSocketAPIPosix.swift
[538/563] Compiling NIOPosix BSDSocketAPIWindows.swift
[539/563] Compiling NIOPosix BaseSocket.swift
[540/563] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[541/563] Compiling NIOPosix BaseSocketChannel.swift
[542/563] Compiling NIOPosix LinuxUring.swift
[543/563] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[544/563] Compiling NIOPosix NIOThreadPool.swift
[545/563] Compiling NIOPosix NonBlockingFileIO.swift
[546/563] Compiling NIOPosix PendingDatagramWritesManager.swift
[547/563] Compiling NIOPosix PendingWritesManager.swift
[548/564] Merging module NIOPosix
[549/565] Wrapping AST for NIOPosix for debugging
[550/565] Compiling NIO Exports.swift
[551/566] Merging module NIO
[552/579] Wrapping AST for NIO for debugging
[553/594] Compiling NIOSOCKS AuthenticationMethod.swift
[554/594] Compiling NIOSOCKS Helpers.swift
[555/594] Compiling NIOSOCKS ServerStateMachine.swift
[556/594] Compiling NIOSOCKS SOCKSClientHandler.swift
[557/594] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[558/594] Compiling NIOSOCKS ClientStateMachine.swift
[559/594] Compiling NIOSOCKS SOCKSResponse.swift
[560/594] Compiling NIOSOCKS Errors.swift
[562/594] Compiling NIOSOCKS Messages.swift
[563/594] Compiling NIOSOCKS SOCKSRequest.swift
[566/594] Compiling NIOSOCKS ClientGreeting.swift
[567/594] Compiling NIOSOCKS SOCKSServerHandshakeHandler.swift
[571/596] Merging module NIOTLS
[573/606] Wrapping AST for NIOTLS for debugging
[574/616] Merging module NIOSOCKS
[575/616] Wrapping AST for NIOSOCKS for debugging
[576/616] Compiling NIOSSL SSLCertificate.swift
[577/616] Compiling NIOSSL IdentityVerification.swift
[578/616] Compiling NIOSSL LinuxCABundle.swift
[580/616] Compiling NIOSSL CustomPrivateKey.swift
[581/616] Compiling NIOSSL ByteBufferBIO.swift
[583/616] Compiling NIOSSL PosixPort.swift
[585/618] Compiling NIOSSL SSLPublicKey.swift
[586/618] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[587/618] Merging module NIOHTTP1
[588/638] Wrapping AST for NIOHTTP1 for debugging
[589/638] Merging module NIOFoundationCompat
[590/638] Compiling NIOHPACK StaticHeaderTable.swift
[591/638] Wrapping AST for NIOFoundationCompat for debugging
[592/652] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[593/652] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[594/652] Compiling NIOTransportServices NIOTSListenerChannel.swift
[595/652] Compiling NIOTransportServices NIOTSEventLoop.swift
[596/652] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[597/652] Compiling NIOTransportServices NIOTSChannelOptions.swift
[598/652] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[599/652] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[600/652] Compiling NIOTransportServices NIOTSErrors.swift
[601/652] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[602/652] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[603/652] Compiling NIOTransportServices StateManagedChannel.swift
[612/652] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[613/652] Compiling NIOTransportServices NIOTSBootstraps.swift
[618/653] Merging module NIOTransportServices
[620/653] Wrapping AST for NIOTransportServices for debugging
[624/653] Compiling NIOSSL SSLPKCS12Bundle.swift
[625/653] Compiling NIOSSL SSLPrivateKey.swift
[637/655] Merging module NIOTestUtils
[638/655] Wrapping AST for NIOTestUtils for debugging
[640/655] Merging module NIOHTTPCompression
[641/655] Wrapping AST for NIOHTTPCompression for debugging
[642/655] Compiling NIOSSL TLSConfiguration.swift
[643/655] Compiling NIOSSL UniversalBootstrapSupport.swift
[646/656] Merging module NIOHPACK
[647/656] Wrapping AST for NIOHPACK for debugging
[648/712] Compiling NIOHTTP2 MaySendFrames.swift
[649/712] Compiling NIOHTTP2 SendingDataState.swift
[650/712] Compiling NIOHTTP2 SendingGoawayState.swift
[651/713] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[652/713] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[656/713] Compiling NIOHTTP2 SendingHeadersState.swift
[657/713] Compiling NIOHTTP2 SendingPushPromiseState.swift
[658/713] Merging module NIOSSL
[659/713] Wrapping AST for NIOSSL for debugging
[660/713] Compiling NIOHTTP2 SendingRstStreamState.swift
[661/713] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[662/713] Compiling NIOHTTP2 HTTP2SettingsState.swift
[663/713] Compiling NIOHTTP2 HasFlowControlWindows.swift
[664/713] Compiling NIOHTTP2 HasLocalSettings.swift
[665/713] Compiling NIOHTTP2 HasRemoteSettings.swift
[666/713] Compiling NIOHTTP2 LocallyQuiescingState.swift
[667/713] Compiling NIOHTTP2 QuiescingState.swift
[668/713] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[669/713] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[670/713] Compiling NIOHTTP2 StateMachineResult.swift
[671/713] Compiling NIOHTTP2 ContentLengthVerifier.swift
[672/713] Compiling NIOHTTP2 DOSHeuristics.swift
[673/713] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[674/713] Compiling NIOHTTP2 InboundWindowManager.swift
[675/713] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[676/713] Compiling NIOHTTP2 StreamChannelFlowController.swift
[677/713] Compiling NIOHTTP2 StreamChannelList.swift
[678/713] Compiling NIOHTTP2 StreamMap.swift
[679/713] Compiling NIOHTTP2 StreamStateMachine.swift
[680/713] Compiling NIOHTTP2 WatermarkedFlowController.swift
[681/713] Compiling NIOHTTP2 HTTP2Stream.swift
[682/713] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[683/713] Compiling NIOHTTP2 HTTP2StreamID.swift
[684/713] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[685/713] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[686/713] Compiling NIOHTTP2 HTTP2UserEvents.swift
[687/713] Compiling NIOHTTP2 InboundEventBuffer.swift
[688/713] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[689/713] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[690/713] Compiling NIOHTTP2 HTTP2Frame.swift
[691/713] Compiling NIOHTTP2 HTTP2FrameParser.swift
[692/713] Compiling NIOHTTP2 HTTP2PingData.swift
[693/713] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[694/713] Compiling NIOHTTP2 HTTP2Settings.swift
[695/713] Compiling NIOHTTP2 ControlFrameBuffer.swift
[696/713] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[697/713] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[698/713] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[699/713] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[700/713] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[701/713] Compiling NIOHTTP2 HTTP2Error.swift
[702/713] Compiling NIOHTTP2 ConnectionStateMachine.swift
[703/713] Compiling NIOHTTP2 ConnectionStreamsState.swift
[704/713] Compiling NIOHTTP2 MayReceiveFrames.swift
[705/713] Compiling NIOHTTP2 ReceivingDataState.swift
[706/713] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[707/713] Compiling NIOHTTP2 ReceivingHeadersState.swift
[708/713] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[709/714] Merging module NIOHTTP2
[710/714] Wrapping AST for NIOHTTP2 for debugging
[711/755] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[712/755] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[713/755] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[714/755] Compiling AsyncHTTPClient RequestOptions.swift
[715/755] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[716/755] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[717/755] Compiling AsyncHTTPClient ConnectionPool.swift
[718/755] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[719/755] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[720/755] Compiling AsyncHTTPClient TLSEventsHandler.swift
[721/755] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[722/755] Compiling AsyncHTTPClient RequestBag.swift
[723/755] Compiling AsyncHTTPClient RequestValidation.swift
[724/755] Compiling AsyncHTTPClient SSLContextCache.swift
[725/755] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[726/755] Compiling AsyncHTTPClient Utils.swift
[727/755] Compiling AsyncHTTPClient HTTP1Connection.swift
[728/755] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[729/755] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[730/755] Compiling AsyncHTTPClient HTTP2Connection.swift
[731/755] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[732/755] Compiling AsyncHTTPClient HTTPHandler.swift
[733/755] Compiling AsyncHTTPClient LRUCache.swift
[734/755] Compiling AsyncHTTPClient NWErrorHandler.swift
[735/755] Compiling AsyncHTTPClient TLSConfiguration.swift
[736/755] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[737/755] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[738/755] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[739/755] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[740/755] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[741/755] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[742/755] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[743/755] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[744/755] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[745/755] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[746/755] Compiling AsyncHTTPClient HTTPClient.swift
[747/755] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[748/755] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[749/755] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[750/755] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[751/755] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[752/756] Merging module AsyncHTTPClient
[753/756] Wrapping AST for AsyncHTTPClient for debugging
[754/818] Compiling AsyncHTTPClientTests SOCKSEventsHandlerTests+XCTest.swift
[755/818] Compiling AsyncHTTPClientTests SOCKSEventsHandlerTests.swift
[756/818] Compiling AsyncHTTPClientTests SOCKSTestUtils.swift
[757/818] Compiling AsyncHTTPClientTests SSLContextCacheTests+XCTest.swift
[758/818] Compiling AsyncHTTPClientTests SSLContextCacheTests.swift
[759/818] Compiling AsyncHTTPClientTests TLSEventsHandlerTests+XCTest.swift
[760/818] Compiling AsyncHTTPClientTests TLSEventsHandlerTests.swift
[761/818] Compiling AsyncHTTPClientTests HTTP1ProxyConnectHandlerTests.swift
[762/818] Compiling AsyncHTTPClientTests HTTP2ClientRequestHandlerTests+XCTest.swift
[763/818] Compiling AsyncHTTPClientTests HTTP2ClientRequestHandlerTests.swift
[764/818] Compiling AsyncHTTPClientTests HTTP2ClientTests+XCTest.swift
[765/818] Compiling AsyncHTTPClientTests HTTP2ClientTests.swift
[766/818] Compiling AsyncHTTPClientTests HTTP2ConnectionTests+XCTest.swift
[767/818] Compiling AsyncHTTPClientTests HTTP2ConnectionTests.swift
[768/818] Compiling AsyncHTTPClientTests HTTP2IdleHandlerTests+XCTest.swift
[769/818] Compiling AsyncHTTPClientTests HTTP2IdleHandlerTests.swift
[770/818] Compiling AsyncHTTPClientTests HTTPClient+SOCKSTests+XCTest.swift
[771/818] Compiling AsyncHTTPClientTests HTTPClient+SOCKSTests.swift
[772/818] Compiling AsyncHTTPClientTests HTTPClientCookieTests+XCTest.swift
[773/818] Compiling AsyncHTTPClientTests HTTPClientCookieTests.swift
[774/818] Compiling AsyncHTTPClientTests HTTPClientInternalTests+XCTest.swift
[775/818] Compiling AsyncHTTPClientTests HTTPClientInternalTests.swift
[776/818] Compiling AsyncHTTPClientTests HTTPClientNIOTSTests+XCTest.swift
[777/818] Compiling AsyncHTTPClientTests LRUCacheTests.swift
[778/818] Compiling AsyncHTTPClientTests MockConnectionPool.swift
[779/818] Compiling AsyncHTTPClientTests MockRequestQueuer.swift
[780/818] Compiling AsyncHTTPClientTests RequestBagTests+XCTest.swift
[781/818] Compiling AsyncHTTPClientTests RequestBagTests.swift
[782/818] Compiling AsyncHTTPClientTests RequestValidationTests+XCTest.swift
[783/818] Compiling AsyncHTTPClientTests RequestValidationTests.swift
[784/818] Compiling AsyncHTTPClientTests EmbeddedChannel+HTTPConvenience.swift
[785/818] Compiling AsyncHTTPClientTests HTTP1ClientChannelHandlerTests+XCTest.swift
[786/818] Compiling AsyncHTTPClientTests HTTP1ClientChannelHandlerTests.swift
[787/818] Compiling AsyncHTTPClientTests HTTP1ConnectionStateMachineTests+XCTest.swift
[788/818] Compiling AsyncHTTPClientTests HTTP1ConnectionStateMachineTests.swift
[789/818] Compiling AsyncHTTPClientTests HTTP1ConnectionTests+XCTest.swift
[790/818] Compiling AsyncHTTPClientTests HTTP1ConnectionTests.swift
[791/818] Compiling AsyncHTTPClientTests HTTP1ProxyConnectHandlerTests+XCTest.swift
[792/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+RequestQueueTests+XCTest.swift
[793/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+RequestQueueTests.swift
[794/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+StateTestUtils.swift
[795/818] Compiling AsyncHTTPClientTests HTTPConnectionPoolTests+XCTest.swift
[796/818] Compiling AsyncHTTPClientTests HTTPConnectionPoolTests.swift
[797/818] Compiling AsyncHTTPClientTests HTTPRequestStateMachineTests+XCTest.swift
[798/818] Compiling AsyncHTTPClientTests HTTPRequestStateMachineTests.swift
[799/818] Compiling AsyncHTTPClientTests LRUCacheTests+XCTest.swift
[800/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP1StateTests+XCTest.swift
[801/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP1StateTests.swift
[802/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP2ConnectionsTest+XCTest.swift
[803/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP2ConnectionsTest.swift
[804/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP2StateMachineTests+XCTest.swift
[805/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP2StateMachineTests.swift
[806/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+ManagerTests+XCTest.swift
[807/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+ManagerTests.swift
[808/818] Compiling AsyncHTTPClientTests HTTPClientNIOTSTests.swift
[809/818] Compiling AsyncHTTPClientTests HTTPClientTestUtils.swift
[810/818] Compiling AsyncHTTPClientTests HTTPClientTests+XCTest.swift
[811/818] Compiling AsyncHTTPClientTests HTTPClientTests.swift
[812/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+FactoryTests+XCTest.swift
[813/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+FactoryTests.swift
[814/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP1ConnectionsTest+XCTest.swift
[815/818] Compiling AsyncHTTPClientTests HTTPConnectionPool+HTTP1ConnectionsTest.swift
[816/819] Merging module AsyncHTTPClientTests
[817/820] Wrapping AST for AsyncHTTPClientTests for debugging
[818/820] Compiling async-http-clientPackageTests LinuxMain.swift
[819/821] Merging module async-http-clientPackageTests
[820/821] Wrapping AST for async-http-clientPackageTests for debugging
[821/821] Linking async-http-clientPackageTests.xctest
Test Suite 'All tests' started at 2021-11-08 16:59:58.154
Test Suite 'debug.xctest' started at 2021-11-08 16:59:58.158
Test Suite 'HTTP1ClientChannelHandlerTests' started at 2021-11-08 16:59:58.158
Test Case 'HTTP1ClientChannelHandlerTests.testResponseBackpressure' started at 2021-11-08 16:59:58.158
Test Case 'HTTP1ClientChannelHandlerTests.testResponseBackpressure' passed (0.008 seconds)
Test Case 'HTTP1ClientChannelHandlerTests.testWriteBackpressure' started at 2021-11-08 16:59:58.166
Test Case 'HTTP1ClientChannelHandlerTests.testWriteBackpressure' passed (0.016 seconds)
Test Case 'HTTP1ClientChannelHandlerTests.testClientHandlerCancelsRequestIfWeWantToShutdown' started at 2021-11-08 16:59:58.183
Test Case 'HTTP1ClientChannelHandlerTests.testClientHandlerCancelsRequestIfWeWantToShutdown' passed (0.002 seconds)
Test Case 'HTTP1ClientChannelHandlerTests.testIdleReadTimeout' started at 2021-11-08 16:59:58.185
Test Case 'HTTP1ClientChannelHandlerTests.testIdleReadTimeout' passed (0.003 seconds)
Test Case 'HTTP1ClientChannelHandlerTests.testIdleReadTimeoutIsCanceledIfRequestIsCanceled' started at 2021-11-08 16:59:58.188
Test Case 'HTTP1ClientChannelHandlerTests.testIdleReadTimeoutIsCanceledIfRequestIsCanceled' passed (0.002 seconds)
Test Case 'HTTP1ClientChannelHandlerTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForDemand' started at 2021-11-08 16:59:58.190
Test Case 'HTTP1ClientChannelHandlerTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForDemand' passed (0.002 seconds)
Test Suite 'HTTP1ClientChannelHandlerTests' passed at 2021-11-08 16:59:58.193
	 Executed 6 tests, with 0 failures (0 unexpected) in 0.034 (0.034) seconds
Test Suite 'HTTP1ConnectionStateMachineTests' started at 2021-11-08 16:59:58.193
Test Case 'HTTP1ConnectionStateMachineTests.testPOSTRequestWithWriteAndReadBackpressure' started at 2021-11-08 16:59:58.193
Test Case 'HTTP1ConnectionStateMachineTests.testPOSTRequestWithWriteAndReadBackpressure' passed (0.001 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testResponseReadingWithBackpressure' started at 2021-11-08 16:59:58.194
Test Case 'HTTP1ConnectionStateMachineTests.testResponseReadingWithBackpressure' passed (0.001 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testAConnectionCloseHeaderInTheRequestLeadsToConnectionCloseAfterRequest' started at 2021-11-08 16:59:58.195
Test Case 'HTTP1ConnectionStateMachineTests.testAConnectionCloseHeaderInTheRequestLeadsToConnectionCloseAfterRequest' passed (0.001 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testAHTTP1_0ResponseWithoutKeepAliveHeaderLeadsToConnectionCloseAfterRequest' started at 2021-11-08 16:59:58.196
Test Case 'HTTP1ConnectionStateMachineTests.testAHTTP1_0ResponseWithoutKeepAliveHeaderLeadsToConnectionCloseAfterRequest' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testAHTTP1_0ResponseWithKeepAliveHeaderLeadsToConnectionBeingKeptAlive' started at 2021-11-08 16:59:58.196
Test Case 'HTTP1ConnectionStateMachineTests.testAHTTP1_0ResponseWithKeepAliveHeaderLeadsToConnectionBeingKeptAlive' passed (0.001 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testAConnectionCloseHeaderInTheResponseLeadsToConnectionCloseAfterRequest' started at 2021-11-08 16:59:58.197
Test Case 'HTTP1ConnectionStateMachineTests.testAConnectionCloseHeaderInTheResponseLeadsToConnectionCloseAfterRequest' passed (0.001 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testNIOTriggersChannelActiveTwice' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testNIOTriggersChannelActiveTwice' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testIdleConnectionBecomesInactive' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testIdleConnectionBecomesInactive' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testConnectionGoesAwayWhileInRequest' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testConnectionGoesAwayWhileInRequest' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testRequestWasCancelledWhileUploadingData' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testRequestWasCancelledWhileUploadingData' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testCancelRequestIsIgnoredWhenConnectionIsIdle' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testCancelRequestIsIgnoredWhenConnectionIsIdle' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testReadsAreForwardedIfConnectionIsClosing' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testReadsAreForwardedIfConnectionIsClosing' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testChannelReadsAreIgnoredIfConnectionIsClosing' started at 2021-11-08 16:59:58.198
Test Case 'HTTP1ConnectionStateMachineTests.testChannelReadsAreIgnoredIfConnectionIsClosing' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testRequestIsCancelledWhileWaitingForWritable' started at 2021-11-08 16:59:58.199
Test Case 'HTTP1ConnectionStateMachineTests.testRequestIsCancelledWhileWaitingForWritable' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testConnectionIsClosedIfErrorHappensWhileInRequest' started at 2021-11-08 16:59:58.199
Test Case 'HTTP1ConnectionStateMachineTests.testConnectionIsClosedIfErrorHappensWhileInRequest' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testConnectionIsClosedAfterSwitchingProtocols' started at 2021-11-08 16:59:58.199
Test Case 'HTTP1ConnectionStateMachineTests.testConnectionIsClosedAfterSwitchingProtocols' passed (0.0 seconds)
Test Case 'HTTP1ConnectionStateMachineTests.testWeDontCrashAfterEarlyHintsAndConnectionClose' started at 2021-11-08 16:59:58.199
Test Case 'HTTP1ConnectionStateMachineTests.testWeDontCrashAfterEarlyHintsAndConnectionClose' passed (0.0 seconds)
Test Suite 'HTTP1ConnectionStateMachineTests' passed at 2021-11-08 16:59:58.200
	 Executed 17 tests, with 0 failures (0 unexpected) in 0.006 (0.006) seconds
Test Suite 'HTTP1ConnectionTests' started at 2021-11-08 16:59:58.200
Test Case 'HTTP1ConnectionTests.testCreateNewConnectionWithDecompression' started at 2021-11-08 16:59:58.200
Test Case 'HTTP1ConnectionTests.testCreateNewConnectionWithDecompression' passed (0.001 seconds)
Test Case 'HTTP1ConnectionTests.testCreateNewConnectionWithoutDecompression' started at 2021-11-08 16:59:58.201
Test Case 'HTTP1ConnectionTests.testCreateNewConnectionWithoutDecompression' passed (0.001 seconds)
Test Case 'HTTP1ConnectionTests.testCreateNewConnectionFailureClosedIO' started at 2021-11-08 16:59:58.202
Test Case 'HTTP1ConnectionTests.testCreateNewConnectionFailureClosedIO' passed (0.001 seconds)
Test Case 'HTTP1ConnectionTests.testGETRequest' started at 2021-11-08 16:59:58.202
Test Case 'HTTP1ConnectionTests.testGETRequest' passed (0.039 seconds)
Test Case 'HTTP1ConnectionTests.testConnectionClosesOnCloseHeader' started at 2021-11-08 16:59:58.242
Test Case 'HTTP1ConnectionTests.testConnectionClosesOnCloseHeader' passed (0.231 seconds)
Test Case 'HTTP1ConnectionTests.testConnectionClosesOnRandomlyAppearingCloseHeader' started at 2021-11-08 16:59:58.473
Test Case 'HTTP1ConnectionTests.testConnectionClosesOnRandomlyAppearingCloseHeader' passed (0.447 seconds)
Test Case 'HTTP1ConnectionTests.testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader' started at 2021-11-08 16:59:58.920
/code/Tests/AsyncHTTPClientTests/HTTP1ConnectionTests.swift:365: error: HTTP1ConnectionTests.testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader : XCTAssertEqual failed: ("1") is not equal to ("0") - 
Test Case 'HTTP1ConnectionTests.testConnectionClosesAfterTheRequestWithoutHavingSentAnCloseHeader' failed (0.044 seconds)
Test Case 'HTTP1ConnectionTests.testConnectionIsClosedAfterSwitchingProtocols' started at 2021-11-08 16:59:58.964
Test Case 'HTTP1ConnectionTests.testConnectionIsClosedAfterSwitchingProtocols' passed (0.008 seconds)
Test Case 'HTTP1ConnectionTests.testConnectionDoesntCrashAfterConnectionCloseAndEarlyHints' started at 2021-11-08 16:59:58.972
Test Case 'HTTP1ConnectionTests.testConnectionDoesntCrashAfterConnectionCloseAndEarlyHints' passed (0.004 seconds)
Test Case 'HTTP1ConnectionTests.testConnectionIsClosedIfResponseIsReceivedBeforeRequest' started at 2021-11-08 16:59:58.977
Test Case 'HTTP1ConnectionTests.testConnectionIsClosedIfResponseIsReceivedBeforeRequest' passed (0.003 seconds)
Test Case 'HTTP1ConnectionTests.testDoubleHTTPResponseLine' started at 2021-11-08 16:59:58.980
Test Case 'HTTP1ConnectionTests.testDoubleHTTPResponseLine' passed (0.003 seconds)
Test Case 'HTTP1ConnectionTests.testDownloadStreamingBackpressure' started at 2021-11-08 16:59:58.983
Test Case 'HTTP1ConnectionTests.testDownloadStreamingBackpressure' passed (0.067 seconds)
Test Suite 'HTTP1ConnectionTests' failed at 2021-11-08 16:59:59.050
	 Executed 12 tests, with 1 failure (0 unexpected) in 0.849 (0.849) seconds
Test Suite 'HTTP1ProxyConnectHandlerTests' started at 2021-11-08 16:59:59.050
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithoutAuthorizationSuccess' started at 2021-11-08 16:59:59.050
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithoutAuthorizationSuccess' passed (0.001 seconds)
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithAuthorization' started at 2021-11-08 16:59:59.051
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithAuthorization' passed (0.001 seconds)
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithoutAuthorizationFailure500' started at 2021-11-08 16:59:59.052
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithoutAuthorizationFailure500' passed (0.001 seconds)
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithoutAuthorizationButAuthorizationNeeded' started at 2021-11-08 16:59:59.053
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectWithoutAuthorizationButAuthorizationNeeded' passed (0.001 seconds)
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectReceivesBody' started at 2021-11-08 16:59:59.054
Test Case 'HTTP1ProxyConnectHandlerTests.testProxyConnectReceivesBody' passed (0.001 seconds)
Test Suite 'HTTP1ProxyConnectHandlerTests' passed at 2021-11-08 16:59:59.055
	 Executed 5 tests, with 0 failures (0 unexpected) in 0.005 (0.005) seconds
Test Suite 'HTTP2ClientRequestHandlerTests' started at 2021-11-08 16:59:59.055
Test Case 'HTTP2ClientRequestHandlerTests.testResponseBackpressure' started at 2021-11-08 16:59:59.055
Test Case 'HTTP2ClientRequestHandlerTests.testResponseBackpressure' passed (0.003 seconds)
Test Case 'HTTP2ClientRequestHandlerTests.testWriteBackpressure' started at 2021-11-08 16:59:59.058
Test Case 'HTTP2ClientRequestHandlerTests.testWriteBackpressure' passed (0.02 seconds)
Test Case 'HTTP2ClientRequestHandlerTests.testIdleReadTimeout' started at 2021-11-08 16:59:59.078
Test Case 'HTTP2ClientRequestHandlerTests.testIdleReadTimeout' passed (0.002 seconds)
Test Case 'HTTP2ClientRequestHandlerTests.testIdleReadTimeoutIsCanceledIfRequestIsCanceled' started at 2021-11-08 16:59:59.080
Test Case 'HTTP2ClientRequestHandlerTests.testIdleReadTimeoutIsCanceledIfRequestIsCanceled' passed (0.001 seconds)
Test Suite 'HTTP2ClientRequestHandlerTests' passed at 2021-11-08 16:59:59.081
	 Executed 4 tests, with 0 failures (0 unexpected) in 0.026 (0.026) seconds
Test Suite 'HTTP2ClientTests' started at 2021-11-08 16:59:59.081
Test Case 'HTTP2ClientTests.testSimpleGet' started at 2021-11-08 16:59:59.082
Test Case 'HTTP2ClientTests.testSimpleGet' passed (0.233 seconds)
Test Case 'HTTP2ClientTests.testConcurrentRequests' started at 2021-11-08 16:59:59.315
Test Case 'HTTP2ClientTests.testConcurrentRequests' passed (11.228 seconds)
Test Case 'HTTP2ClientTests.testConcurrentRequestsFromDifferentThreads' started at 2021-11-08 17:00:10.542
Test Case 'HTTP2ClientTests.testConcurrentRequestsFromDifferentThreads' passed (4.693 seconds)
Test Case 'HTTP2ClientTests.testConcurrentRequestsWorkWithRequiredEventLoop' started at 2021-11-08 17:00:15.236
Test Case 'HTTP2ClientTests.testConcurrentRequestsWorkWithRequiredEventLoop' passed (4.165 seconds)
Test Suite 'HTTP2ClientTests' passed at 2021-11-08 17:00:19.401
	 Executed 4 tests, with 0 failures (0 unexpected) in 20.319 (20.319) seconds
Test Suite 'HTTP2ConnectionTests' started at 2021-11-08 17:00:19.401
Test Case 'HTTP2ConnectionTests.testCreateNewConnectionFailureClosedIO' started at 2021-11-08 17:00:19.401
Test Case 'HTTP2ConnectionTests.testCreateNewConnectionFailureClosedIO' passed (0.001 seconds)
Test Case 'HTTP2ConnectionTests.testSimpleGetRequest' started at 2021-11-08 17:00:19.402
Test Case 'HTTP2ConnectionTests.testSimpleGetRequest' passed (0.057 seconds)
Test Case 'HTTP2ConnectionTests.testEveryDoneRequestLeadsToAStreamAvailableCall' started at 2021-11-08 17:00:19.459
Test Case 'HTTP2ConnectionTests.testEveryDoneRequestLeadsToAStreamAvailableCall' passed (1.656 seconds)
Test Case 'HTTP2ConnectionTests.testCancelAllRunningRequests' started at 2021-11-08 17:00:21.116
Test Case 'HTTP2ConnectionTests.testCancelAllRunningRequests' passed (0.907 seconds)
Test Suite 'HTTP2ConnectionTests' passed at 2021-11-08 17:00:22.023
	 Executed 4 tests, with 0 failures (0 unexpected) in 2.622 (2.622) seconds
Test Suite 'HTTP2IdleHandlerTests' started at 2021-11-08 17:00:22.023
Test Case 'HTTP2IdleHandlerTests.testReceiveSettingsWithMaxConcurrentStreamSetting' started at 2021-11-08 17:00:22.023
Test Case 'HTTP2IdleHandlerTests.testReceiveSettingsWithMaxConcurrentStreamSetting' passed (0.001 seconds)
Test Case 'HTTP2IdleHandlerTests.testReceiveSettingsWithoutMaxConcurrentStreamSetting' started at 2021-11-08 17:00:22.025
Test Case 'HTTP2IdleHandlerTests.testReceiveSettingsWithoutMaxConcurrentStreamSetting' passed (0.001 seconds)
Test Case 'HTTP2IdleHandlerTests.testEmptySettingsDontOverwriteMaxConcurrentStreamSetting' started at 2021-11-08 17:00:22.026
Test Case 'HTTP2IdleHandlerTests.testEmptySettingsDontOverwriteMaxConcurrentStreamSetting' passed (0.003 seconds)
Test Case 'HTTP2IdleHandlerTests.testOverwriteMaxConcurrentStreamSetting' started at 2021-11-08 17:00:22.028
Test Case 'HTTP2IdleHandlerTests.testOverwriteMaxConcurrentStreamSetting' passed (0.001 seconds)
Test Case 'HTTP2IdleHandlerTests.testGoAwayReceivedBeforeSettings' started at 2021-11-08 17:00:22.029
Test Case 'HTTP2IdleHandlerTests.testGoAwayReceivedBeforeSettings' passed (0.002 seconds)
Test Case 'HTTP2IdleHandlerTests.testGoAwayReceivedAfterSettings' started at 2021-11-08 17:00:22.031
Test Case 'HTTP2IdleHandlerTests.testGoAwayReceivedAfterSettings' passed (0.001 seconds)
Test Case 'HTTP2IdleHandlerTests.testCloseEventBeforeFirstSettings' started at 2021-11-08 17:00:22.033
Test Case 'HTTP2IdleHandlerTests.testCloseEventBeforeFirstSettings' passed (0.001 seconds)
Test Case 'HTTP2IdleHandlerTests.testCloseEventWhileNoOpenStreams' started at 2021-11-08 17:00:22.033
Test Case 'HTTP2IdleHandlerTests.testCloseEventWhileNoOpenStreams' passed (0.002 seconds)
Test Case 'HTTP2IdleHandlerTests.testCloseEventWhileThereAreOpenStreams' started at 2021-11-08 17:00:22.035
Test Case 'HTTP2IdleHandlerTests.testCloseEventWhileThereAreOpenStreams' passed (0.005 seconds)
Test Case 'HTTP2IdleHandlerTests.testGoAwayWhileThereAreOpenStreams' started at 2021-11-08 17:00:22.040
Test Case 'HTTP2IdleHandlerTests.testGoAwayWhileThereAreOpenStreams' passed (0.006 seconds)
Test Suite 'HTTP2IdleHandlerTests' passed at 2021-11-08 17:00:22.046
	 Executed 10 tests, with 0 failures (0 unexpected) in 0.022 (0.022) seconds
Test Suite 'HTTPClientCookieTests' started at 2021-11-08 17:00:22.047
Test Case 'HTTPClientCookieTests.testCookie' started at 2021-11-08 17:00:22.047
Test Case 'HTTPClientCookieTests.testCookie' passed (0.014 seconds)
Test Case 'HTTPClientCookieTests.testEmptyValueCookie' started at 2021-11-08 17:00:22.061
Test Case 'HTTPClientCookieTests.testEmptyValueCookie' passed (0.001 seconds)
Test Case 'HTTPClientCookieTests.testCookieDefaults' started at 2021-11-08 17:00:22.062
Test Case 'HTTPClientCookieTests.testCookieDefaults' passed (0.0 seconds)
Test Case 'HTTPClientCookieTests.testCookieInit' started at 2021-11-08 17:00:22.062
Test Case 'HTTPClientCookieTests.testCookieInit' passed (0.0 seconds)
Test Case 'HTTPClientCookieTests.testMalformedCookies' started at 2021-11-08 17:00:22.062
Test Case 'HTTPClientCookieTests.testMalformedCookies' passed (0.004 seconds)
Test Case 'HTTPClientCookieTests.testCookieExpiresDateParsing' started at 2021-11-08 17:00:22.066
Test Case 'HTTPClientCookieTests.testCookieExpiresDateParsing' passed (0.015 seconds)
Test Case 'HTTPClientCookieTests.testQuotedCookies' started at 2021-11-08 17:00:22.080
Test Case 'HTTPClientCookieTests.testQuotedCookies' passed (0.001 seconds)
Test Suite 'HTTPClientCookieTests' passed at 2021-11-08 17:00:22.082
	 Executed 7 tests, with 0 failures (0 unexpected) in 0.034 (0.034) seconds
Test Suite 'HTTPClientInternalTests' started at 2021-11-08 17:00:22.082
Test Case 'HTTPClientInternalTests.testProxyStreaming' started at 2021-11-08 17:00:22.082
Test Case 'HTTPClientInternalTests.testProxyStreaming' passed (0.551 seconds)
Test Case 'HTTPClientInternalTests.testProxyStreamingFailure' started at 2021-11-08 17:00:22.633
Test Case 'HTTPClientInternalTests.testProxyStreamingFailure' passed (0.558 seconds)
Test Case 'HTTPClientInternalTests.testRequestURITrailingSlash' started at 2021-11-08 17:00:23.191
Test Case 'HTTPClientInternalTests.testRequestURITrailingSlash' passed (0.005 seconds)
Test Case 'HTTPClientInternalTests.testChannelAndDelegateOnDifferentEventLoops' started at 2021-11-08 17:00:23.197
Test Case 'HTTPClientInternalTests.testChannelAndDelegateOnDifferentEventLoops' passed (0.051 seconds)
Test Case 'HTTPClientInternalTests.testResponseFutureIsOnCorrectEL' started at 2021-11-08 17:00:23.248
Test Case 'HTTPClientInternalTests.testResponseFutureIsOnCorrectEL' passed (1.799 seconds)
Test Case 'HTTPClientInternalTests.testUncleanCloseThrows' started at 2021-11-08 17:00:25.047
Test Case 'HTTPClientInternalTests.testUncleanCloseThrows' passed (0.044 seconds)
Test Case 'HTTPClientInternalTests.testUploadStreamingIsCalledOnTaskEL' started at 2021-11-08 17:00:25.091
Test Case 'HTTPClientInternalTests.testUploadStreamingIsCalledOnTaskEL' passed (0.071 seconds)
Test Case 'HTTPClientInternalTests.testTaskPromiseBoundToEL' started at 2021-11-08 17:00:25.162
Test Case 'HTTPClientInternalTests.testTaskPromiseBoundToEL' passed (0.065 seconds)
Test Case 'HTTPClientInternalTests.testConnectErrorCalloutOnCorrectEL' started at 2021-11-08 17:00:25.227
Test Case 'HTTPClientInternalTests.testConnectErrorCalloutOnCorrectEL' passed (10.047 seconds)
Test Case 'HTTPClientInternalTests.testInternalRequestURI' started at 2021-11-08 17:00:35.273
Test Case 'HTTPClientInternalTests.testInternalRequestURI' passed (0.008 seconds)
Test Suite 'HTTPClientInternalTests' passed at 2021-11-08 17:00:35.281
	 Executed 10 tests, with 0 failures (0 unexpected) in 13.198 (13.198) seconds
Test Suite 'HTTPClientNIOTSTests' started at 2021-11-08 17:00:35.281
Test Case 'HTTPClientNIOTSTests.testCorrectEventLoopGroup' started at 2021-11-08 17:00:35.281
Test Case 'HTTPClientNIOTSTests.testCorrectEventLoopGroup' passed (0.017 seconds)
Test Case 'HTTPClientNIOTSTests.testTLSFailError' started at 2021-11-08 17:00:35.298
Test Case 'HTTPClientNIOTSTests.testTLSFailError' passed (0.009 seconds)
Test Case 'HTTPClientNIOTSTests.testConnectionFailError' started at 2021-11-08 17:00:35.307
Test Case 'HTTPClientNIOTSTests.testConnectionFailError' passed (0.008 seconds)
Test Case 'HTTPClientNIOTSTests.testTLSVersionError' started at 2021-11-08 17:00:35.315
Test Case 'HTTPClientNIOTSTests.testTLSVersionError' passed (0.013 seconds)
Test Case 'HTTPClientNIOTSTests.testTrustRootCertificateLoadFail' started at 2021-11-08 17:00:35.328
Test Case 'HTTPClientNIOTSTests.testTrustRootCertificateLoadFail' passed (0.009 seconds)
Test Suite 'HTTPClientNIOTSTests' passed at 2021-11-08 17:00:35.338
	 Executed 5 tests, with 0 failures (0 unexpected) in 0.056 (0.056) seconds
Test Suite 'HTTPClientSOCKSTests' started at 2021-11-08 17:00:35.338
Test Case 'HTTPClientSOCKSTests.testProxySOCKS' started at 2021-11-08 17:00:35.338
Test Case 'HTTPClientSOCKSTests.testProxySOCKS' passed (0.041 seconds)
Test Case 'HTTPClientSOCKSTests.testProxySOCKSBogusAddress' started at 2021-11-08 17:00:35.379
Test Case 'HTTPClientSOCKSTests.testProxySOCKSBogusAddress' passed (10.017 seconds)
Test Case 'HTTPClientSOCKSTests.testProxySOCKSFailureNoServer' started at 2021-11-08 17:00:45.396
Test Case 'HTTPClientSOCKSTests.testProxySOCKSFailureNoServer' passed (10.025 seconds)
Test Case 'HTTPClientSOCKSTests.testProxySOCKSFailureInvalidServer' started at 2021-11-08 17:00:55.421
Test Case 'HTTPClientSOCKSTests.testProxySOCKSFailureInvalidServer' passed (10.016 seconds)
Test Case 'HTTPClientSOCKSTests.testProxySOCKSMisbehavingServer' started at 2021-11-08 17:01:05.438
Test Case 'HTTPClientSOCKSTests.testProxySOCKSMisbehavingServer' passed (10.02 seconds)
Test Suite 'HTTPClientSOCKSTests' passed at 2021-11-08 17:01:15.458
	 Executed 5 tests, with 0 failures (0 unexpected) in 40.119 (40.119) seconds
Test Suite 'HTTPClientTests' started at 2021-11-08 17:01:15.458
Test Case 'HTTPClientTests.testRequestURI' started at 2021-11-08 17:01:15.458
Test Case 'HTTPClientTests.testRequestURI' passed (0.012 seconds)
Test Case 'HTTPClientTests.testBadRequestURI' started at 2021-11-08 17:01:15.470
Test Case 'HTTPClientTests.testBadRequestURI' passed (0.014 seconds)
Test Case 'HTTPClientTests.testSchemaCasing' started at 2021-11-08 17:01:15.484
Test Case 'HTTPClientTests.testSchemaCasing' passed (0.013 seconds)
Test Case 'HTTPClientTests.testURLSocketPathInitializers' started at 2021-11-08 17:01:15.497
Test Case 'HTTPClientTests.testURLSocketPathInitializers' passed (0.016 seconds)
Test Case 'HTTPClientTests.testConvenienceExecuteMethods' started at 2021-11-08 17:01:15.513
Test Case 'HTTPClientTests.testConvenienceExecuteMethods' passed (0.073 seconds)
Test Case 'HTTPClientTests.testConvenienceExecuteMethodsOverSocket' started at 2021-11-08 17:01:15.587
Test Case 'HTTPClientTests.testConvenienceExecuteMethodsOverSocket' passed (0.049 seconds)
Test Case 'HTTPClientTests.testConvenienceExecuteMethodsOverSecureSocket' started at 2021-11-08 17:01:15.636
Test Case 'HTTPClientTests.testConvenienceExecuteMethodsOverSecureSocket' passed (0.075 seconds)
Test Case 'HTTPClientTests.testGet' started at 2021-11-08 17:01:15.711
Test Case 'HTTPClientTests.testGet' passed (0.036 seconds)
Test Case 'HTTPClientTests.testGetWithDifferentEventLoopBackpressure' started at 2021-11-08 17:01:15.746
Test Case 'HTTPClientTests.testGetWithDifferentEventLoopBackpressure' passed (0.533 seconds)
Test Case 'HTTPClientTests.testPost' started at 2021-11-08 17:01:16.279
Test Case 'HTTPClientTests.testPost' passed (0.032 seconds)
Test Case 'HTTPClientTests.testGetHttps' started at 2021-11-08 17:01:16.311
Test Case 'HTTPClientTests.testGetHttps' passed (0.055 seconds)
Test Case 'HTTPClientTests.testGetHttpsWithIP' started at 2021-11-08 17:01:16.366
Test Case 'HTTPClientTests.testGetHttpsWithIP' passed (0.059 seconds)
Test Case 'HTTPClientTests.testGetHTTPSWorksOnMTELGWithIP' started at 2021-11-08 17:01:16.425
Test Case 'HTTPClientTests.testGetHTTPSWorksOnMTELGWithIP' passed (0.052 seconds)
Test Case 'HTTPClientTests.testPostHttps' started at 2021-11-08 17:01:16.477
Test Case 'HTTPClientTests.testPostHttps' passed (0.068 seconds)
Test Case 'HTTPClientTests.testHttpRedirect' started at 2021-11-08 17:01:16.545
Test Case 'HTTPClientTests.testHttpRedirect' passed (0.373 seconds)
Test Case 'HTTPClientTests.testHttpHostRedirect' started at 2021-11-08 17:01:16.918
Test Case 'HTTPClientTests.testHttpHostRedirect' passed (0.038 seconds)
Test Case 'HTTPClientTests.testPercentEncoded' started at 2021-11-08 17:01:16.956
Test Case 'HTTPClientTests.testPercentEncoded' passed (0.037 seconds)
Test Case 'HTTPClientTests.testPercentEncodedBackslash' started at 2021-11-08 17:01:16.994
Test Case 'HTTPClientTests.testPercentEncodedBackslash' passed (0.037 seconds)
Test Case 'HTTPClientTests.testMultipleContentLengthHeaders' started at 2021-11-08 17:01:17.031
Test Case 'HTTPClientTests.testMultipleContentLengthHeaders' passed (0.029 seconds)
Test Case 'HTTPClientTests.testStreaming' started at 2021-11-08 17:01:17.060
Test Case 'HTTPClientTests.testStreaming' passed (0.538 seconds)
Test Case 'HTTPClientTests.testFileDownload' started at 2021-11-08 17:01:17.598
Test Case 'HTTPClientTests.testFileDownload' passed (0.53 seconds)
Test Case 'HTTPClientTests.testFileDownloadError' started at 2021-11-08 17:01:18.128
Test Case 'HTTPClientTests.testFileDownloadError' passed (0.039 seconds)
Test Case 'HTTPClientTests.testRemoteClose' started at 2021-11-08 17:01:18.167
Test Case 'HTTPClientTests.testRemoteClose' passed (0.028 seconds)
Test Case 'HTTPClientTests.testReadTimeout' started at 2021-11-08 17:01:18.195
Test Case 'HTTPClientTests.testReadTimeout' passed (0.172 seconds)
Test Case 'HTTPClientTests.testConnectTimeout' started at 2021-11-08 17:01:18.367
Test Case 'HTTPClientTests.testConnectTimeout' passed (0.115 seconds)
Test Case 'HTTPClientTests.testDeadline' started at 2021-11-08 17:01:18.482
Test Case 'HTTPClientTests.testDeadline' passed (0.165 seconds)
Test Case 'HTTPClientTests.testCancel' started at 2021-11-08 17:01:18.647
Test Case 'HTTPClientTests.testCancel' passed (0.12 seconds)
Test Case 'HTTPClientTests.testStressCancel' started at 2021-11-08 17:01:18.767
Test Case 'HTTPClientTests.testStressCancel' passed (0.274 seconds)
Test Case 'HTTPClientTests.testHTTPClientAuthorization' started at 2021-11-08 17:01:19.041
Test Case 'HTTPClientTests.testHTTPClientAuthorization' passed (0.012 seconds)
Test Case 'HTTPClientTests.testProxyPlaintext' started at 2021-11-08 17:01:19.053
Test Case 'HTTPClientTests.testProxyPlaintext' passed (0.04 seconds)
Test Case 'HTTPClientTests.testProxyTLS' started at 2021-11-08 17:01:19.093
Test Case 'HTTPClientTests.testProxyTLS' passed (0.063 seconds)
Test Case 'HTTPClientTests.testProxyPlaintextWithCorrectlyAuthorization' started at 2021-11-08 17:01:19.156
Test Case 'HTTPClientTests.testProxyPlaintextWithCorrectlyAuthorization' passed (0.045 seconds)
Test Case 'HTTPClientTests.testProxyPlaintextWithIncorrectlyAuthorization' started at 2021-11-08 17:01:19.201
Test Case 'HTTPClientTests.testProxyPlaintextWithIncorrectlyAuthorization' passed (10.027 seconds)
Test Case 'HTTPClientTests.testUploadStreaming' started at 2021-11-08 17:01:29.228
Test Case 'HTTPClientTests.testUploadStreaming' passed (0.034 seconds)
Test Case 'HTTPClientTests.testNoContentLengthForSSLUncleanShutdown' started at 2021-11-08 17:01:29.263
Test Case 'HTTPClientTests.testNoContentLengthForSSLUncleanShutdown' passed (0.088 seconds)
Test Case 'HTTPClientTests.testNoContentLengthWithIgnoreErrorForSSLUncleanShutdown' started at 2021-11-08 17:01:29.351
Test Case 'HTTPClientTests.testNoContentLengthWithIgnoreErrorForSSLUncleanShutdown' passed (0.087 seconds)
Test Case 'HTTPClientTests.testCorrectContentLengthForSSLUncleanShutdown' started at 2021-11-08 17:01:29.438
Test Case 'HTTPClientTests.testCorrectContentLengthForSSLUncleanShutdown' passed (0.103 seconds)
Test Case 'HTTPClientTests.testNoContentForSSLUncleanShutdown' started at 2021-11-08 17:01:29.541
Test Case 'HTTPClientTests.testNoContentForSSLUncleanShutdown' passed (0.095 seconds)
Test Case 'HTTPClientTests.testNoResponseForSSLUncleanShutdown' started at 2021-11-08 17:01:29.635
Test Case 'HTTPClientTests.testNoResponseForSSLUncleanShutdown' passed (0.085 seconds)
Test Case 'HTTPClientTests.testNoResponseWithIgnoreErrorForSSLUncleanShutdown' started at 2021-11-08 17:01:29.721
Test Case 'HTTPClientTests.testNoResponseWithIgnoreErrorForSSLUncleanShutdown' passed (0.076 seconds)
Test Case 'HTTPClientTests.testWrongContentLengthForSSLUncleanShutdown' started at 2021-11-08 17:01:29.796
Test Case 'HTTPClientTests.testWrongContentLengthForSSLUncleanShutdown' passed (0.101 seconds)
Test Case 'HTTPClientTests.testWrongContentLengthWithIgnoreErrorForSSLUncleanShutdown' started at 2021-11-08 17:01:29.898
Test Case 'HTTPClientTests.testWrongContentLengthWithIgnoreErrorForSSLUncleanShutdown' passed (0.084 seconds)
Test Case 'HTTPClientTests.testEventLoopArgument' started at 2021-11-08 17:01:29.982
Test Case 'HTTPClientTests.testEventLoopArgument' passed (0.055 seconds)
Test Case 'HTTPClientTests.testDecompression' started at 2021-11-08 17:01:30.037
Test Case 'HTTPClientTests.testDecompression' passed (0.238 seconds)
Test Case 'HTTPClientTests.testDecompressionLimit' started at 2021-11-08 17:01:30.275
Test Case 'HTTPClientTests.testDecompressionLimit' passed (0.041 seconds)
Test Case 'HTTPClientTests.testLoopDetectionRedirectLimit' started at 2021-11-08 17:01:30.316
Test Case 'HTTPClientTests.testLoopDetectionRedirectLimit' passed (0.082 seconds)
Test Case 'HTTPClientTests.testCountRedirectLimit' started at 2021-11-08 17:01:30.398
Test Case 'HTTPClientTests.testCountRedirectLimit' passed (0.151 seconds)
Test Case 'HTTPClientTests.testMultipleConcurrentRequests' started at 2021-11-08 17:01:30.549
Test Case 'HTTPClientTests.testMultipleConcurrentRequests' passed (11.875 seconds)
Test Case 'HTTPClientTests.testWorksWith500Error' started at 2021-11-08 17:01:42.425
Test Case 'HTTPClientTests.testWorksWith500Error' passed (0.045 seconds)
Test Case 'HTTPClientTests.testWorksWithHTTP10Response' started at 2021-11-08 17:01:42.470
Test Case 'HTTPClientTests.testWorksWithHTTP10Response' passed (0.032 seconds)
Test Case 'HTTPClientTests.testWorksWhenServerClosesConnectionAfterReceivingRequest' started at 2021-11-08 17:01:42.502
Test Case 'HTTPClientTests.testWorksWhenServerClosesConnectionAfterReceivingRequest' passed (0.029 seconds)
Test Case 'HTTPClientTests.testSubsequentRequestsWorkWithServerSendingConnectionClose' started at 2021-11-08 17:01:42.531
Test Case 'HTTPClientTests.testSubsequentRequestsWorkWithServerSendingConnectionClose' passed (0.154 seconds)
Test Case 'HTTPClientTests.testSubsequentRequestsWorkWithServerAlternatingBetweenKeepAliveAndClose' started at 2021-11-08 17:01:42.686
Test Case 'HTTPClientTests.testSubsequentRequestsWorkWithServerAlternatingBetweenKeepAliveAndClose' passed (0.146 seconds)
Test Case 'HTTPClientTests.testStressGetHttps' started at 2021-11-08 17:01:42.832
Test Case 'HTTPClientTests.testStressGetHttps' passed (2.916 seconds)
Test Case 'HTTPClientTests.testStressGetHttpsSSLError' started at 2021-11-08 17:01:45.749
Test Case 'HTTPClientTests.testStressGetHttpsSSLError' passed (10.311 seconds)
Test Case 'HTTPClientTests.testFailingConnectionIsReleased' started at 2021-11-08 17:01:56.060
Test Case 'HTTPClientTests.testFailingConnectionIsReleased' passed (0.038 seconds)
Test Case 'HTTPClientTests.testResponseDelayGet' started at 2021-11-08 17:01:56.098
Test Case 'HTTPClientTests.testResponseDelayGet' passed (2.043 seconds)
Test Case 'HTTPClientTests.testIdleTimeoutNoReuse' started at 2021-11-08 17:01:58.141
Test Case 'HTTPClientTests.testIdleTimeoutNoReuse' passed (2.793 seconds)
Test Case 'HTTPClientTests.testStressGetClose' started at 2021-11-08 17:02:00.934
Test Case 'HTTPClientTests.testStressGetClose' passed (2.349 seconds)
Test Case 'HTTPClientTests.testManyConcurrentRequestsWork' started at 2021-11-08 17:02:03.283
Test Case 'HTTPClientTests.testManyConcurrentRequestsWork' passed (1.809 seconds)
Test Case 'HTTPClientTests.testRepeatedRequestsWorkWhenServerAlwaysCloses' started at 2021-11-08 17:02:05.091
Test Case 'HTTPClientTests.testRepeatedRequestsWorkWhenServerAlwaysCloses' passed (0.315 seconds)
Test Case 'HTTPClientTests.testShutdownBeforeTasksCompletion' started at 2021-11-08 17:02:05.407
Test Case 'HTTPClientTests.testShutdownBeforeTasksCompletion' passed (0.02 seconds)
Test Case 'HTTPClientTests.testUncleanShutdownActuallyShutsDown' started at 2021-11-08 17:02:05.427
Test Case 'HTTPClientTests.testUncleanShutdownActuallyShutsDown' passed (0.019 seconds)
Test Case 'HTTPClientTests.testUncleanShutdownCancelsTasks' started at 2021-11-08 17:02:05.446
Test Case 'HTTPClientTests.testUncleanShutdownCancelsTasks' passed (0.12 seconds)
Test Case 'HTTPClientTests.testDoubleShutdown' started at 2021-11-08 17:02:05.566
Test Case 'HTTPClientTests.testDoubleShutdown' passed (0.013 seconds)
Test Case 'HTTPClientTests.testTaskFailsWhenClientIsShutdown' started at 2021-11-08 17:02:05.579
Test Case 'HTTPClientTests.testTaskFailsWhenClientIsShutdown' passed (0.014 seconds)
Test Case 'HTTPClientTests.testRaceNewRequestsVsShutdown' started at 2021-11-08 17:02:05.593
Test Case 'HTTPClientTests.testRaceNewRequestsVsShutdown' passed (0.273 seconds)
Test Case 'HTTPClientTests.testVaryingLoopPreference' started at 2021-11-08 17:02:05.866
Test Case 'HTTPClientTests.testVaryingLoopPreference' passed (0.844 seconds)
Test Case 'HTTPClientTests.testMakeSecondRequestDuringCancelledCallout' started at 2021-11-08 17:02:06.711
Test Case 'HTTPClientTests.testMakeSecondRequestDuringCancelledCallout' passed (0.026 seconds)
Test Case 'HTTPClientTests.testMakeSecondRequestDuringSuccessCallout' started at 2021-11-08 17:02:06.737
Test Case 'HTTPClientTests.testMakeSecondRequestDuringSuccessCallout' passed (0.037 seconds)
Test Case 'HTTPClientTests.testMakeSecondRequestWhilstFirstIsOngoing' started at 2021-11-08 17:02:06.774
Test Case 'HTTPClientTests.testMakeSecondRequestWhilstFirstIsOngoing' passed (0.081 seconds)
Test Case 'HTTPClientTests.testUDSBasic' started at 2021-11-08 17:02:06.856
Test Case 'HTTPClientTests.testUDSBasic' passed (0.053 seconds)
Test Case 'HTTPClientTests.testUDSSocketAndPath' started at 2021-11-08 17:02:06.909
Test Case 'HTTPClientTests.testUDSSocketAndPath' passed (0.052 seconds)
Test Case 'HTTPClientTests.testHTTPPlusUNIX' started at 2021-11-08 17:02:06.961
Test Case 'HTTPClientTests.testHTTPPlusUNIX' passed (0.034 seconds)
Test Case 'HTTPClientTests.testHTTPSPlusUNIX' started at 2021-11-08 17:02:06.996
Test Case 'HTTPClientTests.testHTTPSPlusUNIX' passed (0.053 seconds)
Test Case 'HTTPClientTests.testUseExistingConnectionOnDifferentEL' started at 2021-11-08 17:02:07.049
Test Case 'HTTPClientTests.testUseExistingConnectionOnDifferentEL' passed (0.397 seconds)
Test Case 'HTTPClientTests.testWeRecoverFromServerThatClosesTheConnectionOnUs' started at 2021-11-08 17:02:07.446
Test Case 'HTTPClientTests.testWeRecoverFromServerThatClosesTheConnectionOnUs' passed (0.048 seconds)
Test Case 'HTTPClientTests.testPoolClosesIdleConnections' started at 2021-11-08 17:02:07.494
Test Case 'HTTPClientTests.testPoolClosesIdleConnections' passed (0.226 seconds)
Test Case 'HTTPClientTests.testRacePoolIdleConnectionsAndGet' started at 2021-11-08 17:02:07.720
Test Case 'HTTPClientTests.testRacePoolIdleConnectionsAndGet' passed (13.408 seconds)
Test Case 'HTTPClientTests.testAvoidLeakingTLSHandshakeCompletionPromise' started at 2021-11-08 17:02:21.128
Test Case 'HTTPClientTests.testAvoidLeakingTLSHandshakeCompletionPromise' passed (0.121 seconds)
Test Case 'HTTPClientTests.testAsyncShutdown' started at 2021-11-08 17:02:21.249
Test Case 'HTTPClientTests.testAsyncShutdown' passed (0.012 seconds)
Test Case 'HTTPClientTests.testAsyncShutdownDefaultQueue' started at 2021-11-08 17:02:21.262
Test Case 'HTTPClientTests.testAsyncShutdownDefaultQueue' passed (0.015 seconds)
Test Case 'HTTPClientTests.testValidationErrorsAreSurfaced' started at 2021-11-08 17:02:21.277
Test Case 'HTTPClientTests.testValidationErrorsAreSurfaced' passed (0.023 seconds)
Test Case 'HTTPClientTests.testUploadsReallyStream' started at 2021-11-08 17:02:21.299
Test Case 'HTTPClientTests.testUploadsReallyStream' passed (0.067 seconds)
Test Case 'HTTPClientTests.testUploadStreamingCallinToleratedFromOtsideEL' started at 2021-11-08 17:02:21.366
Test Case 'HTTPClientTests.testUploadStreamingCallinToleratedFromOtsideEL' passed (0.031 seconds)
Test Case 'HTTPClientTests.testWeHandleUsSendingACloseHeaderCorrectly' started at 2021-11-08 17:02:21.397
Test Case 'HTTPClientTests.testWeHandleUsSendingACloseHeaderCorrectly' passed (0.115 seconds)
Test Case 'HTTPClientTests.testWeHandleUsReceivingACloseHeaderCorrectly' started at 2021-11-08 17:02:21.512
Test Case 'HTTPClientTests.testWeHandleUsReceivingACloseHeaderCorrectly' passed (0.07 seconds)
Test Case 'HTTPClientTests.testWeHandleUsSendingACloseHeaderAmongstOtherConnectionHeadersCorrectly' started at 2021-11-08 17:02:21.582
Test Case 'HTTPClientTests.testWeHandleUsSendingACloseHeaderAmongstOtherConnectionHeadersCorrectly' passed (0.104 seconds)
Test Case 'HTTPClientTests.testWeHandleUsReceivingACloseHeaderAmongstOtherConnectionHeadersCorrectly' started at 2021-11-08 17:02:21.686
Test Case 'HTTPClientTests.testWeHandleUsReceivingACloseHeaderAmongstOtherConnectionHeadersCorrectly' passed (0.075 seconds)
Test Case 'HTTPClientTests.testLoggingCorrectlyAttachesRequestInformation' started at 2021-11-08 17:02:21.761
Test Case 'HTTPClientTests.testLoggingCorrectlyAttachesRequestInformation' passed (0.054 seconds)
Test Case 'HTTPClientTests.testNothingIsLoggedAtInfoOrHigher' started at 2021-11-08 17:02:21.815
Test Case 'HTTPClientTests.testNothingIsLoggedAtInfoOrHigher' passed (0.117 seconds)
Test Case 'HTTPClientTests.testAllMethodsLog' started at 2021-11-08 17:02:21.932
Test Case 'HTTPClientTests.testAllMethodsLog' passed (0.142 seconds)
Test Case 'HTTPClientTests.testClosingIdleConnectionsInPoolLogsInTheBackground' started at 2021-11-08 17:02:22.074
Test Case 'HTTPClientTests.testClosingIdleConnectionsInPoolLogsInTheBackground' passed (0.035 seconds)
Test Case 'HTTPClientTests.testUploadStreamingNoLength' started at 2021-11-08 17:02:22.109
Test Case 'HTTPClientTests.testUploadStreamingNoLength' passed (0.041 seconds)
Test Case 'HTTPClientTests.testConnectErrorPropagatedToDelegate' started at 2021-11-08 17:02:22.150
Test Case 'HTTPClientTests.testConnectErrorPropagatedToDelegate' passed (0.03 seconds)
Test Case 'HTTPClientTests.testDelegateCallinsTolerateRandomEL' started at 2021-11-08 17:02:22.180
Test Case 'HTTPClientTests.testDelegateCallinsTolerateRandomEL' passed (0.058 seconds)
Test Case 'HTTPClientTests.testContentLengthTooLongFails' started at 2021-11-08 17:02:22.238
Test Case 'HTTPClientTests.testContentLengthTooLongFails' passed (0.04 seconds)
Test Case 'HTTPClientTests.testContentLengthTooShortFails' started at 2021-11-08 17:02:22.278
Test Case 'HTTPClientTests.testContentLengthTooShortFails' passed (0.06 seconds)
Test Case 'HTTPClientTests.testBodyUploadAfterEndFails' started at 2021-11-08 17:02:22.338
Test Case 'HTTPClientTests.testBodyUploadAfterEndFails' passed (0.055 seconds)
Test Case 'HTTPClientTests.testNoBytesSentOverBodyLimit' started at 2021-11-08 17:02:22.393
Test Case 'HTTPClientTests.testNoBytesSentOverBodyLimit' passed (9.02 seconds)
Test Case 'HTTPClientTests.testDoubleError' started at 2021-11-08 17:02:31.413
Test Case 'HTTPClientTests.testDoubleError' passed (0.027 seconds)
Test Case 'HTTPClientTests.testSSLHandshakeErrorPropagation' started at 2021-11-08 17:02:31.440
Test Case 'HTTPClientTests.testSSLHandshakeErrorPropagation' passed (10.027 seconds)
Test Case 'HTTPClientTests.testSSLHandshakeErrorPropagationDelayedClose' started at 2021-11-08 17:02:41.468
Test Case 'HTTPClientTests.testSSLHandshakeErrorPropagationDelayedClose' passed (10.027 seconds)
Test Case 'HTTPClientTests.testWeCloseConnectionsWhenConnectionCloseSetByServer' started at 2021-11-08 17:02:51.495
Test Case 'HTTPClientTests.testWeCloseConnectionsWhenConnectionCloseSetByServer' passed (0.026 seconds)
Test Case 'HTTPClientTests.testBiDirectionalStreaming' started at 2021-11-08 17:02:51.521
Test Case 'HTTPClientTests.testBiDirectionalStreaming' passed (0.14 seconds)
Test Case 'HTTPClientTests.testSynchronousHandshakeErrorReporting' started at 2021-11-08 17:02:51.661
Test Case 'HTTPClientTests.testSynchronousHandshakeErrorReporting' passed (10.022 seconds)
Test Case 'HTTPClientTests.testFileDownloadChunked' started at 2021-11-08 17:03:01.684
Test Case 'HTTPClientTests.testFileDownloadChunked' passed (0.054 seconds)
Test Case 'HTTPClientTests.testCloseWhileBackpressureIsExertedIsFine' started at 2021-11-08 17:03:01.737
Test Case 'HTTPClientTests.testCloseWhileBackpressureIsExertedIsFine' passed (0.107 seconds)
Test Case 'HTTPClientTests.testErrorAfterCloseWhileBackpressureExerted' started at 2021-11-08 17:03:01.844
Test Case 'HTTPClientTests.testErrorAfterCloseWhileBackpressureExerted' passed (0.038 seconds)
Test Case 'HTTPClientTests.testRequestSpecificTLS' started at 2021-11-08 17:03:01.883
Test Case 'HTTPClientTests.testRequestSpecificTLS' passed (0.17 seconds)
Test Case 'HTTPClientTests.testConnectionPoolSizeConfigValueIsRespected' started at 2021-11-08 17:03:02.053
Test Case 'HTTPClientTests.testConnectionPoolSizeConfigValueIsRespected' passed (47.529 seconds)
Test Case 'HTTPClientTests.testRequestWithHeaderTransferEncodingIdentityFails' started at 2021-11-08 17:03:49.582
Test Case 'HTTPClientTests.testRequestWithHeaderTransferEncodingIdentityFails' passed (0.016 seconds)
Test Suite 'HTTPClientTests' passed at 2021-11-08 17:03:49.598
	 Executed 112 tests, with 0 failures (0 unexpected) in 154.132 (154.132) seconds
Test Suite 'HTTPConnectionPoolTests' started at 2021-11-08 17:03:49.598
Test Case 'HTTPConnectionPoolTests.testOnlyOneConnectionIsUsedForSubSequentRequests' started at 2021-11-08 17:03:49.598
Test Case 'HTTPConnectionPoolTests.testOnlyOneConnectionIsUsedForSubSequentRequests' passed (1.109 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionsForEventLoopRequirementsAreClosed' started at 2021-11-08 17:03:50.707
Test Case 'HTTPConnectionPoolTests.testConnectionsForEventLoopRequirementsAreClosed' passed (0.334 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionPoolGrowsToMaxConcurrentConnections' started at 2021-11-08 17:03:51.041
Test Case 'HTTPConnectionPoolTests.testConnectionPoolGrowsToMaxConcurrentConnections' passed (3.836 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionCreationIsRetriedUntilRequestIsFailed' started at 2021-11-08 17:03:54.877
Test Case 'HTTPConnectionPoolTests.testConnectionCreationIsRetriedUntilRequestIsFailed' passed (5.023 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionCreationIsRetriedUntilPoolIsShutdown' started at 2021-11-08 17:03:59.900
Test Case 'HTTPConnectionPoolTests.testConnectionCreationIsRetriedUntilPoolIsShutdown' passed (2.014 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionCreationIsRetriedUntilRequestIsCancelled' started at 2021-11-08 17:04:01.914
Test Case 'HTTPConnectionPoolTests.testConnectionCreationIsRetriedUntilRequestIsCancelled' passed (1.027 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionShutdownIsCalledOnActiveConnections' started at 2021-11-08 17:04:02.942
Test Case 'HTTPConnectionPoolTests.testConnectionShutdownIsCalledOnActiveConnections' passed (0.516 seconds)
Test Case 'HTTPConnectionPoolTests.testConnectionPoolStressResistanceHTTP1' started at 2021-11-08 17:04:03.458
Test Case 'HTTPConnectionPoolTests.testConnectionPoolStressResistanceHTTP1' passed (25.993 seconds)
Test Case 'HTTPConnectionPoolTests.testBackoffBehavesSensibly' started at 2021-11-08 17:04:29.451
Test Case 'HTTPConnectionPoolTests.testBackoffBehavesSensibly' passed (0.002 seconds)
Test Suite 'HTTPConnectionPoolTests' passed at 2021-11-08 17:04:29.453
	 Executed 9 tests, with 0 failures (0 unexpected) in 39.855 (39.855) seconds
Test Suite 'HTTPConnectionPool_FactoryTests' started at 2021-11-08 17:04:29.453
Test Case 'HTTPConnectionPool_FactoryTests.testConnectionCreationTimesoutIfDeadlineIsInThePast' started at 2021-11-08 17:04:29.453
Test Case 'HTTPConnectionPool_FactoryTests.testConnectionCreationTimesoutIfDeadlineIsInThePast' passed (0.01 seconds)
Test Case 'HTTPConnectionPool_FactoryTests.testSOCKSConnectionCreationTimesoutIfRemoteIsUnresponsive' started at 2021-11-08 17:04:29.463
Test Case 'HTTPConnectionPool_FactoryTests.testSOCKSConnectionCreationTimesoutIfRemoteIsUnresponsive' passed (1.007 seconds)
Test Case 'HTTPConnectionPool_FactoryTests.testHTTPProxyConnectionCreationTimesoutIfRemoteIsUnresponsive' started at 2021-11-08 17:04:30.470
Test Case 'HTTPConnectionPool_FactoryTests.testHTTPProxyConnectionCreationTimesoutIfRemoteIsUnresponsive' passed (1.007 seconds)
Test Case 'HTTPConnectionPool_FactoryTests.testTLSConnectionCreationTimesoutIfRemoteIsUnresponsive' started at 2021-11-08 17:04:31.477
Test Case 'HTTPConnectionPool_FactoryTests.testTLSConnectionCreationTimesoutIfRemoteIsUnresponsive' passed (1.007 seconds)
Test Suite 'HTTPConnectionPool_FactoryTests' passed at 2021-11-08 17:04:32.485
	 Executed 4 tests, with 0 failures (0 unexpected) in 3.031 (3.031) seconds
Test Suite 'HTTPConnectionPool_HTTP1ConnectionsTests' started at 2021-11-08 17:04:32.485
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCreatingConnections' started at 2021-11-08 17:04:32.485
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCreatingConnections' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCreatingConnectionAndFailing' started at 2021-11-08 17:04:32.485
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCreatingConnectionAndFailing' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnPreferredAndAvailableEL' started at 2021-11-08 17:04:32.485
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnPreferredAndAvailableEL' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnPreferredButUnavailableEL' started at 2021-11-08 17:04:32.486
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnPreferredButUnavailableEL' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnRequiredButUnavailableEL' started at 2021-11-08 17:04:32.486
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnRequiredButUnavailableEL' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnRequiredAndAvailableEL' started at 2021-11-08 17:04:32.486
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testLeaseConnectionOnRequiredAndAvailableEL' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCloseConnectionIfIdle' started at 2021-11-08 17:04:32.487
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCloseConnectionIfIdle' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCloseConnectionIfIdleButLeasedRaceCondition' started at 2021-11-08 17:04:32.487
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCloseConnectionIfIdleButLeasedRaceCondition' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCloseConnectionIfIdleButClosedRaceCondition' started at 2021-11-08 17:04:32.487
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testCloseConnectionIfIdleButClosedRaceCondition' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testShutdown' started at 2021-11-08 17:04:32.487
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testShutdown' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2' started at 2021-11-08 17:04:32.488
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2' passed (0.002 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithPendingRequestsWithRequiredEventLoop' started at 2021-11-08 17:04:32.490
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithPendingRequestsWithRequiredEventLoop' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithPendingRequestsWithPreferredEventLoop' started at 2021-11-08 17:04:32.490
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithPendingRequestsWithPreferredEventLoop' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithAlreadyLeasedHTTP1Connection' started at 2021-11-08 17:04:32.491
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithAlreadyLeasedHTTP1Connection' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithMoreStartingConnectionsThanMaximumAllowedConccurentConnections' started at 2021-11-08 17:04:32.491
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2WithMoreStartingConnectionsThanMaximumAllowedConccurentConnections' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2StartsEnoghOverflowConnectionsForRequiredEventLoopRequests' started at 2021-11-08 17:04:32.491
Test Case 'HTTPConnectionPool_HTTP1ConnectionsTests.testMigrationFromHTTP2StartsEnoghOverflowConnectionsForRequiredEventLoopRequests' passed (0.001 seconds)
Test Suite 'HTTPConnectionPool_HTTP1ConnectionsTests' passed at 2021-11-08 17:04:32.492
	 Executed 16 tests, with 0 failures (0 unexpected) in 0.007 (0.007) seconds
Test Suite 'HTTPConnectionPool_HTTP1StateMachineTests' started at 2021-11-08 17:04:32.492
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testCreatingAndFailingConnections' started at 2021-11-08 17:04:32.492
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testCreatingAndFailingConnections' passed (0.007 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionFailureBackoff' started at 2021-11-08 17:04:32.499
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionFailureBackoff' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testCancelRequestWorks' started at 2021-11-08 17:04:32.500
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testCancelRequestWorks' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testExecuteOnShuttingDownPool' started at 2021-11-08 17:04:32.501
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testExecuteOnShuttingDownPool' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestsAreQueuedIfAllConnectionsAreInUseAndRequestsAreDequeuedInOrder' started at 2021-11-08 17:04:32.501
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestsAreQueuedIfAllConnectionsAreInUseAndRequestsAreDequeuedInOrder' passed (0.031 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testBestConnectionIsPicked' started at 2021-11-08 17:04:32.533
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testBestConnectionIsPicked' passed (0.325 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionAbortIsIgnoredIfThereAreNoQueuedRequests' started at 2021-11-08 17:04:32.858
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionAbortIsIgnoredIfThereAreNoQueuedRequests' passed (0.005 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionCloseLeadsToTumbleWeedIfThereNoQueuedRequests' started at 2021-11-08 17:04:32.863
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionCloseLeadsToTumbleWeedIfThereNoQueuedRequests' passed (0.003 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionAbortLeadsToNewConnectionsIfThereAreQueuedRequests' started at 2021-11-08 17:04:32.866
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionAbortLeadsToNewConnectionsIfThereAreQueuedRequests' passed (0.041 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testParkedConnectionTimesOut' started at 2021-11-08 17:04:32.907
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testParkedConnectionTimesOut' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionPoolFullOfParkedConnectionsIsShutdownImmediately' started at 2021-11-08 17:04:32.908
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionPoolFullOfParkedConnectionsIsShutdownImmediately' passed (0.008 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testParkedConnectionTimesOutButIsAlsoClosedByRemote' started at 2021-11-08 17:04:32.916
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testParkedConnectionTimesOutButIsAlsoClosedByRemote' passed (0.003 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionBackoffVsShutdownRace' started at 2021-11-08 17:04:32.919
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testConnectionBackoffVsShutdownRace' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestThatTimesOutIsFailedWithLastConnectionCreationError' started at 2021-11-08 17:04:32.921
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestThatTimesOutIsFailedWithLastConnectionCreationError' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestThatTimesOutBeforeAConnectionIsEstablishedIsFailedWithConnectTimeoutError' started at 2021-11-08 17:04:32.921
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestThatTimesOutBeforeAConnectionIsEstablishedIsFailedWithConnectTimeoutError' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestThatTimesOutAfterAConnectionWasEstablishedSuccessfullyTimesOutWithGenericError' started at 2021-11-08 17:04:32.922
Test Case 'HTTPConnectionPool_HTTP1StateMachineTests.testRequestThatTimesOutAfterAConnectionWasEstablishedSuccessfullyTimesOutWithGenericError' passed (0.001 seconds)
Test Suite 'HTTPConnectionPool_HTTP1StateMachineTests' passed at 2021-11-08 17:04:32.922
	 Executed 16 tests, with 0 failures (0 unexpected) in 0.429 (0.429) seconds
Test Suite 'HTTPConnectionPool_HTTP2ConnectionsTests' started at 2021-11-08 17:04:32.923
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCreatingConnections' started at 2021-11-08 17:04:32.923
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCreatingConnections' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCreatingConnectionAndFailing' started at 2021-11-08 17:04:32.923
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCreatingConnectionAndFailing' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testFailConnectionRace' started at 2021-11-08 17:04:32.923
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testFailConnectionRace' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeaseConnectionOfPreferredButUnavailableEL' started at 2021-11-08 17:04:32.924
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeaseConnectionOfPreferredButUnavailableEL' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeaseConnectionOnRequiredButUnavailableEL' started at 2021-11-08 17:04:32.924
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeaseConnectionOnRequiredButUnavailableEL' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdle' started at 2021-11-08 17:04:32.924
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdle' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdleButLeasedRaceCondition' started at 2021-11-08 17:04:32.924
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdleButLeasedRaceCondition' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdleButClosedRaceCondition' started at 2021-11-08 17:04:32.925
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdleButClosedRaceCondition' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdleRace' started at 2021-11-08 17:04:32.925
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testCloseConnectionIfIdleRace' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testShutdown' started at 2021-11-08 17:04:32.925
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testShutdown' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeasingAllConnections' started at 2021-11-08 17:04:32.926
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeasingAllConnections' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testGoAway' started at 2021-11-08 17:04:32.926
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testGoAway' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testNewMaxConcurrentStreamsSetting' started at 2021-11-08 17:04:32.926
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testNewMaxConcurrentStreamsSetting' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeaseOnPreferredEventLoopWithoutAnyAvailable' started at 2021-11-08 17:04:32.926
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testLeaseOnPreferredEventLoopWithoutAnyAvailable' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationFromHTTP1' started at 2021-11-08 17:04:32.927
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationFromHTTP1' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationToHTTP1' started at 2021-11-08 17:04:32.927
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationToHTTP1' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationFromHTTP1WithPendingRequestsWithRequiredEventLoop' started at 2021-11-08 17:04:32.927
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationFromHTTP1WithPendingRequestsWithRequiredEventLoop' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationFromHTTP1WithAlreadyEstablishedHTTP2Connection' started at 2021-11-08 17:04:32.928
Test Case 'HTTPConnectionPool_HTTP2ConnectionsTests.testMigrationFromHTTP1WithAlreadyEstablishedHTTP2Connection' passed (0.0 seconds)
Test Suite 'HTTPConnectionPool_HTTP2ConnectionsTests' passed at 2021-11-08 17:04:32.928
	 Executed 18 tests, with 0 failures (0 unexpected) in 0.005 (0.005) seconds
Test Suite 'HTTPConnectionPool_HTTP2StateMachineTests' started at 2021-11-08 17:04:32.928
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testCreatingOfConnection' started at 2021-11-08 17:04:32.928
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testCreatingOfConnection' passed (0.003 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionFailureBackoff' started at 2021-11-08 17:04:32.931
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionFailureBackoff' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testCancelRequestWorks' started at 2021-11-08 17:04:32.932
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testCancelRequestWorks' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testExecuteOnShuttingDownPool' started at 2021-11-08 17:04:32.933
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testExecuteOnShuttingDownPool' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testHTTP1ToHTTP2MigrationAndShutdownIfFirstConnectionIsHTTP1' started at 2021-11-08 17:04:32.934
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testHTTP1ToHTTP2MigrationAndShutdownIfFirstConnectionIsHTTP1' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testSchedulingAndCancelingOfIdleTimeout' started at 2021-11-08 17:04:32.935
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testSchedulingAndCancelingOfIdleTimeout' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionTimeout' started at 2021-11-08 17:04:32.936
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionTimeout' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionEstablishmentFailure' started at 2021-11-08 17:04:32.937
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionEstablishmentFailure' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testGoAwayOnIdleConnection' started at 2021-11-08 17:04:32.937
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testGoAwayOnIdleConnection' passed (0.0 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testGoAwayWithLeasedStream' started at 2021-11-08 17:04:32.938
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testGoAwayWithLeasedStream' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testGoAwayWithPendingRequestsStartsNewConnection' started at 2021-11-08 17:04:32.939
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testGoAwayWithPendingRequestsStartsNewConnection' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testMigrationFromHTTP1ToHTTP2' started at 2021-11-08 17:04:32.940
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testMigrationFromHTTP1ToHTTP2' passed (0.004 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testMigrationFromHTTP1ToHTTP2WithAlreadyStartedHTTP1Connections' started at 2021-11-08 17:04:32.944
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testMigrationFromHTTP1ToHTTP2WithAlreadyStartedHTTP1Connections' passed (0.003 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testHTTP2toHTTP1Migration' started at 2021-11-08 17:04:32.947
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testHTTP2toHTTP1Migration' passed (0.002 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionIsImmediatelyCreatedAfterBackoffTimerFires' started at 2021-11-08 17:04:32.949
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testConnectionIsImmediatelyCreatedAfterBackoffTimerFires' passed (0.001 seconds)
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testMaxConcurrentStreamsIsRespected' started at 2021-11-08 17:04:32.950
Test Case 'HTTPConnectionPool_HTTP2StateMachineTests.testMaxConcurrentStreamsIsRespected' passed (0.331 seconds)
Test Suite 'HTTPConnectionPool_HTTP2StateMachineTests' passed at 2021-11-08 17:04:33.282
	 Executed 16 tests, with 0 failures (0 unexpected) in 0.353 (0.353) seconds
Test Suite 'HTTPConnectionPool_ManagerTests' started at 2021-11-08 17:04:33.282
Test Case 'HTTPConnectionPool_ManagerTests.testManagerHappyPath' started at 2021-11-08 17:04:33.282
Test Case 'HTTPConnectionPool_ManagerTests.testManagerHappyPath' passed (0.11 seconds)
Test Case 'HTTPConnectionPool_ManagerTests.testShutdownManagerThatHasSeenNoConnections' started at 2021-11-08 17:04:33.392
Test Case 'HTTPConnectionPool_ManagerTests.testShutdownManagerThatHasSeenNoConnections' passed (0.003 seconds)
Test Case 'HTTPConnectionPool_ManagerTests.testExecutingARequestOnAShutdownPoolManager' started at 2021-11-08 17:04:33.395
Test Case 'HTTPConnectionPool_ManagerTests.testExecutingARequestOnAShutdownPoolManager' passed (0.011 seconds)
Test Suite 'HTTPConnectionPool_ManagerTests' passed at 2021-11-08 17:04:33.406
	 Executed 3 tests, with 0 failures (0 unexpected) in 0.124 (0.124) seconds
Test Suite 'HTTPConnectionPool_RequestQueueTests' started at 2021-11-08 17:04:33.406
Test Case 'HTTPConnectionPool_RequestQueueTests.testCountAndIsEmptyWorks' started at 2021-11-08 17:04:33.406
Test Case 'HTTPConnectionPool_RequestQueueTests.testCountAndIsEmptyWorks' passed (0.001 seconds)
Test Suite 'HTTPConnectionPool_RequestQueueTests' passed at 2021-11-08 17:04:33.407
	 Executed 1 test, with 0 failures (0 unexpected) in 0.001 (0.001) seconds
Test Suite 'HTTPRequestStateMachineTests' started at 2021-11-08 17:04:33.408
Test Case 'HTTPRequestStateMachineTests.testSimpleGETRequest' started at 2021-11-08 17:04:33.408
Test Case 'HTTPRequestStateMachineTests.testSimpleGETRequest' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testPOSTRequestWithWriterBackpressure' started at 2021-11-08 17:04:33.408
Test Case 'HTTPRequestStateMachineTests.testPOSTRequestWithWriterBackpressure' passed (0.001 seconds)
Test Case 'HTTPRequestStateMachineTests.testPOSTContentLengthIsTooLong' started at 2021-11-08 17:04:33.409
Test Case 'HTTPRequestStateMachineTests.testPOSTContentLengthIsTooLong' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testPOSTContentLengthIsTooShort' started at 2021-11-08 17:04:33.409
Test Case 'HTTPRequestStateMachineTests.testPOSTContentLengthIsTooShort' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsCancelledIfServerRespondsWith301' started at 2021-11-08 17:04:33.409
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsCancelledIfServerRespondsWith301' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsCancelledIfServerRespondsWith301WhileWriteBackpressure' started at 2021-11-08 17:04:33.411
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsCancelledIfServerRespondsWith301WhileWriteBackpressure' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsContinuedIfServerRespondsWith200' started at 2021-11-08 17:04:33.411
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsContinuedIfServerRespondsWith200' passed (0.001 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsContinuedIfServerSendHeadWithStatus200' started at 2021-11-08 17:04:33.412
Test Case 'HTTPRequestStateMachineTests.testRequestBodyStreamIsContinuedIfServerSendHeadWithStatus200' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestIsFailedIfRequestBodySizeIsWrongEvenAfterServerRespondedWith200' started at 2021-11-08 17:04:33.412
Test Case 'HTTPRequestStateMachineTests.testRequestIsFailedIfRequestBodySizeIsWrongEvenAfterServerRespondedWith200' passed (0.001 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestIsFailedIfRequestBodySizeIsWrongEvenAfterServerSendHeadWithStatus200' started at 2021-11-08 17:04:33.413
Test Case 'HTTPRequestStateMachineTests.testRequestIsFailedIfRequestBodySizeIsWrongEvenAfterServerSendHeadWithStatus200' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testRequestIsNotSendUntilChannelIsWritable' started at 2021-11-08 17:04:33.413
Test Case 'HTTPRequestStateMachineTests.testRequestIsNotSendUntilChannelIsWritable' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testConnectionBecomesInactiveWhileWaitingForWritable' started at 2021-11-08 17:04:33.414
Test Case 'HTTPRequestStateMachineTests.testConnectionBecomesInactiveWhileWaitingForWritable' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testResponseReadingWithBackpressure' started at 2021-11-08 17:04:33.414
Test Case 'HTTPRequestStateMachineTests.testResponseReadingWithBackpressure' passed (0.001 seconds)
Test Case 'HTTPRequestStateMachineTests.testChannelReadCompleteTriggersButNoBodyDataWasReceivedSoFar' started at 2021-11-08 17:04:33.415
Test Case 'HTTPRequestStateMachineTests.testChannelReadCompleteTriggersButNoBodyDataWasReceivedSoFar' passed (0.001 seconds)
Test Case 'HTTPRequestStateMachineTests.testResponseReadingWithBackpressureEndOfResponseAllowsReadEventsToTriggerDirectly' started at 2021-11-08 17:04:33.416
Test Case 'HTTPRequestStateMachineTests.testResponseReadingWithBackpressureEndOfResponseAllowsReadEventsToTriggerDirectly' passed (0.001 seconds)
Test Case 'HTTPRequestStateMachineTests.testCancellingARequestInStateInitializedKeepsTheConnectionAlive' started at 2021-11-08 17:04:33.417
Test Case 'HTTPRequestStateMachineTests.testCancellingARequestInStateInitializedKeepsTheConnectionAlive' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testCancellingARequestBeforeBeingSendKeepsTheConnectionAlive' started at 2021-11-08 17:04:33.417
Test Case 'HTTPRequestStateMachineTests.testCancellingARequestBeforeBeingSendKeepsTheConnectionAlive' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testConnectionBecomesWritableBeforeFirstRequest' started at 2021-11-08 17:04:33.417
Test Case 'HTTPRequestStateMachineTests.testConnectionBecomesWritableBeforeFirstRequest' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testCancellingARequestThatIsSent' started at 2021-11-08 17:04:33.417
Test Case 'HTTPRequestStateMachineTests.testCancellingARequestThatIsSent' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testRemoteSuddenlyClosesTheConnection' started at 2021-11-08 17:04:33.417
Test Case 'HTTPRequestStateMachineTests.testRemoteSuddenlyClosesTheConnection' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testReadTimeoutLeadsToFailureWithEverythingAfterBeingIgnored' started at 2021-11-08 17:04:33.418
Test Case 'HTTPRequestStateMachineTests.testReadTimeoutLeadsToFailureWithEverythingAfterBeingIgnored' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testResponseWithStatus1XXAreIgnored' started at 2021-11-08 17:04:33.418
Test Case 'HTTPRequestStateMachineTests.testResponseWithStatus1XXAreIgnored' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testReadTimeoutThatFiresToLateIsIgnored' started at 2021-11-08 17:04:33.418
Test Case 'HTTPRequestStateMachineTests.testReadTimeoutThatFiresToLateIsIgnored' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testCancellationThatIsInvokedToLateIsIgnored' started at 2021-11-08 17:04:33.419
Test Case 'HTTPRequestStateMachineTests.testCancellationThatIsInvokedToLateIsIgnored' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testErrorWhileRunningARequestClosesTheStream' started at 2021-11-08 17:04:33.419
Test Case 'HTTPRequestStateMachineTests.testErrorWhileRunningARequestClosesTheStream' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testCanReadHTTP1_0ResponseWithoutBody' started at 2021-11-08 17:04:33.419
Test Case 'HTTPRequestStateMachineTests.testCanReadHTTP1_0ResponseWithoutBody' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testCanReadHTTP1_0ResponseWithBody' started at 2021-11-08 17:04:33.419
Test Case 'HTTPRequestStateMachineTests.testCanReadHTTP1_0ResponseWithBody' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1_0RequestThatIsStillUploading' started at 2021-11-08 17:04:33.419
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1_0RequestThatIsStillUploading' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1RequestWithoutContentLengthWithNIOSSLErrorUncleanShutdown' started at 2021-11-08 17:04:33.420
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1RequestWithoutContentLengthWithNIOSSLErrorUncleanShutdown' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1RequestWithoutContentLengthWithNIOSSLErrorUncleanShutdownButIgnoreIt' started at 2021-11-08 17:04:33.420
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1RequestWithoutContentLengthWithNIOSSLErrorUncleanShutdownButIgnoreIt' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1RequestWithContentLengthWithNIOSSLErrorUncleanShutdownButIgnoreIt' started at 2021-11-08 17:04:33.421
Test Case 'HTTPRequestStateMachineTests.testFailHTTP1RequestWithContentLengthWithNIOSSLErrorUncleanShutdownButIgnoreIt' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForDemand' started at 2021-11-08 17:04:33.421
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForDemand' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForRead' started at 2021-11-08 17:04:33.422
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForRead' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForReadAndDemand' started at 2021-11-08 17:04:33.422
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForReadAndDemand' passed (0.0 seconds)
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForReadAndDemandMultipleTimes' started at 2021-11-08 17:04:33.423
Test Case 'HTTPRequestStateMachineTests.testFailHTTPRequestWithContentLengthBecauseOfChannelInactiveWaitingForReadAndDemandMultipleTimes' passed (0.003 seconds)
Test Suite 'HTTPRequestStateMachineTests' passed at 2021-11-08 17:04:33.428
	 Executed 35 tests, with 0 failures (0 unexpected) in 0.016 (0.016) seconds
Test Suite 'LRUCacheTests' started at 2021-11-08 17:04:33.428
Test Case 'LRUCacheTests.testBasicsWork' started at 2021-11-08 17:04:33.428
Test Case 'LRUCacheTests.testBasicsWork' passed (0.001 seconds)
Test Case 'LRUCacheTests.testCachesTheRightThings' started at 2021-11-08 17:04:33.428
Test Case 'LRUCacheTests.testCachesTheRightThings' passed (0.001 seconds)
Test Case 'LRUCacheTests.testAppendingTheSameDoesNotEvictButUpdates' started at 2021-11-08 17:04:33.429
Test Case 'LRUCacheTests.testAppendingTheSameDoesNotEvictButUpdates' passed (0.003 seconds)
Test Suite 'LRUCacheTests' passed at 2021-11-08 17:04:33.432
	 Executed 3 tests, with 0 failures (0 unexpected) in 0.004 (0.004) seconds
Test Suite 'RequestBagTests' started at 2021-11-08 17:04:33.432
Test Case 'RequestBagTests.testWriteBackpressureWorks' started at 2021-11-08 17:04:33.432
Test Case 'RequestBagTests.testWriteBackpressureWorks' passed (0.032 seconds)
Test Case 'RequestBagTests.testTaskIsFailedIfWritingFails' started at 2021-11-08 17:04:33.464
Test Case 'RequestBagTests.testTaskIsFailedIfWritingFails' passed (0.001 seconds)
Test Case 'RequestBagTests.testCancelFailsTaskBeforeRequestIsSent' started at 2021-11-08 17:04:33.465
Test Case 'RequestBagTests.testCancelFailsTaskBeforeRequestIsSent' passed (0.0 seconds)
Test Case 'RequestBagTests.testCancelFailsTaskAfterRequestIsSent' started at 2021-11-08 17:04:33.465
Test Case 'RequestBagTests.testCancelFailsTaskAfterRequestIsSent' passed (0.0 seconds)
Test Case 'RequestBagTests.testCancelFailsTaskWhenTaskIsQueued' started at 2021-11-08 17:04:33.466
Test Case 'RequestBagTests.testCancelFailsTaskWhenTaskIsQueued' passed (0.0 seconds)
Test Case 'RequestBagTests.testFailsTaskWhenTaskIsWaitingForMoreFromServer' started at 2021-11-08 17:04:33.466
Test Case 'RequestBagTests.testFailsTaskWhenTaskIsWaitingForMoreFromServer' passed (0.0 seconds)
Test Case 'RequestBagTests.testHTTPUploadIsCancelledEvenThoughRequestSucceeds' started at 2021-11-08 17:04:33.467
Test Case 'RequestBagTests.testHTTPUploadIsCancelledEvenThoughRequestSucceeds' passed (0.002 seconds)
Test Case 'RequestBagTests.testRaceBetweenConnectionCloseAndDemandMoreData' started at 2021-11-08 17:04:33.468
Test Case 'RequestBagTests.testRaceBetweenConnectionCloseAndDemandMoreData' passed (0.001 seconds)
Test Suite 'RequestBagTests' passed at 2021-11-08 17:04:33.469
	 Executed 8 tests, with 0 failures (0 unexpected) in 0.037 (0.037) seconds
Test Suite 'RequestValidationTests' started at 2021-11-08 17:04:33.470
Test Case 'RequestValidationTests.testContentLengthHeaderIsRemovedFromGETIfNoBody' started at 2021-11-08 17:04:33.470
Test Case 'RequestValidationTests.testContentLengthHeaderIsRemovedFromGETIfNoBody' passed (0.0 seconds)
Test Case 'RequestValidationTests.testContentLengthHeaderIsAddedToPOSTAndPUTWithNoBody' started at 2021-11-08 17:04:33.470
Test Case 'RequestValidationTests.testContentLengthHeaderIsAddedToPOSTAndPUTWithNoBody' passed (0.0 seconds)
Test Case 'RequestValidationTests.testContentLengthHeaderIsChangedIfBodyHasDifferentLength' started at 2021-11-08 17:04:33.470
Test Case 'RequestValidationTests.testContentLengthHeaderIsChangedIfBodyHasDifferentLength' passed (0.0 seconds)
Test Case 'RequestValidationTests.testTRACERequestMustNotHaveBody' started at 2021-11-08 17:04:33.470
Test Case 'RequestValidationTests.testTRACERequestMustNotHaveBody' passed (0.0 seconds)
Test Case 'RequestValidationTests.testGET_HEAD_DELETE_CONNECTRequestCanHaveBody' started at 2021-11-08 17:04:33.471
Test Case 'RequestValidationTests.testGET_HEAD_DELETE_CONNECTRequestCanHaveBody' passed (0.001 seconds)
Test Case 'RequestValidationTests.testInvalidHeaderFieldNames' started at 2021-11-08 17:04:33.471
Test Case 'RequestValidationTests.testInvalidHeaderFieldNames' passed (0.0 seconds)
Test Case 'RequestValidationTests.testValidHeaderFieldNames' started at 2021-11-08 17:04:33.471
Test Case 'RequestValidationTests.testValidHeaderFieldNames' passed (0.0 seconds)
Test Case 'RequestValidationTests.testMetadataDetectConnectionClose' started at 2021-11-08 17:04:33.472
Test Case 'RequestValidationTests.testMetadataDetectConnectionClose' passed (0.0 seconds)
Test Case 'RequestValidationTests.testMetadataDefaultIsConnectionCloseIsFalse' started at 2021-11-08 17:04:33.472
Test Case 'RequestValidationTests.testMetadataDefaultIsConnectionCloseIsFalse' passed (0.0 seconds)
Test Case 'RequestValidationTests.testNoHeadersNoBody' started at 2021-11-08 17:04:33.472
Test Case 'RequestValidationTests.testNoHeadersNoBody' passed (0.0 seconds)
Test Case 'RequestValidationTests.testNoHeadersHasBody' started at 2021-11-08 17:04:33.472
Test Case 'RequestValidationTests.testNoHeadersHasBody' passed (0.001 seconds)
Test Case 'RequestValidationTests.testContentLengthHeaderNoBody' started at 2021-11-08 17:04:33.473
Test Case 'RequestValidationTests.testContentLengthHeaderNoBody' passed (0.0 seconds)
Test Case 'RequestValidationTests.testContentLengthHeaderHasBody' started at 2021-11-08 17:04:33.474
Test Case 'RequestValidationTests.testContentLengthHeaderHasBody' passed (0.001 seconds)
Test Case 'RequestValidationTests.testTransferEncodingHeaderNoBody' started at 2021-11-08 17:04:33.475
Test Case 'RequestValidationTests.testTransferEncodingHeaderNoBody' passed (0.001 seconds)
Test Case 'RequestValidationTests.testTransferEncodingHeaderHasBody' started at 2021-11-08 17:04:33.475
Test Case 'RequestValidationTests.testTransferEncodingHeaderHasBody' passed (0.001 seconds)
Test Case 'RequestValidationTests.testBothHeadersNoBody' started at 2021-11-08 17:04:33.476
Test Case 'RequestValidationTests.testBothHeadersNoBody' passed (0.0 seconds)
Test Case 'RequestValidationTests.testBothHeadersHasBody' started at 2021-11-08 17:04:33.477
Test Case 'RequestValidationTests.testBothHeadersHasBody' passed (0.001 seconds)
Test Case 'RequestValidationTests.testHostHeaderIsSetCorrectlyInCreateRequestHead' started at 2021-11-08 17:04:33.477
Test Case 'RequestValidationTests.testHostHeaderIsSetCorrectlyInCreateRequestHead' passed (0.001 seconds)
Test Suite 'RequestValidationTests' passed at 2021-11-08 17:04:33.479
	 Executed 18 tests, with 0 failures (0 unexpected) in 0.008 (0.008) seconds
Test Suite 'SOCKSEventsHandlerTests' started at 2021-11-08 17:04:33.479
Test Case 'SOCKSEventsHandlerTests.testHandlerHappyPath' started at 2021-11-08 17:04:33.479
Test Case 'SOCKSEventsHandlerTests.testHandlerHappyPath' passed (0.001 seconds)
Test Case 'SOCKSEventsHandlerTests.testHandlerFailsFutureWhenRemovedWithoutEvent' started at 2021-11-08 17:04:33.480
Test Case 'SOCKSEventsHandlerTests.testHandlerFailsFutureWhenRemovedWithoutEvent' passed (0.0 seconds)
Test Case 'SOCKSEventsHandlerTests.testHandlerFailsFutureWhenHandshakeFails' started at 2021-11-08 17:04:33.480
Test Case 'SOCKSEventsHandlerTests.testHandlerFailsFutureWhenHandshakeFails' passed (0.0 seconds)
Test Case 'SOCKSEventsHandlerTests.testHandlerClosesConnectionIfHandshakeTimesout' started at 2021-11-08 17:04:33.480
Test Case 'SOCKSEventsHandlerTests.testHandlerClosesConnectionIfHandshakeTimesout' passed (0.001 seconds)
Test Case 'SOCKSEventsHandlerTests.testHandlerWorksIfDeadlineIsInPast' started at 2021-11-08 17:04:33.481
Test Case 'SOCKSEventsHandlerTests.testHandlerWorksIfDeadlineIsInPast' passed (0.001 seconds)
Test Suite 'SOCKSEventsHandlerTests' passed at 2021-11-08 17:04:33.482
	 Executed 5 tests, with 0 failures (0 unexpected) in 0.003 (0.003) seconds
Test Suite 'SSLContextCacheTests' started at 2021-11-08 17:04:33.482
Test Case 'SSLContextCacheTests.testRequestingSSLContextWorks' started at 2021-11-08 17:04:33.482
Test Case 'SSLContextCacheTests.testRequestingSSLContextWorks' passed (0.28 seconds)
Test Case 'SSLContextCacheTests.testCacheWorks' started at 2021-11-08 17:04:33.762
Test Case 'SSLContextCacheTests.testCacheWorks' passed (0.34 seconds)
Test Case 'SSLContextCacheTests.testCacheDoesNotReturnWrongEntry' started at 2021-11-08 17:04:34.102
Test Case 'SSLContextCacheTests.testCacheDoesNotReturnWrongEntry' passed (0.282 seconds)
Test Suite 'SSLContextCacheTests' passed at 2021-11-08 17:04:34.384
	 Executed 3 tests, with 0 failures (0 unexpected) in 0.901 (0.901) seconds
Test Suite 'TLSEventsHandlerTests' started at 2021-11-08 17:04:34.384
Test Case 'TLSEventsHandlerTests.testHandlerHappyPath' started at 2021-11-08 17:04:34.384
Test Case 'TLSEventsHandlerTests.testHandlerHappyPath' passed (0.001 seconds)
Test Case 'TLSEventsHandlerTests.testHandlerFailsFutureWhenRemovedWithoutEvent' started at 2021-11-08 17:04:34.385
Test Case 'TLSEventsHandlerTests.testHandlerFailsFutureWhenRemovedWithoutEvent' passed (0.0 seconds)
Test Case 'TLSEventsHandlerTests.testHandlerFailsFutureWhenHandshakeFails' started at 2021-11-08 17:04:34.385
Test Case 'TLSEventsHandlerTests.testHandlerFailsFutureWhenHandshakeFails' passed (0.0 seconds)
Test Case 'TLSEventsHandlerTests.testHandlerIgnoresShutdownCompletedEvent' started at 2021-11-08 17:04:34.386
Test Case 'TLSEventsHandlerTests.testHandlerIgnoresShutdownCompletedEvent' passed (0.001 seconds)
Test Suite 'TLSEventsHandlerTests' passed at 2021-11-08 17:04:34.386
	 Executed 4 tests, with 0 failures (0 unexpected) in 0.002 (0.002) seconds
Test Suite 'debug.xctest' failed at 2021-11-08 17:04:34.387
	 Executed 360 tests, with 1 failure (0 unexpected) in 276.2 (276.2) seconds
Test Suite 'All tests' failed at 2021-11-08 17:04:34.387
	 Executed 360 tests, with 1 failure (0 unexpected) in 276.2 (276.2) seconds
1
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 15107 killed;
[ssh-agent] Stopped.
Sending e-mails to: swift-server-ci@group.apple.com
Setting status of 4f0346e669a130b18928b83226e2a121be53faa9 to FAILURE with url https://ci.swiftserver.group/job/async-http-client-swift52-prb/917/ and message: 'Build finished. '
Using context: pull request validation (5.2)
Finished: FAILURE

</details?

Seen again locally in Docker with Swift 5.3
docker-normal-5.3.log