95 lines
3.0 KiB
Python
95 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2010-2012 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/>.
|
|
from . import ArchiveTest
|
|
from .. import needs_program, needs_codec
|
|
|
|
class TestStar (ArchiveTest):
|
|
|
|
program = 'star'
|
|
|
|
@needs_program(program)
|
|
def test_star (self):
|
|
self.archive_commands('t.tar')
|
|
|
|
@needs_codec(program, 'gzip')
|
|
def test_star_gz (self):
|
|
self.archive_commands('t.tar.gz')
|
|
self.archive_commands('t.tgz')
|
|
|
|
@needs_program(program)
|
|
@needs_program('compress')
|
|
def test_star_z (self):
|
|
self.archive_commands('t.tar.Z')
|
|
self.archive_commands('t.taz')
|
|
|
|
@needs_codec(program, 'bzip2')
|
|
def test_star_bz2 (self):
|
|
self.archive_commands('t.tar.bz2')
|
|
self.archive_commands('t.tbz2')
|
|
|
|
@needs_codec(program, 'lzma')
|
|
def test_star_lzma (self):
|
|
self.archive_commands('t.tar.lzma')
|
|
|
|
@needs_program(program)
|
|
@needs_program('lzip')
|
|
def test_star_lzip (self):
|
|
self.archive_commands('t.tar.lz')
|
|
|
|
@needs_codec(program, 'xz')
|
|
def test_star_xz (self):
|
|
self.archive_commands('t.tar.xz')
|
|
|
|
@needs_program('file')
|
|
@needs_program(program)
|
|
def test_star_file (self):
|
|
self.archive_commands('t.tar.foo', skip_create=True)
|
|
|
|
@needs_program('file')
|
|
@needs_codec(program, 'gzip')
|
|
def test_star_gz_file (self):
|
|
self.archive_commands('t.tar.gz.foo', skip_create=True)
|
|
self.archive_commands('t.tgz.foo', skip_create=True)
|
|
|
|
@needs_program('file')
|
|
@needs_codec(program, 'compress')
|
|
def test_star_z_file (self):
|
|
self.archive_commands('t.tar.Z.foo', skip_create=True)
|
|
self.archive_commands('t.taz.foo', skip_create=True)
|
|
|
|
@needs_program('file')
|
|
@needs_codec(program, 'bzip2')
|
|
def test_star_bz2_file (self):
|
|
self.archive_commands('t.tar.bz2.foo', skip_create=True)
|
|
self.archive_commands('t.tbz2.foo', skip_create=True)
|
|
|
|
# file(1) does not recognize .lzma files
|
|
#@needs_program('file')
|
|
#@needs_codec(program, 'lzma')
|
|
#def test_star_lzma_file (self):
|
|
# self.archive_commands('t.tar.lzma.foo', skip_create=True)
|
|
|
|
@needs_program('file')
|
|
@needs_codec(program, 'lzip')
|
|
def test_star_lzip_file (self):
|
|
self.archive_commands('t.tar.lz.foo', skip_create=True)
|
|
|
|
@needs_program('file')
|
|
@needs_codec(program, 'xz')
|
|
def test_star_xz_file (self):
|
|
self.archive_commands('t.tar.xz.foo', skip_create=True)
|
|
|