Ejemplo n.º 1
0
 def test_dirs(self):
     td = TempDirectory()
     self.assertEqual(set(Path(td.path, 'Dir 2').dirs),
                      set([
                          Path(td.path, 'Dir 2', 'Dir 3'),
                      ]))
     td.clean()
Ejemplo n.º 2
0
    def test_set(self):
        s = set([
            Path('a/b/c'),
            Path('a/b'),
        ])

        self.assertIn(Path('a/b/c'), s)
        self.assertNotIn(Path('a/b/c/d'), s)
Ejemplo n.º 3
0
 def test_files(self):
     td = TempDirectory()
     self.assertEqual(
         set(Path(td.path, 'Dir 2').files),
         set([
             Path(td.path, 'Dir 2', 'File C'),
             Path(td.path, 'Dir 2', 'File D.txt'),
         ]))
     td.clean()
Ejemplo n.º 4
0
    def test_walk(self):
        td = TempDirectory()

        all = list(Path(td.path).walk())

        self.assertIn(Path(td.path, "Dir 1"), all)
        self.assertIn(Path(td.path, "Dir 1", "File A.exe"), all)
        self.assertIn(Path(td.path, "Dir 1", "File B.txt"), all)
        self.assertIn(Path(td.path, "Dir 2"), all)
        self.assertIn(Path(td.path, "Dir 2", 'File C'), all)
        self.assertIn(Path(td.path, "Dir 2", 'File D.txt'), all)
        self.assertIn(Path(td.path, "test_file"), all)
        self.assertIn(Path(td.path, "Dir 2", "Dir 3"), all)
        self.assertIn(Path(td.path, "Dir 2", "Dir 3", "test_file"), all)

        td.clean()
Ejemplo n.º 5
0
    def test_rel_path(self):

        p = Path('site', relative_to='/var/www')
        self.assertEqual(str(p), 'site')
        self.assertEqual(p.abs, '/var/www/site')
        self.assertEqual(p.rel_root, '/var/www')

        p2 = p.join('drupal')
        self.assertEqual(os.path.normpath(str(p2)),
                         os.path.normpath('site/drupal'))
        self.assertEqual(p2.abs, os.path.normpath('/var/www/site/drupal'))
        self.assertEqual(p2.rel_root, '/var/www')

        p3 = Path(p, 'files')
        self.assertEqual(str(p3), os.path.normpath('site/files'))
        self.assertEqual(p3.abs, '/var/www/site/files')
        self.assertEqual(p3.rel_root, '/var/www')
Ejemplo n.º 6
0
    def test_dict(self):
        d = {
            Path('a/b/c'): 1,
            Path('a/b'): 2,
        }

        self.assertTrue(Path('a/b') in d)
        self.assertFalse(Path('a/b/c/d') in d)

        self.assertEqual(d[Path('a/b/c')], 1)
        self.assertEqual(d[Path('a/b')], 2)
Ejemplo n.º 7
0
 def test_samefile(self):
     if hasattr(os.path, 'samefile'):
         td = TempDirectory()
         self.assertTrue(
             Path(td.path, 'test_file').samefile(Path(td.path,
                                                      'test_file')))
         self.assertFalse(
             Path(td.path, 'test_file').samefile(
                 Path(td.path, 'Dir 2', 'Dir 3', 'test_file')))
         self.assertFalse(
             Path(td.path,
                  'test_file').samefile(Path(td.path, 'unknown_file.txt')))
         td.clean()
Ejemplo n.º 8
0
 def test_rel_root(self):
     self.assertEqual(Path('a/b/c').rel_root, os.path.abspath(os.curdir))
     self.assertIsNone(Path('/a/b/c').rel_root)
     self.assertIsNone(Path('c:\\a\\b\\c').rel_root)
Ejemplo n.º 9
0
 def test_is_absolute(self):
     self.assertFalse(Path('a/b/c').is_absolute)
     self.assertTrue(Path('C:\\test').is_absolute)
     self.assertTrue(Path('/a/b/c').is_absolute)
