Lines Matching refs:r

67         r = curl.http_download(urls=[url], alpn_proto=proto)
68 r.check_response(http_status=200)
77 r = curl.http_download(urls=[url], alpn_proto=proto)
78 r.check_response(http_status=200, count=2)
89 r = curl.http_download(urls=[urln], alpn_proto=proto)
90 r.check_response(http_status=200, count=count, connect_count=1)
102 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
105 r.check_response(http_status=200, count=count)
108 assert r.total_connects > 1, r.dump_logs()
111 assert r.total_connects == 1, r.dump_logs()
124 r = curl.http_download(urls=[urln], alpn_proto=proto)
125 r.check_response(http_status=200, count=count)
128 assert r.total_connects > 1, r.dump_logs()
131 assert r.total_connects == 1, r.dump_logs()
143 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
146 r.check_response(http_status=200, count=count, connect_count=1)
157 r = curl.http_download(urls=[urln], alpn_proto=proto,
161 r.check_response(http_status=200, count=count)
165 assert r.total_connects <= 2, "h2 should use fewer connections here"
174 r = curl.http_download(urls=[urln], alpn_proto=proto,
178 r.check_response(count=count, http_status=200)
180 assert r.total_connects == count, "http/1.1 should use this many connections"
190 r = curl.http_download(urls=[urln], alpn_proto=proto)
191 r.check_response(count=count, http_status=200)
201 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
204 r.check_response(count=count, http_status=200)
216 r = curl.http_download(urls=[urln], alpn_proto=proto)
217 r.check_response(count=count, http_status=200)
231 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
234 r.check_response(count=count, http_status=200)
244 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
247 r.check_response(count=count, http_status=200)
257 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
260 r.check_response(count=count, http_status=200)
271 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
274 r.check_stats(count=count, http_status=404, exitcode=0,
287 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
290 r.check_stats(count=count, http_status=404, exitcode=22,
316 r = curl.http_download(urls=[urln], alpn_proto="h2", extra_args=[
319 r.check_response(count=count, http_status=200)
339 r = client.run(args=[
342 r.check_exit_code(0)
359 r = client.run(args=[
363 r.check_exit_code(0)
387 r = client.run(args=[
391 r.check_exit_code(0)
416 r = client.run(args=[
420 r.check_exit_code(0)
445 r = client.run(args=[
449 r.check_exit_code(0)
464 r = curl.http_download(urls=[url], alpn_proto=proto, extra_args=[
467 r.check_response(count=count, http_status=200)
468 assert r.duration > timedelta(seconds=min_duration), \
479 r = client.run(args=[url])
480 assert r.exit_code == 0, f'{client.dump_logs()}'
490 r = client.run(args=[proto, url])
491 r.check_exit_code(0)
499 r = client.run(args=['-V', proto, url])
500 r.check_exit_code(0)
508 r = client.run(args=['-V', proto, url])
509 r.check_exit_code(0)
517 r = client.run(args=['-V', proto, url])
518 r.check_exit_code(0)
527 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
530 r.check_exit_code(code=0)
531 r.check_response(count=count, http_status=200)
556 r = client.run(args=[
559 r.check_exit_code(0)
568 r = curl.http_download(urls=[urln], extra_args=[
571 r.check_response(http_status=200, count=count)
572 assert r.total_connects == 1, r.dump_logs()
579 r = curl.http_download(urls=[urln], extra_args=[
582 r.check_response(http_status=200, count=count)
585 assert r.total_connects == 3, r.dump_logs()
606 r = client.run(args=[
613 r.check_exit_code(0)
619 for line in r.trace_lines:
620 m = re.match(r'^\[t-(\d+)] EarlyData: (\d+)', line)
624 m = re.match(r'\[1-1] \* SSL reusing session.*', line)