Lines Matching refs:self

46     def vsftpds(self, env):  argument
57 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int): argument
68 def _class_scope(self, env, vsftpds): argument
73 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-1k', fsize=1024)
74 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-10k', fsize=10*1024)
75 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-1m', fsize=1024*1024)
76 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-10m', fsize=10*1024*1024)
81 def test_31_01_list_dir(self, env: Env, vsftpds: VsFTPD, repeat): argument
93 def test_31_02_download_1(self, env: Env, vsftpds: VsFTPD, docname, repeat): argument
100 self.check_downloads(curl, srcfile, count)
105 def test_31_03_download_10_serial(self, env: Env, vsftpds: VsFTPD, docname, repeat): argument
112 self.check_downloads(curl, srcfile, count)
117 def test_31_04_download_10_parallel(self, env: Env, vsftpds: VsFTPD, docname, repeat): argument
126 self.check_downloads(curl, srcfile, count)
131 def test_31_05_upload_1(self, env: Env, vsftpds: VsFTPD, docname, repeat): argument
135 self._rmf(dstfile)
140 self.check_upload(env, vsftpds, docname=docname)
142 def _rmf(self, path): argument
148 def test_31_06_shutdownh_download(self, env: Env, vsftpds: VsFTPD, repeat): argument
161 def test_31_07_shutdownh_upload(self, env: Env, vsftpds: VsFTPD, repeat): argument
166 self._rmf(dstfile)
175 def test_31_08_upload_ascii(self, env: Env, vsftpds: VsFTPD): argument
183 self._rmf(dstfile)
197 def test_31_08_active_download(self, env: Env, vsftpds: VsFTPD): argument
207 self.check_downloads(curl, srcfile, count)
209 def test_31_09_active_upload(self, env: Env, vsftpds: VsFTPD): argument
214 self._rmf(dstfile)
221 self.check_upload(env, vsftpds, docname=docname)
226 def test_31_10_upload_stdin(self, env: Env, vsftpds: VsFTPD, indata): argument
230 self._rmf(dstfile)
240 def check_downloads(self, client, srcfile: str, count: int, argument
253 def check_upload(self, env, vsftpd: VsFTPD, docname): argument