def test_extract_tar_with_relative_path(self):
     test_file = self.get_test_loc('archive/tar/tar_relative.tar')
     """
     This test file was created with:
         import tarfile
         tar = tarfile.open("TarTest.tar.gz", "w")
         tar.add('a.txt', '../a_parent_folder.txt')
         tar.add('b.txt', '../../another_folder/b_two_root.txt')
         tar.add('b.txt', '../folder/subfolder/b_subfolder.txt')
         tar.close()
     """
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     non_result = os.path.abspath(test_file + '/../a_parent_folder.txt')
     assert not os.path.exists(non_result)
     extracted = self.collect_extracted_path(test_dir)
     expected = [
         '/dotdot/',
         '/dotdot/dotdot/',
         '/dotdot/a_parent_folder.txt',
         '/dotdot/dotdot/another_folder/',
         '/dotdot/dotdot/another_folder/b_two_root.txt',
         '/dotdot/folder/',
         '/dotdot/folder/subfolder/',
         '/dotdot/folder/subfolder/b_subfolder.txt'
     ]
     assert sorted(expected) == sorted(extracted)
 def test_extract_tar_bz2_multistream(self):
     test_file = self.get_test_loc('archive/tbz/bzip2_multistream/example-file.csv.tar.bz2')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     expected = self.get_test_loc('archive/tbz/bzip2_multistream/example-file.csv')
     result = os.path.join(test_dir, 'example-file.csv')
     assert open(expected, 'rb').read() == open(result, 'rb').read()
 def test_extract_tar_with_relative_path(self):
     test_file = self.get_test_loc('archive/tar/tar_relative.tar')
     """
     This test file was created with:
         import tarfile
         tar = tarfile.open("TarTest.tar.gz", "w")
         tar.add('a.txt', '../a_parent_folder.txt')
         tar.add('b.txt', '../../another_folder/b_two_root.txt')
         tar.add('b.txt', '../folder/subfolder/b_subfolder.txt')
         tar.close()
     """
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     non_result = os.path.abspath(test_file + '/../a_parent_folder.txt')
     assert not os.path.exists(non_result)
     extracted = self.collect_extracted_path(test_dir)
     expected = [
         '/dotdot/',
         '/dotdot/dotdot/',
         '/dotdot/a_parent_folder.txt',
         '/dotdot/dotdot/another_folder/',
         '/dotdot/dotdot/another_folder/b_two_root.txt',
         '/dotdot/folder/',
         '/dotdot/folder/subfolder/',
         '/dotdot/folder/subfolder/b_subfolder.txt'
     ]
     assert sorted(expected) == sorted(extracted)
