2010-02-21 11:14:57 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-04-08 16:54:37 +00:00
|
|
|
# Copyright (C) 2010-2012 Bastian Kleineidam
|
2010-02-21 11:14:57 +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
|
|
|
|
import shutil
|
|
|
|
import nose
|
|
|
|
import patoolib
|
|
|
|
|
|
|
|
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):
|
2010-03-03 19:13:03 +00:00
|
|
|
"""Initialize this archive test."""
|
2010-02-22 20:30:47 +00:00
|
|
|
super(ArchiveTest, self).__init__(*args)
|
|
|
|
# set program to use for archive handling
|
|
|
|
self.program = None
|
2010-02-21 11:14:57 +00:00
|
|
|
|
2010-03-03 19:13:03 +00:00
|
|
|
def archive_commands (self, filename, **kwargs):
|
|
|
|
"""Run archive commands list, test, extract and create.
|
|
|
|
All keyword arguments are delegated to the create test function."""
|
2010-02-22 20:30:47 +00:00
|
|
|
self.archive_list(filename)
|
|
|
|
self.archive_test(filename)
|
|
|
|
self.archive_extract(filename)
|
2010-03-03 19:13:03 +00:00
|
|
|
self.archive_create(filename, **kwargs)
|
2010-02-22 20:30:47 +00:00
|
|
|
|
|
|
|
def archive_extract (self, filename):
|
2010-03-03 19:13:03 +00:00
|
|
|
"""Test archive extraction."""
|
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)
|
2012-04-06 10:58:15 +00:00
|
|
|
try:
|
|
|
|
olddir = os.getcwd()
|
|
|
|
except OSError:
|
|
|
|
olddir = None
|
2010-02-21 11:14:57 +00:00
|
|
|
os.chdir(tmpdir)
|
2010-03-10 19:22:59 +00:00
|
|
|
# archive name relative to tmpdir
|
|
|
|
relarchive = os.path.join("..", archive[len(basedir)+1:])
|
2010-02-21 11:14:57 +00:00
|
|
|
try:
|
2010-02-22 20:30:47 +00:00
|
|
|
patoolib._handle_archive(archive, 'extract', program=self.program)
|
2010-03-10 19:22:59 +00:00
|
|
|
patoolib._handle_archive(relarchive, 'extract', program=self.program, verbose=True)
|
2010-02-21 11:14:57 +00:00
|
|
|
finally:
|
2012-04-06 10:58:15 +00:00
|
|
|
if olddir:
|
|
|
|
os.chdir(olddir)
|
2010-02-21 11:14:57 +00:00
|
|
|
shutil.rmtree(tmpdir)
|
|
|
|
|
2010-02-22 20:30:47 +00:00
|
|
|
def archive_list (self, filename):
|
2010-03-03 19:13:03 +00:00
|
|
|
"""Test archive listing."""
|
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-03-03 19:13:03 +00:00
|
|
|
"""Test archive testing."""
|
2010-02-21 12:40:42 +00:00
|
|
|
archive = os.path.join(datadir, filename)
|
2010-02-22 20:30:47 +00:00
|
|
|
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
|
|
|
|
2012-05-17 09:27:03 +00:00
|
|
|
def archive_create (self, archive, srcfile=None, singlefile=False,
|
2012-05-17 09:28:05 +00:00
|
|
|
format=None, compression=None):
|
2010-03-03 19:13:03 +00:00
|
|
|
"""Test archive creation."""
|
2012-05-17 09:31:00 +00:00
|
|
|
# determine filename which is added to the archive
|
|
|
|
if srcfile is None:
|
2012-05-17 09:27:03 +00:00
|
|
|
if singlefile:
|
2012-05-17 09:31:00 +00:00
|
|
|
srcfile = 'foo .txt'
|
2012-05-17 09:27:03 +00:00
|
|
|
else:
|
2012-05-17 09:31:00 +00:00
|
|
|
srcfile = 'foo dir'
|
|
|
|
srcfile = os.path.join(datadir, srcfile)
|
2012-05-17 09:28:05 +00:00
|
|
|
# The format and compression arguments are needed for creating
|
2010-03-03 19:13:03 +00:00
|
|
|
# archives with unusual file extensions.
|
|
|
|
kwargs = dict(
|
|
|
|
program=self.program,
|
|
|
|
format=format,
|
2012-05-17 09:28:05 +00:00
|
|
|
compression=compression,
|
2010-03-03 19:13:03 +00:00
|
|
|
)
|
2012-05-17 09:27:03 +00:00
|
|
|
self._archive_create(archive, srcfile, kwargs)
|
|
|
|
# create again in verbose mode
|
2010-03-06 13:01:02 +00:00
|
|
|
kwargs['verbose'] = True
|
2012-05-17 09:27:03 +00:00
|
|
|
self._archive_create(archive, srcfile, kwargs)
|
2010-03-06 13:01:02 +00:00
|
|
|
|
|
|
|
def _archive_create (self, filename, topack, kwargs):
|
|
|
|
"""Create archive from filename."""
|
|
|
|
# create a temporary directory for creation
|
|
|
|
tmpdir = patoolib.util.tmpdir(dir=basedir)
|
|
|
|
archive = os.path.join(tmpdir, filename)
|
|
|
|
os.chdir(tmpdir)
|
2010-02-21 14:48:52 +00:00
|
|
|
try:
|
2010-03-03 19:13:03 +00:00
|
|
|
patoolib._handle_archive(archive, 'create', topack, **kwargs)
|
2010-03-06 18:21:20 +00:00
|
|
|
self.assertTrue(os.path.isfile(archive))
|
2010-03-20 10:34:40 +00:00
|
|
|
# test the created archive
|
|
|
|
command = 'test'
|
|
|
|
program = self.program
|
|
|
|
# special case for programs that cannot test what they create
|
2012-05-12 11:36:59 +00:00
|
|
|
if self.program in ('compress', 'py_gzip'):
|
2010-02-22 20:30:47 +00:00
|
|
|
program = 'gzip'
|
2012-05-12 11:36:59 +00:00
|
|
|
elif self.program == 'py_bz2':
|
2012-05-12 07:00:55 +00:00
|
|
|
program = 'bzip2'
|
2010-03-03 21:04:06 +00:00
|
|
|
elif self.program == 'zip':
|
|
|
|
program = 'unzip'
|
2012-05-17 12:28:12 +00:00
|
|
|
elif self.program in ('rzip', 'shorten'):
|
2012-05-12 11:36:59 +00:00
|
|
|
program = 'py_echo'
|
2010-03-20 10:34:40 +00:00
|
|
|
command = 'list'
|
|
|
|
patoolib._handle_archive(archive, command, 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-03-08 21:04:27 +00:00
|
|
|
def needs_os (name):
|
|
|
|
"""Decorator skipping test if given program is not available."""
|
|
|
|
def check_prog (f):
|
|
|
|
def newfunc (*args, **kwargs):
|
|
|
|
if os.name != name:
|
|
|
|
raise nose.SkipTest("operating system %s not found" % name)
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
newfunc.func_name = f.func_name
|
|
|
|
return newfunc
|
|
|
|
return check_prog
|
|
|
|
|
|
|
|
|
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-03-01 15:10:17 +00:00
|
|
|
if not patoolib.util.find_program(program):
|
2010-02-22 20:30:47 +00:00
|
|
|
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
|
2010-02-22 20:55:29 +00:00
|
|
|
|
|
|
|
|
2010-03-11 17:33:58 +00:00
|
|
|
def needs_one_program (programs):
|
|
|
|
"""Decorator skipping test if not one of given programs are available."""
|
|
|
|
def check_prog (f):
|
|
|
|
def newfunc (*args, **kwargs):
|
|
|
|
for program in programs:
|
|
|
|
if patoolib.util.find_program(program):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise nose.SkipTest("None of programs %s available" % programs)
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
newfunc.func_name = f.func_name
|
|
|
|
return newfunc
|
|
|
|
return check_prog
|
|
|
|
|
|
|
|
|
2010-02-22 20:55:29 +00:00
|
|
|
def needs_codec (program, codec):
|
|
|
|
"""Decorator skipping test if given program codec is not available."""
|
|
|
|
def check_prog (f):
|
|
|
|
def newfunc (*args, **kwargs):
|
2010-03-01 15:10:17 +00:00
|
|
|
if not patoolib.util.find_program(program):
|
2010-02-23 06:32:13 +00:00
|
|
|
raise nose.SkipTest("program `%s' not available" % program)
|
2010-03-01 15:18:36 +00:00
|
|
|
if not has_codec(program, codec):
|
2010-02-22 20:55:29 +00:00
|
|
|
raise nose.SkipTest("codec `%s' for program `%s' not available" % (codec, program))
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
newfunc.func_name = f.func_name
|
|
|
|
return newfunc
|
|
|
|
return check_prog
|
|
|
|
|
|
|
|
|
2010-03-01 15:18:36 +00:00
|
|
|
def has_codec (program, codec):
|
2010-03-03 19:13:03 +00:00
|
|
|
"""Test if program supports given codec."""
|
2010-02-22 20:55:29 +00:00
|
|
|
if program == '7z' and codec == 'rar':
|
2010-03-01 15:05:32 +00:00
|
|
|
return patoolib.util.p7zip_supports_rar()
|
2012-05-23 03:19:14 +00:00
|
|
|
if patoolib.program_supports_compression(program, codec):
|
|
|
|
return True
|
|
|
|
return patoolib.util.find_program(codec)
|