2010-02-21 11:14:57 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2010 Bastian Kleineidam
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
import shutil
|
|
|
|
import nose
|
|
|
|
import patoolib
|
|
|
|
from distutils.spawn import find_executable
|
|
|
|
|
|
|
|
basedir = os.path.dirname(__file__)
|
|
|
|
datadir = os.path.join(basedir, 'data')
|
|
|
|
|
|
|
|
class ArchiveTest (unittest.TestCase):
|
|
|
|
"""Helper class for achive tests."""
|
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def __init__ (self, *args):
|
|
|
|
super(ArchiveTest, self).__init__(*args)
|
|
|
|
# set program to use for archive handling
|
|
|
|
self.program = None
|
2010-02-21 11:14:57 +00:00
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def archive_commands (self, filename, singlefile=False):
|
|
|
|
self.archive_list(filename)
|
|
|
|
self.archive_test(filename)
|
|
|
|
self.archive_extract(filename)
|
|
|
|
self.archive_create(filename, singlefile=singlefile)
|
|
|
|
|
|
|
|
def archive_extract (self, filename):
|
2010-02-21 11:14:57 +00:00
|
|
|
archive = os.path.join(datadir, filename)
|
|
|
|
# create a temporary directory for extraction
|
|
|
|
tmpdir = patoolib.util.tmpdir(dir=basedir)
|
|
|
|
os.chdir(tmpdir)
|
|
|
|
try:
|
2010-02-22 20:30:47 +00:00
|
|
|
patoolib._handle_archive(archive, 'extract', program=self.program)
|
|
|
|
patoolib._handle_archive(archive, 'extract', program=self.program, force=True)
|
2010-02-21 11:14:57 +00:00
|
|
|
finally:
|
|
|
|
os.chdir(basedir)
|
|
|
|
shutil.rmtree(tmpdir)
|
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def archive_list (self, filename):
|
2010-02-21 11:14:57 +00:00
|
|
|
archive = os.path.join(datadir, filename)
|
2010-02-22 20:30:47 +00:00
|
|
|
patoolib._handle_archive(archive, 'list', program=self.program)
|
|
|
|
patoolib._handle_archive(archive, 'list', program=self.program, verbose=True)
|
2010-02-21 12:40:42 +00:00
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def archive_test (self, filename):
|
2010-02-21 12:40:42 +00:00
|
|
|
archive = os.path.join(datadir, filename)
|
2010-02-22 20:30:47 +00:00
|
|
|
print "XXX1", self.program
|
|
|
|
patoolib._handle_archive(archive, 'test', program=self.program)
|
|
|
|
patoolib._handle_archive(archive, 'test', program=self.program, verbose=True)
|
2010-02-21 11:14:57 +00:00
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def archive_create (self, filename, singlefile=False):
|
2010-02-21 14:48:52 +00:00
|
|
|
# the file or directory to pack
|
|
|
|
if singlefile:
|
|
|
|
topack = os.path.join(datadir, 'foo.txt')
|
|
|
|
else:
|
|
|
|
topack = os.path.join(datadir, 'foo')
|
|
|
|
# create a temporary directory for creation
|
|
|
|
tmpdir = patoolib.util.tmpdir(dir=basedir)
|
|
|
|
archive = os.path.join(tmpdir, filename)
|
|
|
|
os.chdir(tmpdir)
|
|
|
|
try:
|
2010-02-22 20:30:47 +00:00
|
|
|
patoolib._handle_archive(archive, 'create', topack, program=self.program)
|
2010-02-21 14:48:52 +00:00
|
|
|
# not all programs can test what they create
|
2010-02-22 20:30:47 +00:00
|
|
|
if self.program == 'compress':
|
|
|
|
program = 'gzip'
|
|
|
|
else:
|
|
|
|
program = self.program
|
|
|
|
patoolib._handle_archive(archive, 'test', program=program)
|
2010-02-21 14:48:52 +00:00
|
|
|
finally:
|
|
|
|
os.chdir(basedir)
|
|
|
|
shutil.rmtree(tmpdir)
|
|
|
|
|
2010-02-21 11:14:57 +00:00
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def needs_program (program):
|
|
|
|
"""Decorator skipping test if given program is not available."""
|
2010-02-21 11:14:57 +00:00
|
|
|
def check_prog (f):
|
|
|
|
def newfunc (*args, **kwargs):
|
2010-02-22 20:30:47 +00:00
|
|
|
if not find_executable(program):
|
|
|
|
raise nose.SkipTest("program `%s' not available" % program)
|
2010-02-21 11:14:57 +00:00
|
|
|
return f(*args, **kwargs)
|
|
|
|
newfunc.func_name = f.func_name
|
|
|
|
return newfunc
|
|
|
|
return check_prog
|