Lines Matching refs:dst_dir

157         dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
165 shutil.copytree(src_dir, dst_dir)
166 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
167 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
168 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
170 actual = read_data(os.path.join(dst_dir, 'test.txt'))
172 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
177 os.path.join(dst_dir, 'test.txt'),
179 os.path.join(dst_dir, 'test_dir', 'test.txt'),
184 os.path.dirname(dst_dir)
207 dst_dir = join(tempfile.mkdtemp(), 'destination')
223 shutil.copytree(src_dir, dst_dir, ignore=patterns)
225 self.assertTrue(exists(join(dst_dir, 'test.txt')))
226 self.assertTrue(not exists(join(dst_dir, 'test.tmp')))
227 self.assertTrue(not exists(join(dst_dir, 'test_dir2')))
229 if os.path.exists(dst_dir):
230 shutil.rmtree(dst_dir)
233 shutil.copytree(src_dir, dst_dir, ignore=patterns)
235 self.assertTrue(not exists(join(dst_dir, 'test.tmp')))
236 self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir2')))
237 self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir')))
239 if os.path.exists(dst_dir):
240 shutil.rmtree(dst_dir)
256 shutil.copytree(src_dir, dst_dir, ignore=_filter)
259 self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir2',
261 self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir')))
264 if os.path.exists(dst_dir):
265 shutil.rmtree(dst_dir)
268 shutil.rmtree(os.path.dirname(dst_dir))
666 self.dst_dir = tempfile.mkdtemp()
668 self.dst_file = os.path.join(self.dst_dir, filename)
682 for d in (self.src_dir, self.dst_dir, self.dir_other_fs):
709 self._check_move_file(self.src_file, self.dst_dir, self.dst_file)
727 dst_dir = tempfile.mktemp()
729 self._check_move_dir(self.src_dir, dst_dir, dst_dir)
732 shutil.rmtree(dst_dir)
740 dst_dir = tempfile.mktemp(dir=self.dir_other_fs)
742 self._check_move_dir(self.src_dir, dst_dir, dst_dir)
745 shutil.rmtree(dst_dir)
751 self._check_move_dir(self.src_dir, self.dst_dir,
752 os.path.join(self.dst_dir, os.path.basename(self.src_dir)))
762 self._check_move_dir(self.src_dir + os.path.sep, self.dst_dir,
763 os.path.join(self.dst_dir, os.path.basename(self.src_dir)))
767 self._check_move_dir(self.src_dir + os.path.altsep, self.dst_dir,
768 os.path.join(self.dst_dir, os.path.basename(self.src_dir)))
774 self.assertRaises(shutil.Error, shutil.move, self.src_file, self.dst_dir)
914 dst_dir = os.path.join(
917 self.assertNotEqual(self.src_dir, dst_dir)
920 shutil.move(self.src_dir, dst_dir)
921 self.assertTrue(os.path.isdir(dst_dir))
923 if os.path.exists(dst_dir):
924 os.rmdir(dst_dir)