Lines Matching refs:env

45     def caddy(self, env):  argument
46 caddy = Caddy(env=env)
62 def _class_scope(self, env, caddy): argument
68 env.make_data_file(indir=env.gen_dir, fname="data-10m", fsize=10*1024*1024)
72 def test_08_01_download_1(self, env: Env, caddy: Caddy, repeat, proto):
73 if proto == 'h3' and not env.have_h3_curl():
75 if proto == 'h3' and env.curl_uses_lib('msh3'):
77 curl = CurlClient(env=env)
84 def test_08_02_download_1mb_sequential(self, env: Env, caddy: Caddy,
86 if proto == 'h3' and not env.have_h3_curl():
88 if proto == 'h3' and env.curl_uses_lib('msh3'):
91 curl = CurlClient(env=env)
98 def test_08_03_download_1mb_parallel(self, env: Env, caddy: Caddy,
100 if proto == 'h3' and not env.have_h3_curl():
102 if proto == 'h3' and env.curl_uses_lib('msh3'):
105 curl = CurlClient(env=env)
121 def test_08_04a_download_10mb_sequential(self, env: Env, caddy: Caddy,
123 if proto == 'h3' and not env.have_h3_curl():
125 if proto == 'h3' and env.curl_uses_lib('msh3'):
128 curl = CurlClient(env=env)
137 def test_08_04b_download_10mb_sequential(self, env: Env, caddy: Caddy,
139 if proto == 'h3' and not env.have_h3_curl():
141 if proto == 'h3' and env.curl_uses_lib('msh3'):
144 curl = CurlClient(env=env)
153 def test_08_05_download_1mb_parallel(self, env: Env, caddy: Caddy,
155 if proto == 'h3' and not env.have_h3_curl():
157 if proto == 'h3' and env.curl_uses_lib('msh3'):
159 if proto == 'http/1.1' and env.curl_uses_lib('mbedtls'):
163 curl = CurlClient(env=env)
177 def test_08_06_post_parallel(self, env: Env, httpd, caddy, repeat, proto):
178 if proto == 'h3' and not env.have_h3():
180 if proto == 'h3' and env.curl_uses_lib('msh3'):
185 curl = CurlClient(env=env)
196 def test_08_07_put_large(self, env: Env, httpd, caddy, repeat, proto):
197 if proto == 'h3' and not env.have_h3():
199 if proto == 'h3' and env.curl_uses_lib('msh3'):
203 fdata = os.path.join(env.gen_dir, 'data-10m')
204 curl = CurlClient(env=env)
214 def test_08_08_earlydata(self, env: Env, httpd, caddy, proto):
218 client = LocalClient(name='hx-download', env=env)