Home | History | Annotate | Download | only in test

Lines Matching full:path

9 import os.path
11 from os.path import splitdrive
54 def write_file(self, path, content='xxx'):
55 """Writes a file in the given path.
58 path can be a string or a sequence.
60 if isinstance(path, (list, tuple)):
61 path = os.path.join(*path)
62 f = open(path, 'w')
71 Returns the path of the directory.
88 self.childpath = os.path.join(TESTFN, 'a')
137 handle, path = tempfile.mkstemp()
139 self.assertRaises(OSError, shutil.rmtree, path)
140 os.remove(path)
143 def write_data(path, data):
144 f = open(path, "w")
148 def read_data(path):
149 f = open(path)
155 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
157 write_data(os.path.join(src_dir, 'test.txt'), '123')
159 os.mkdir(os.path.join(src_dir, 'test_dir'))
160 write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456')
164 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
165 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
166 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
173 for path in (
174 os.path.join(src_dir, 'test.txt'),
175 os.path.join(dst_dir, 'test.txt'),
176 os.path.join(src_dir, 'test_dir', 'test.txt'),
177 os.path.join(dst_dir, 'test_dir', 'test.txt'),
179 if os.path.exists(path):
180 os.remove(path)
181 for path in (src_dir,
182 os.path.dirname(dst_dir)
184 if os.path.exists(path):
185 shutil.rmtree(path)
189 def write_data(path, data):
190 f = open(path, "w")
194 def read_data(path):
195 f = open(path)
201 join = os.path.join
202 exists = os.path.exists
227 if os.path.exists(dst_dir):
237 if os.path.exists(dst_dir):
245 path = os.path.join(src, name)
247 if (os.path.isdir(path) and
248 path.split()[-1] == 'subdir'):
250 elif os.path.splitext(path)[-1] in ('.py'):
262 if os.path.exists(dst_dir):
266 shutil.rmtree(os.path.dirname(dst_dir))
272 src = os.path.join(TESTFN, 'cheese')
273 dst = os.path.join(TESTFN, 'shop')
303 src = os.path.join(TESTFN, 'cheese')
304 dst = os.path.join(TESTFN, 'shop')
326 subdir = os.path.join(TESTFN, "subdir")
328 pipe = os.path.join(subdir, "mypipe")
349 file1 = os.path.join(tmpdir, 'file1')
350 file2 = os.path.join(tmpdir, 'file2')
357 def _chflags_raiser(path, flags):
378 os.mkdir(os.path.join(tmpdir, 'sub'))
387 base_name = os.path.join(tmpdir2, 'archive')
399 self.assertTrue(os.path.exists(tarball))
402 base_name = os.path.join(tmpdir2, 'archive')
410 self.assertTrue(os.path.exists(tarball))
412 def _tarinfo(self, path):
413 tar = tarfile.open(path)
424 dist = os.path.join(tmpdir, 'dist')
428 os.mkdir(os.path.join(dist, 'sub'))
430 os.mkdir(os.path.join(dist, 'sub2'))
432 base_name = os.path.join(tmpdir2, 'archive')
449 path.exists(tarball))
452 tarball2 = os.path.join(tmpdir, 'archive2.tar.gz')
464 self.assertTrue(os.path.exists(tarball2))
469 base_name = os.path.join(tmpdir2, 'archive')
477 self.assertTrue(os.path.exists(tarball))
480 base_name = os.path.join(tmpdir2, 'archive')
488 self.assertTrue(os.path.exists(tarball))
501 base_name = os.path.join(tmpdir2, 'archive')
506 self.assertTrue(os.path.exists(tarball))
511 base_name = os.path.join(tmpdir, 'archive')
525 base_name = os.path.join(self.mkdtemp() , 'archive')
528 self.assertTrue(os.path.exists(res))
531 self.assertTrue(os.path.exists(res))
535 self.assertTrue(os.path.exists(res))
539 self.assertTrue(os.path.exists(res))
556 self.assertTrue(os.path.exists(archive_name))
605 self.src_file = os.path.join(self.src_dir, filename)
606 self.dst_file = os.path.join(self.dst_dir, filename)
611 dir=os.path.dirname(__file__))
612 self.file_other_fs = os.path.join(self.dir_other_fs,
633 self.assertFalse(os.path.exists(src))
639 self.assertFalse(os.path.exists(src))
693 os.path.join(self.dst_dir, os.path.basename(self.src_dir)))
701 os.path.join(self.dir_other_fs, os.path.basename(self.src_dir)))
711 dst = os.path.join(self.src_dir, "bar")
718 src = os.path.join(TESTFN, src)
719 dst = os.path.join(TESTFN, dst)
730 src = os.path.join(TESTFN, src)
731 dst = os.path.join(TESTFN, dst)
847 dst_dir = os.path.join(
848 os.path.dirname(self.src_dir),
849 os.path.basename(self.src_dir).upper())
854 self.assertTrue(os.path.isdir(dst_dir))
856 if os.path.exists(dst_dir):