2010-03-11 17:33:58 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-07-19 17:29:01 +00:00
|
|
|
# Copyright (C) 2010-2015 Bastian Kleineidam
|
2010-03-11 17:33:58 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import unittest
|
|
|
|
import os
|
2013-02-25 20:04:02 +00:00
|
|
|
import sys
|
2010-03-11 17:33:58 +00:00
|
|
|
import shutil
|
2013-02-25 20:04:02 +00:00
|
|
|
from patoolib import util
|
|
|
|
from . import datadir, needs_program, needs_one_program, patool_cmd
|
2010-03-11 17:33:58 +00:00
|
|
|
|
|
|
|
class ArchiveRepackTest (unittest.TestCase):
|
|
|
|
|
2013-02-21 16:51:34 +00:00
|
|
|
def repack(self, name1, name2):
|
|
|
|
"""Repack archive with name1 to archive with name2."""
|
|
|
|
archive1 = os.path.join(datadir, name1)
|
2013-02-25 20:04:02 +00:00
|
|
|
tmpdir = util.tmpdir()
|
2010-03-11 17:33:58 +00:00
|
|
|
try:
|
2013-02-21 16:51:34 +00:00
|
|
|
archive2 = os.path.join(tmpdir, name2)
|
2015-12-06 19:23:27 +00:00
|
|
|
util.run_checked([sys.executable, patool_cmd, "-vv", "--non-interactive", "repack", archive1, archive2])
|
|
|
|
util.run_checked([sys.executable, patool_cmd, "--non-interactive", "diff", archive1, archive2])
|
2010-03-11 17:33:58 +00:00
|
|
|
finally:
|
|
|
|
shutil.rmtree(tmpdir)
|
2013-02-21 16:51:34 +00:00
|
|
|
|
|
|
|
@needs_program('diff')
|
|
|
|
@needs_one_program(('tar', 'star', '7z'))
|
|
|
|
@needs_one_program(('zip', '7z'))
|
|
|
|
def test_repack (self):
|
|
|
|
self.repack('t.tar', 't.zip')
|
|
|
|
|
|
|
|
@needs_program('diff')
|
|
|
|
@needs_one_program(('gzip', '7z'))
|
|
|
|
@needs_one_program(('bzip2', '7z'))
|
|
|
|
def test_repack_same_format_different_compression (self):
|
|
|
|
self.repack('t.tar.gz', 't.tar.bz2')
|
|
|
|
|
|
|
|
@needs_program('diff')
|
|
|
|
def test_repack_same_format (self):
|
|
|
|
self.repack('t.tar.gz', 't1.tar.gz')
|
|
|
|
self.repack('t.zip', 't1.zip')
|