Ejemplo n.º 10
0
 def test_is_relative(self):
     self.assertTrue(Path('a/b/c').is_relative)
     self.assertFalse(Path('C:\\test').is_relative)
     self.assertFalse(Path('/a/b/c').is_relative)
Ejemplo n.º 11
0
 def test_str(self):
     self.assertEqual(str(Path('a/b/c')), 'a/b/c')
Ejemplo n.º 12
0
 def test_is_link(self):
     td = TempDirectory()
     self.assertFalse(Path(td.path, 'Dir 1').is_link)
     td.clean()
Ejemplo n.º 13
0
 def test_abs_path(self):
     self.assertEqual(Path('sub').abs, os.path.abspath('sub'))
Ejemplo n.º 14
0
 def test_equal(self):
     self.assertEqual(Path('a/b/c'), Path('a/b/c'))
     self.assertEqual(Path('a\\b\\c'), Path('a\\b\\c'))
     self.assertEqual(Path('a/b/c'), 'a/b/c')
Ejemplo n.º 15
0
 def test_prefix(self):
     self.assertEqual(Path('a/b/file.txt').prefix, 'a/b/file')
Ejemplo n.º 16
0
 def test_ext(self):
     self.assertEqual(Path('a/b/file.txt').ext, 'txt')
Ejemplo n.º 17
0
 def test_splitext(self):
     prefix, ext = Path('dir/file.txt').splitext
     self.assertEqual(prefix, 'dir/file')
     self.assertEqual(ext, 'txt')
Ejemplo n.º 18
0
 def test_parent(self):
     self.assertEqual(Path('a/b/c').parent, Path('a/b'))
Ejemplo n.º 19
0
 def test_is_dir(self):
     td = TempDirectory()
     self.assertFalse(Path(td.path, 'test_file').is_dir)
     self.assertTrue(Path(td.path, 'Dir 1').is_dir)
     self.assertFalse(Path(td.path, 'missing_file').is_dir)
     td.clean()
Ejemplo n.º 20
0
 def test_norm(self):
     self.assertEqual(Path('a/b/c').norm, os.path.normpath('a/b/c'))
     self.assertEqual(Path('a\\b\\c').norm, os.path.normpath('a\\b\\c'))
Ejemplo n.º 21
0
 def test_split(self):
     self.assertEqual(Path('a/bc/d').split(), ['a', 'bc', 'd'])
     self.assertEqual(Path('a\\bc\\d').split(), ['a', 'bc', 'd'])
Ejemplo n.º 22
0
    def test_make_relative(self):

        p = Path('/var/www/site').make_relative_to('/var/www')
        self.assertEqual(str(p), 'site')
        self.assertEqual(p.abs, '/var/www/site')
        self.assertEqual(p.rel_root, '/var/www')
Ejemplo n.º 23
0
 def test_basename(self):
     self.assertEqual(Path('a/b/c').basename, 'c')
Ejemplo n.º 24
0
 def test_not_equal(self):
     self.assertNotEqual(Path('a/b/c'), Path('a/b'))
     self.assertNotEqual(Path('a/b/c'), 'a/b')
Ejemplo n.º 25
0
 def test_join(self):
     self.assertEqual(Path('a/b/c').join('d', 'e'), Path('a/b/c/d/e'))
     self.assertEqual(
         Path('a/b/c').join(Path('d/e'), Path('f')), Path('a/b/c/d/e/f'))
Ejemplo n.º 26
0
 def test_has_ext(self):
     self.assertTrue(Path('dir/file.txt').has_ext('txt'))
     self.assertFalse(Path('dir/file.txt').has_ext('dat'))
     self.assertTrue(Path('dir/file.txt').has_ext('txt', 'dat'))
     self.assertFalse(Path('dir/file.txt').has_ext('csv', 'dat'))
Ejemplo n.º 27
0
 def test_exists(self):
     td = TempDirectory()
     self.assertTrue(Path(td.path, 'test_file').exists)
     self.assertFalse(Path(td.path, 'unknown_file').exists)
     td.clean()