Lines Matching refs:r
60 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
63 r.check_exit_code(False)
65 for idx, s in enumerate(r.stats):
83 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
86 r.check_exit_code(False)
87 assert len(r.stats) == count, f'did not get all stats: {r}'
89 for idx, s in enumerate(r.stats):
99 r = curl.http_download(urls=[urln], alpn_proto=proto)
100 r.check_exit_code(0)
101 r.check_response(http_status=200, count=1)
104 r = curl.http_download(urls=[urln], alpn_proto=proto)
105 r.check_exit_code(0)
106 r.check_response(http_status=200, count=1)
108 assert r.stats[0]['http_version'] == '1.1', r.dump_logs()
127 r = curl.http_download(urls=[url], alpn_proto=proto, extra_args=[
134 r.check_exit_code(56)
136 r.check_exit_code(0)
137 r.check_response(http_status=200, count=count)