Lines Matching refs:env
40 def _class_scope(self, env, httpd, nghttpx): argument
41 if env.have_h3():
47 def _class_scope(self, env, httpd): argument
49 env.make_data_file(indir=indir, fname="data-10k", fsize=10*1024)
50 env.make_data_file(indir=indir, fname="data-100k", fsize=100*1024)
51 env.make_data_file(indir=indir, fname="data-1m", fsize=1024*1024)
55 def test_16_01_info_download(self, env: Env, httpd, nghttpx, repeat, proto):
56 if proto == 'h3' and not env.have_h3():
59 curl = CurlClient(env=env)
63 remote_port=env.port_for(alpn_proto=proto),
70 def test_16_02_info_302_download(self, env: Env, httpd, nghttpx, repeat, proto):
71 if proto == 'h3' and not env.have_h3():
74 curl = CurlClient(env=env)
80 remote_port=env.port_for(alpn_proto=proto),
86 def test_16_03_info_upload(self, env: Env, httpd, nghttpx, proto, repeat):
87 if proto == 'h3' and not env.have_h3():
90 fdata = os.path.join(env.gen_dir, 'data-100k')
92 curl = CurlClient(env=env)
100 remote_port=env.port_for(alpn_proto=proto),
107 def test_16_04_info_http_download(self, env: Env, httpd, nghttpx, repeat, proto):
109 curl = CurlClient(env=env)
113 remote_port=env.http_port, remote_ip='127.0.0.1')