Exemple #4
0
 def test_extract_tar_bz2_with_trailing_data__and_wrong_extension(self):
     test_file = self.get_test_loc(
         'archive/tbz/single_file_trailing_data.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'a.txt')
     assert os.path.exists(result)
 def test_extract_tar_bz2_multistream(self):
     test_file = self.get_test_loc('archive/tbz/bzip2_multistream/example-file.csv.tar.bz2')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     expected = self.get_test_loc('archive/tbz/bzip2_multistream/example-file.csv')
     result = os.path.join(test_dir, 'example-file.csv')
     assert open(expected, 'rb').read() == open(result, 'rb').read()
Exemple #6
0
 def test_extract_tar_bz2_absolute_path(self):
     assert not os.path.exists('/tmp/subdir')
     test_dir = self.get_temp_dir()
     test_file = self.get_test_loc('archive/tbz/absolute_path.tar.bz2')
     tar.extract(test_file, test_dir)
     assert not os.path.exists('/tmp/subdir')
     result = os.path.join(test_dir, 'tmp/subdir/a.txt')
     assert os.path.exists(result)
 def test_extract_tar_bz2_absolute_path(self):
     assert not os.path.exists('/tmp/subdir')
     test_dir = self.get_temp_dir()
     test_file = self.get_test_loc('archive/tbz/absolute_path.tar.bz2')
     tar.extract(test_file, test_dir)
     assert not os.path.exists('/tmp/subdir')
     result = os.path.join(test_dir, 'tmp/subdir/a.txt')
     assert os.path.exists(result)
 def test_extract_targz_symlinks(self):
     test_file = self.get_test_loc('archive/tgz/symlink.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     expected = [
         'z/x/a',
         'z/y/a'
     ]
     check_files(test_dir, expected)
Exemple #9
0
    def test_extract_targz_with_trailing_data2(self):
        test_dir1 = self.get_temp_dir()
        test_file = self.get_test_loc('archive/tgz/trailing2.tar.gz')
        tar.extract(test_file, test_dir1)

        test_dir2 = self.get_temp_dir()
        test_file2 = self.get_test_loc('archive/tgz/no_trailing.tar.gz')
        tar.extract(test_file2, test_dir2)
        assert commoncode.testcase.is_same(test_dir1, test_dir2)
 def test_extract_targz_symlinks(self):
     test_file = self.get_test_loc('archive/tgz/symlink.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     expected = [
         'z/x/a',
         'z/y/a'
     ]
     check_files(test_dir, expected)
    def test_extract_targz_with_trailing_data2(self):
        test_dir1 = self.get_temp_dir()
        test_file = self.get_test_loc('archive/tgz/trailing2.tar.gz')
        tar.extract(test_file, test_dir1)

        test_dir2 = self.get_temp_dir()
        test_file2 = self.get_test_loc('archive/tgz/no_trailing.tar.gz')
        tar.extract(test_file2, test_dir2)
        assert commoncode.testcase.is_same(test_dir1, test_dir2)
    def test_extract_targz_with_absolute_path(self):
        non_result = '/tmp/subdir'
        assert not os.path.exists(non_result)

        test_dir = self.get_temp_dir()
        test_file = self.get_test_loc('archive/tgz/absolute_path.tar.gz')
        tar.extract(test_file, test_dir)
        assert not os.path.exists(non_result)
        result = os.path.join(test_dir, 'tmp/subdir/a.txt')
        assert os.path.exists(result)
Exemple #13
0
    def test_extract_targz_with_absolute_path(self):
        non_result = '/tmp/subdir'
        assert not os.path.exists(non_result)

        test_dir = self.get_temp_dir()
        test_file = self.get_test_loc('archive/tgz/absolute_path.tar.gz')
        tar.extract(test_file, test_dir)
        assert not os.path.exists(non_result)
        result = os.path.join(test_dir, 'tmp/subdir/a.txt')
        assert os.path.exists(result)
    def test_extract_tar_absolute_path(self):
        non_result = '/home/li/Desktop/absolute_folder'
        assert not os.path.exists(non_result)

        test_dir = self.get_temp_dir()
        test_file = self.get_test_loc('archive/tar/tar_absolute.tar')
        tar.extract(test_file, test_dir)

        assert not os.path.exists(non_result)
        result = os.path.join(test_dir, 'home/li/Desktop/absolute_folder/absolute_file')
        assert os.path.exists(result)
    def test_extract_tar_absolute_path(self):
        non_result = '/home/li/Desktop/absolute_folder'
        assert not os.path.exists(non_result)

        test_dir = self.get_temp_dir()
        test_file = self.get_test_loc('archive/tar/tar_absolute.tar')
        tar.extract(test_file, test_dir)

        assert not os.path.exists(non_result)
        result = os.path.join(test_dir, 'home/li/Desktop/absolute_folder/absolute_file')
        assert os.path.exists(result)
 def test_extract_targz_from_apache_should_not_return_errors(self):
     # from http://archive.apache.org/dist/commons/logging/source/commons-logging-1.1.2-src.tar.gz
     # failed with ReadError('not a bzip2 file',)
     test_file = self.get_test_loc('archive/tgz/commons-logging-1.1.2-src.tar.gz')
     test_dir = self.get_temp_dir()
     result = tar.extract(test_file, test_dir)
     assert [] == result
     assert os.listdir(test_dir)
 def test_extract_targz_from_apache_should_not_return_errors(self):
     # from http://archive.apache.org/dist/commons/logging/source/commons-logging-1.1.2-src.tar.gz
     # failed with ReadError('not a bzip2 file',)
     test_file = self.get_test_loc('archive/tgz/commons-logging-1.1.2-src.tar.gz')
     test_dir = self.get_temp_dir()
     result = tar.extract(test_file, test_dir)
     assert [] == result
     assert os.listdir(test_dir)
    def test_extract_tar_bz2_relative_path(self):
        test_file = self.get_test_loc('archive/tbz/bz2withtar_relative.tar.bz2')
        """
        This test file was created with:
            import tarfile
            tar = tarfile.open("TarTest.tar.gz", "w:bz")
            tar.add('a.txt', '../a_parent_folder.txt')
            tar.add('b.txt', '../../another_folder/b_two_root.txt')
            tar.add('b.txt', '../folder/subfolder/b_subfolder.txt')
            tar.close()
        """
        test_dir = self.get_temp_dir()
        tar.extract(test_file, test_dir)

        non_result = os.path.join(test_dir, '../a_parent_folder.txt')
        assert not os.path.exists(non_result)

        result = os.path.join(test_dir, 'dotdot/folder/subfolder/b_subfolder.txt')
        assert os.path.exists(result)
        result = os.path.join(test_dir, 'dotdot', 'a_parent_folder.txt')
        assert os.path.exists(result)
    def test_extract_tar_bz2_relative_path(self):
        test_file = self.get_test_loc('archive/tbz/bz2withtar_relative.tar.bz2')
        """
        This test file was created with:
            import tarfile
            tar = tarfile.open("TarTest.tar.gz", "w:bz")
            tar.add('a.txt', '../a_parent_folder.txt')
            tar.add('b.txt', '../../another_folder/b_two_root.txt')
            tar.add('b.txt', '../folder/subfolder/b_subfolder.txt')
            tar.close()
        """
        test_dir = self.get_temp_dir()
        tar.extract(test_file, test_dir)

        non_result = os.path.join(test_dir, '../a_parent_folder.txt')
        assert not os.path.exists(non_result)

        result = os.path.join(test_dir, 'dotdot/folder/subfolder/b_subfolder.txt')
        assert os.path.exists(result)
        result = os.path.join(test_dir, 'dotdot', 'a_parent_folder.txt')
        assert os.path.exists(result)
Exemple #20
0
 def test_extract_targz_with_mixed_case_and_symlink(self):
     test_file = self.get_test_loc('archive/tgz/mixed_case_and_symlink.tgz')
     test_dir = self.get_temp_dir()
     expected = [
         'skinenigmang/hqlogos/arte.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/MTV Hits.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/Disney Channel.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/EuroNews.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/Jetix.xpm: Skipping duplicate file name.',
         "skinenigmang/hqlogos/MTV France.xpm: Skipping link to special file: skinenigmang/hqlogos/MTV F.xpm"
     ]
     result = tar.extract(test_file, test_dir)
     result = [m.replace(test_dir, '').strip('\\/') for m in result]
     assert expected == result
    def test_extract_targz_with_relative_path(self):
        test_file = self.get_test_loc('archive/tgz/relative.tar.gz')
        """
        This test file was created with:
            import tarfile
            tar = tarfile.open("TarTest.tar.gz", "w:gz")
            tar.add('a.txt', '../a_parent_folder.txt')
            tar.add('b.txt', '../../another_folder/b_two_root.txt')
            tar.add('b.txt', '../folder/subfolder/b_subfolder.txt')
            tar.close()
        """
        test_dir = self.get_temp_dir()
        tar.extract(test_file, test_dir)

        non_result = os.path.join(test_dir, '../a_parent_folder.txt')
        assert not os.path.exists(non_result)

        expected = [
            'dotdot/dotdot/another_folder/b_two_root.txt',
            'dotdot/a_parent_folder.txt',
            'dotdot/folder/subfolder/b_subfolder.txt'
        ]
        check_files(test_dir, expected)
Exemple #22
0
 def test_extract_python_testtar_tar_archive_with_special_files(self):
     test_file = self.get_test_loc('archive/tar/testtar.tar')
     # this is from:
     # https://hg.python.org/cpython/raw-file/bff88c866886/Lib/test/testtar.tar
     test_dir = self.get_temp_dir()
     result = tar.extract(test_file, test_dir)
     expected_warnings = []
     #             "Skipping broken link to: testtar/0-REGTYPE",
     #             'Skipping special file.',
     #             'Skipping special file.'
     #         ]
     assert sorted(expected_warnings) == sorted(result)
     expected = []
     check_files(test_dir, expected)
 def test_extract_targz_with_mixed_case_and_symlink(self):
     test_file = self.get_test_loc('archive/tgz/mixed_case_and_symlink.tgz')
     test_dir = self.get_temp_dir()
     expected = [
         'skinenigmang/hqlogos/arte.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/MTV Hits.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/Disney Channel.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/EuroNews.xpm: Skipping duplicate file name.',
         'skinenigmang/hqlogos/Jetix.xpm: Skipping duplicate file name.',
         "skinenigmang/hqlogos/MTV France.xpm: Skipping link to special file: skinenigmang/hqlogos/MTV F.xpm"
     ]
     result = tar.extract(test_file, test_dir)
     result = [m.replace(test_dir, '').strip('\\/') for m in result]
     assert expected == result
Exemple #24
0
    def test_extract_targz_with_relative_path(self):
        test_file = self.get_test_loc('archive/tgz/relative.tar.gz')
        """
        This test file was created with:
            import tarfile
            tar = tarfile.open("TarTest.tar.gz", "w:gz")
            tar.add('a.txt', '../a_parent_folder.txt')
            tar.add('b.txt', '../../another_folder/b_two_root.txt')
            tar.add('b.txt', '../folder/subfolder/b_subfolder.txt')
            tar.close()
        """
        test_dir = self.get_temp_dir()
        tar.extract(test_file, test_dir)

        non_result = os.path.join(test_dir, '../a_parent_folder.txt')
        assert not os.path.exists(non_result)

        expected = [
            'dotdot/dotdot/another_folder/b_two_root.txt',
            'dotdot/a_parent_folder.txt',
            'dotdot/folder/subfolder/b_subfolder.txt'
        ]
        check_files(test_dir, expected)
    def test_extract_python_testtar_tar_archive_with_special_files(self):
        test_file = self.get_test_loc('archive/tar/testtar.tar')
        # this is from:
        # https://hg.python.org/cpython/raw-file/bff88c866886/Lib/test/testtar.tar
        test_dir = self.get_temp_dir()
        result = tar.extract(test_file, test_dir)
        expected_warnings = []
#             "Skipping broken link to: testtar/0-REGTYPE",
#             'Skipping special file.',
#             'Skipping special file.'
#         ]
        assert sorted(expected_warnings) == sorted(result)
        expected = [
        ]
        check_files(test_dir, expected)
Exemple #26
0
    def test_extract_tar_archive_with_special_files(self):
        test_file = self.get_test_loc('archive/tar/special.tar')
        test_dir = self.get_temp_dir()
        result = tar.extract(test_file, test_dir)
        expected = [
            '0-REGTYPE',
            '0-REGTYPE-TEXT',
            '0-REGTYPE-VEEEERY_LONG_NAME_____________________________________________________________________________________________________________________155',
            '1-LNKTYPE',
            'S-SPARSE',
            'S-SPARSE-WITH-NULLS',
        ]
        check_files(test_dir, expected)

        expected_warnings = [
            "2-SYMTYPE: Skipping broken link to: testtar/0-REGTYPE",
            '3-CHRTYPE: Skipping special file.',
            '6-FIFOTYPE: Skipping special file.'
        ]
        assert sorted(expected_warnings) == sorted(result)
    def test_extract_tar_archive_with_special_files(self):
        test_file = self.get_test_loc('archive/tar/special.tar')
        test_dir = self.get_temp_dir()
        result = tar.extract(test_file, test_dir)
        expected = [
            '0-REGTYPE',
            '0-REGTYPE-TEXT',
            '0-REGTYPE-VEEEERY_LONG_NAME_____________________________________________________________________________________________________________________155',
            '1-LNKTYPE',
            'S-SPARSE',
            'S-SPARSE-WITH-NULLS',
        ]
        check_files(test_dir, expected)

        expected_warnings = [
            "2-SYMTYPE: Skipping broken link to: testtar/0-REGTYPE",
            '3-CHRTYPE: Skipping special file.',
            '6-FIFOTYPE: Skipping special file.'
        ]
        assert sorted(expected_warnings) == sorted(result)
 def test_extract_tar_bz2_with_trailing_data__and_wrong_extension(self):
     test_file = self.get_test_loc('archive/tbz/single_file_trailing_data.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'a.txt')
     assert os.path.exists(result)
 def test_extract_tar_bz2_iproute(self):
     test_file = self.get_test_loc('archive/tbz/iproute2.tar.bz2')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'iproute2/README')
     assert os.path.exists(result)
Exemple #30
0
 def test_extract_targz_with_trailing_data(self):
     test_file = self.get_test_loc('archive/tgz/trailing.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'a.txt')
     assert os.path.exists(result)
Exemple #31
0
 def test_extract_targz_basic(self):
     test_file = self.get_test_loc('archive/tgz/tarred_gzipped.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'e/a/b.txt')
     assert os.path.exists(result)
 def test_extract_targz_basic(self):
     test_file = self.get_test_loc('archive/tgz/tarred_gzipped.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'e/a/b.txt')
     assert os.path.exists(result)
Exemple #33
0
 def test_extract_tar_bz2_iproute(self):
     test_file = self.get_test_loc('archive/tbz/iproute2.tar.bz2')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'iproute2/README')
     assert os.path.exists(result)
 def test_extract_targz_with_trailing_data(self):
     test_file = self.get_test_loc('archive/tgz/trailing.tar.gz')
     test_dir = self.get_temp_dir()
     tar.extract(test_file, test_dir)
     result = os.path.join(test_dir, 'a.txt')
     assert os.path.exists(result)