1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-02-03 14:55:53 +01:00

5 Commits
0.4 ... 0.6

Author SHA1 Message Date
77cf10cee7 Fixed issue with compressing files with tar.*
This changeset fixes tar behavior on creating archive, like:

  tar cf foo.tar .

which include also archive file itself, so that tar reports an error
`file changed as we read it` during appending archive file to itself.

This changest is fixing that by replacing dot with list of items to be
added to the archive (similar as in RarArchive.create).
2017-01-06 16:53:49 +01:00
250b1c4c2c Version bump 2017-01-03 20:07:01 +01:00
0cbe6fc9d0 Added wrapper_save_state option 2017-01-03 19:34:42 +01:00
0b831e5b10 Setting assets paths in base class 2017-01-03 18:49:18 +01:00
1d35436dee Fixed tests for wrapper modules
Exchanged os.rename with shutil.move since there was a problem with
moving files between different filesystems.
2017-01-03 06:01:30 +01:00
10 changed files with 187 additions and 91 deletions

View File

@@ -126,9 +126,14 @@ Options used:
* ``wrapper`` (required) with ``cd32`` as an value * ``wrapper`` (required) with ``cd32`` as an value
* ``wrapper_archive`` (required) path to the archive with CD32 iso/cue/wav * ``wrapper_archive`` (required) path to the archive with CD32 iso/cue/wav
* ``wrapper_archiver`` (required) archiver to use for storage save state * ``wrapper_archiver`` (conditionally required) archiver to use for storage
save state
* ``wrapper_gui_msg`` (optional) if set to "1", will display a graphical * ``wrapper_gui_msg`` (optional) if set to "1", will display a graphical
message during extracting files message during extracting files
* ``wrapper_save_state`` (optional) if set to "1", will load/archive save state
directory, defined as ``$CONFIG/[save-state-dir-name]`` using provided
``wrapper_archiver`` archiver. If this option is enabled,
``wrapper_archiver`` will be required.
Let's see some sample config for a game, which is saved as Let's see some sample config for a game, which is saved as
``ChaosEngine.fs-uae``: ``ChaosEngine.fs-uae``:
@@ -139,6 +144,7 @@ Let's see some sample config for a game, which is saved as
[config] [config]
wrapper = cd32 wrapper = cd32
wrapper_archive = ChaosEngine.7z wrapper_archive = ChaosEngine.7z
wrapper_archiver = 7z
wrapper_gui_msg = 1 wrapper_gui_msg = 1
amiga_model = CD32 amiga_model = CD32
@@ -165,14 +171,15 @@ Now, there several thing will happen:
- Archive with game assists will be extracted in that directory - Archive with game assists will be extracted in that directory
- Configuration file will be copied into that directory, and renamed to - Configuration file will be copied into that directory, and renamed to
``Config.fs-uae`` ``Config.fs-uae``
- If there is saved state, it also would be extracted there - If ``wrapper_save_state`` is set, and there is saved state archive, it also
would be extracted there
- ``fs-uae`` will be launched inside that directory - ``fs-uae`` will be launched inside that directory
Next, after ``fs-uae`` quit, there will: Next, after ``fs-uae`` quit, there will:
- Create archive containing save state with name like the configuration file - Optionally create archive containing save state with name like the
with additional ``_save`` suffix. In this example it would be configuration file with additional ``_save`` suffix. In this example it would
``ChaosEngine_save.7z``. be ``ChaosEngine_save.7z``.
- Wipe out temporary directory - Wipe out temporary directory
archive archive
@@ -180,14 +187,19 @@ archive
Options used: Options used:
* ``wrapper`` (required) with ``cd32`` as an value * ``wrapper`` (required) with ``archive`` as an value
* ``wrapper_archive`` (required) path to the archive with assets (usually means * ``wrapper_archive`` (required) path to the archive with assets (usually means
* ``wrapper_archiver`` (required) archiver to use for storage save state
whole system directories, floppies or hard disk images) whole system directories, floppies or hard disk images)
* ``wrapper_archiver`` (conditionally required) archiver to use for storage
save state
* ``wrapper_gui_msg`` (optional) if set to "1", will display a graphical * ``wrapper_gui_msg`` (optional) if set to "1", will display a graphical
message during extracting files message during extracting files
* ``wrapper_persist_data`` (optional) if set to "1", will compress (possibly * ``wrapper_persist_data`` (optional) if set to "1", will compress (possibly
changed) data, replacing original archive changed) data, replacing original archive
* ``wrapper_save_state`` (optional) if set to "1", will archive save state
directory, defined as ``$CONFIG/[save-state-dir-name]`` using provided
``wrapper_archiver`` archiver. If this option is enabled,
``wrapper_archiver`` will be required.
Example configuration: Example configuration:
@@ -197,9 +209,10 @@ Example configuration:
[config] [config]
wrapper = archive wrapper = archive
wrapper_archive = Workbench_3.1.tar.bz2 wrapper_archive = Workbench_3.1.tar.bz2
wrapper_archiver = lha
wrapper_gui_msg = 1 wrapper_gui_msg = 1
wrapper_persist_data = 1 wrapper_persist_data = 1
wrapper_save_state = 1
... ...
And execution is as usual: And execution is as usual:
@@ -212,11 +225,12 @@ This module will do several steps (similar as with ``cd32`` wrapper):
- create temporary directory - create temporary directory
- extract provided in configuration archive - extract provided in configuration archive
- extract save state (if exists) - extract save state (if ``wrapper_save_state`` is set to ``1`` and archive
with save exists)
- copy configuration under name ``Config.fs-uae`` - copy configuration under name ``Config.fs-uae``
- run the fs-uae emulator - run the fs-uae emulator
- create archive with save state (if save state directory place is *not* a - optionally create archive with save state (if save state directory place is
global one) *not* a global one)
- optionally create new archive under the same name as the original one and - optionally create new archive under the same name as the original one and
replace it with original one. replace it with original one.

View File

@@ -40,7 +40,6 @@ class Archive(base.Base):
if not super(Archive, self).run(): if not super(Archive, self).run():
return False return False
self._set_assets_paths()
if not self._extract(): if not self._extract():
return False return False
@@ -66,9 +65,6 @@ class Archive(base.Base):
validation_result = super(Archive, self)._validate_options() validation_result = super(Archive, self)._validate_options()
if not super(Archive, self)._validate_options():
validation_result = False
if 'wrapper_archive' not in self.all_options: if 'wrapper_archive' not in self.all_options:
sys.stderr.write("Configuration lacks of required " sys.stderr.write("Configuration lacks of required "
"`wrapper_archive' option.\n") "`wrapper_archive' option.\n")
@@ -97,7 +93,7 @@ class Archive(base.Base):
if not utils.create_archive(arch, title): if not utils.create_archive(arch, title):
return False return False
os.rename(arch, self.arch_filepath) shutil.move(arch, self.arch_filepath)
os.chdir(curdir) os.chdir(curdir)
return True return True

View File

@@ -47,6 +47,8 @@ class Base(object):
self.dir = tempfile.mkdtemp() self.dir = tempfile.mkdtemp()
self._set_assets_paths()
return True return True
def clean(self): def clean(self):
@@ -91,15 +93,17 @@ class Base(object):
conf_base = os.path.basename(self.conf_file) conf_base = os.path.basename(self.conf_file)
conf_base = os.path.splitext(conf_base)[0] conf_base = os.path.splitext(conf_base)[0]
arch = self.all_options['wrapper_archive'] arch = self.all_options.get('wrapper_archive')
if os.path.isabs(arch): if arch:
self.arch_filepath = arch if os.path.isabs(arch):
else: self.arch_filepath = arch
self.arch_filepath = os.path.join(conf_abs_dir, arch) else:
self.arch_filepath = os.path.join(conf_abs_dir, arch)
# set optional save_state # set optional save_state
arch_ext = utils.get_arch_ext(self.all_options['wrapper_archiver']) arch_ext = utils.get_arch_ext(self.all_options.get('wrapper_archiver'))
self.save_filename = os.path.join(conf_abs_dir, conf_base + '_save' + if arch_ext:
arch_ext) self.save_filename = os.path.join(conf_abs_dir, conf_base +
'_save' + arch_ext)
def _copy_conf(self): def _copy_conf(self):
"""copy provided configuration as Config.fs-uae""" """copy provided configuration as Config.fs-uae"""
@@ -143,6 +147,9 @@ class Base(object):
""" """
Get the saves from emulator and store it where configuration is placed Get the saves from emulator and store it where configuration is placed
""" """
if self.all_options.get('wrapper_save_state', '0') != '1':
return True
os.chdir(self.dir) os.chdir(self.dir)
save_path = self._get_saves_dir() save_path = self._get_saves_dir()
if not save_path: if not save_path:
@@ -165,6 +172,9 @@ class Base(object):
""" """
Put the saves (if exists) to the temp directory. Put the saves (if exists) to the temp directory.
""" """
if self.all_options.get('wrapper_save_state', '0') != '1':
return True
if not os.path.exists(self.save_filename): if not os.path.exists(self.save_filename):
return True return True
@@ -208,6 +218,9 @@ class Base(object):
"`wrapper' option.\n") "`wrapper' option.\n")
return False return False
if self.all_options.get('wrapper_save_state', '0') == '0':
return True
if 'wrapper_archiver' not in self.all_options: if 'wrapper_archiver' not in self.all_options:
sys.stderr.write("Configuration lacks of required " sys.stderr.write("Configuration lacks of required "
"`wrapper_archiver' option.\n") "`wrapper_archiver' option.\n")

View File

@@ -34,7 +34,6 @@ class CD32(base.Base):
if not self._validate_options(): if not self._validate_options():
return False return False
self._set_assets_paths()
if not self._extract(): if not self._extract():
return False return False
@@ -46,7 +45,10 @@ class CD32(base.Base):
if kick_opts: if kick_opts:
self.fsuae_options.update(kick_opts) self.fsuae_options.update(kick_opts)
if self._run_emulator(self.fsuae_options.list()): if not self._run_emulator(self.fsuae_options.list()):
return False
if self._get_saves_dir():
return self._save_save() return self._save_save()
return True return True

View File

@@ -53,6 +53,15 @@ class TarArchive(Archive):
EXTRACT = ['xf'] EXTRACT = ['xf']
ARCH = 'tar' ARCH = 'tar'
def create(self, arch_name, files=None):
files = files if files else sorted(os.listdir('.'))
result = subprocess.call([self._compess] + self.ADD + [arch_name] +
files)
if result != 0:
sys.stderr.write("Unable to create archive `%s'\n" % arch_name)
return False
return True
class TarGzipArchive(TarArchive): class TarGzipArchive(TarArchive):
ADD = ['zcf'] ADD = ['zcf']

View File

@@ -7,7 +7,7 @@ from distutils.core import setup
setup(name='fs-uae-wrapper', setup(name='fs-uae-wrapper',
packages=['fs_uae_wrapper'], packages=['fs_uae_wrapper'],
version='0.4', version='0.6',
description='Automate archives and state for fs-uae', description='Automate archives and state for fs-uae',
author='Roman Dobosz', author='Roman Dobosz',
author_email='gryf73@gmail.com', author_email='gryf73@gmail.com',

View File

@@ -26,35 +26,43 @@ class TestArchive(TestCase):
except OSError: except OSError:
pass pass
def test_validate_options(self): @mock.patch('fs_uae_wrapper.path.which')
def test_validate_options(self, which):
which.return_value = 'unrar'
arch = archive.Archive('Config.fs-uae', utils.CmdOption(), {}) arch = archive.Archive('Config.fs-uae', utils.CmdOption(), {})
self.assertFalse(arch._validate_options()) self.assertFalse(arch._validate_options())
arch.all_options = {'wrapper': 'archive'}
arch.all_options['wrapper'] = 'archive' arch.all_options['wrapper'] = 'archive'
self.assertFalse(arch._validate_options()) self.assertFalse(arch._validate_options())
arch.all_options['wrapper_archive'] = 'fake.tgz' arch.all_options['wrapper_archive'] = 'rar'
self.assertFalse(arch._validate_options())
arch.all_options['wrapper_archiver'] = 'rar'
self.assertTrue(arch._validate_options()) self.assertTrue(arch._validate_options())
@mock.patch('tempfile.mkdtemp') @mock.patch('tempfile.mkdtemp')
@mock.patch('fs_uae_wrapper.path.which')
@mock.patch('fs_uae_wrapper.archive.Archive._make_archive') @mock.patch('fs_uae_wrapper.archive.Archive._make_archive')
@mock.patch('fs_uae_wrapper.base.Base._save_save')
@mock.patch('fs_uae_wrapper.base.Base._get_saves_dir')
@mock.patch('fs_uae_wrapper.base.Base._run_emulator') @mock.patch('fs_uae_wrapper.base.Base._run_emulator')
@mock.patch('fs_uae_wrapper.base.Base._kickstart_option') @mock.patch('fs_uae_wrapper.base.Base._kickstart_option')
@mock.patch('fs_uae_wrapper.base.Base._copy_conf') @mock.patch('fs_uae_wrapper.base.Base._copy_conf')
@mock.patch('fs_uae_wrapper.base.Base._load_save') @mock.patch('fs_uae_wrapper.base.Base._load_save')
@mock.patch('fs_uae_wrapper.base.Base._extract') @mock.patch('fs_uae_wrapper.base.Base._extract')
def test_run(self, extr, load, copy, kick, run, march, mkdtemp): def test_run(self, extract, load_save, copy_conf, kick_option,
run_emulator, get_save_dir, save_state, make_arch, which,
mkdtemp):
extr.return_value = False extract.return_value = False
load.return_value = False load_save.return_value = False
copy.return_value = False copy_conf.return_value = False
kick.return_value = False kick_option.return_value = False
run.return_value = False run_emulator.return_value = False
march.return_value = False get_save_dir.return_value = False
save_state.return_value = False
make_arch.return_value = False
which.return_value = 'rar'
arch = archive.Archive('Config.fs-uae', utils.CmdOption(), {}) arch = archive.Archive('Config.fs-uae', utils.CmdOption(), {})
self.assertFalse(arch.run()) self.assertFalse(arch.run())
@@ -65,23 +73,29 @@ class TestArchive(TestCase):
self.assertFalse(arch.run()) self.assertFalse(arch.run())
extr.return_value = True extract.return_value = True
self.assertFalse(arch.run()) self.assertFalse(arch.run())
load.return_value = True load_save.return_value = True
self.assertFalse(arch.run()) self.assertFalse(arch.run())
copy.return_value = True copy_conf.return_value = True
self.assertFalse(arch.run()) self.assertFalse(arch.run())
kick.return_value = {'foo': 'bar'} kick_option.return_value = {'foo': 'bar'}
self.assertFalse(arch.run()) self.assertFalse(arch.run())
self.assertDictEqual(arch.fsuae_options, {'foo': 'bar'}) self.assertDictEqual(arch.fsuae_options, {'foo': 'bar'})
run.return_value = True run_emulator.return_value = True
self.assertFalse(arch.run()) self.assertFalse(arch.run())
march.return_value = True get_save_dir.return_value = True
self.assertFalse(arch.run())
save_state.return_value = True
self.assertFalse(arch.run())
make_arch.return_value = True
self.assertTrue(arch.run()) self.assertTrue(arch.run())
@mock.patch('os.rename') @mock.patch('os.rename')

View File

@@ -146,21 +146,27 @@ class TestBase(TestCase):
@mock.patch('fs_uae_wrapper.utils.create_archive') @mock.patch('fs_uae_wrapper.utils.create_archive')
def test_save_save(self, carch, saves_dir): def test_save_save(self, carch, saves_dir):
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {}) os.chdir(self.confdir)
bobj = base.Base('myconf.fs-uae', utils.CmdOption(), {})
bobj.dir = self.dirname bobj.dir = self.dirname
bobj.save_filename = 'foobar_save.7z' bobj.save_filename = os.path.join(self.confdir, 'myconf_save.7z')
saves_dir.bobj.save_filenamereturn_value = None
saves_dir.return_value = None
carch.return_value = True carch.return_value = True
self.assertTrue(bobj._save_save()) self.assertTrue(bobj._save_save(),
'there is assumption, that wrapper_save_state is'
' false by default. Here it was true.')
bobj.all_options['wrapper_save_state'] = '1'
self.assertTrue(bobj._save_save(),
'unexpected save_state directory found')
saves_dir.return_value = bobj.save_filename saves_dir.return_value = bobj.save_filename
os.chdir(self.confdir)
with open(bobj.save_filename, 'w') as fobj: with open(bobj.save_filename, 'w') as fobj:
fobj.write('asd') fobj.write('asd')
self.assertTrue(bobj._save_save())
os.mkdir(os.path.join(self.dirname, 'fs-uae-save')) os.mkdir(os.path.join(self.dirname, 'fs-uae-save'))
self.assertTrue(bobj._save_save()) self.assertTrue(bobj._save_save())
@@ -175,6 +181,12 @@ class TestBase(TestCase):
bobj.save_filename = "foobar_save.7z" bobj.save_filename = "foobar_save.7z"
earch.return_value = 0 earch.return_value = 0
# By default there would be no save state persistence
self.assertTrue(bobj._load_save())
# set wrapper_save_state option, so we can proceed with test
bobj.all_options['wrapper_save_state'] = '1'
# fail to load save is not fatal # fail to load save is not fatal
self.assertTrue(bobj._load_save()) self.assertTrue(bobj._load_save())
@@ -218,6 +230,9 @@ class TestBase(TestCase):
os.mkdir(path) os.mkdir(path)
self.assertEqual(bobj._get_saves_dir(), 'saves') self.assertEqual(bobj._get_saves_dir(), 'saves')
bobj.all_options['save_states_dir'] = '$CONFIG/saves/'
self.assertEqual(bobj._get_saves_dir(), 'saves')
@mock.patch('fs_uae_wrapper.path.which') @mock.patch('fs_uae_wrapper.path.which')
def test_validate_options(self, which): def test_validate_options(self, which):
@@ -229,18 +244,31 @@ class TestBase(TestCase):
self.assertFalse(bobj._validate_options()) self.assertFalse(bobj._validate_options())
bobj.all_options = {'wrapper': 'dummy'} bobj.all_options = {'wrapper': 'dummy'}
self.assertFalse(bobj._validate_options()) self.assertTrue(bobj._validate_options())
bobj.all_options = {'wrapper': 'dummy', bobj.all_options = {'wrapper': 'dummy',
'wrapper_archiver': 'myarchiver'} 'wrapper_archiver': 'myarchiver'}
self.assertTrue(bobj._validate_options())
bobj.all_options = {'wrapper': 'dummy',
'wrapper_save_state': '1',
'wrapper_archiver': 'myarchiver'}
self.assertFalse(bobj._validate_options()) self.assertFalse(bobj._validate_options())
which.return_value = '7z' which.return_value = '7z'
bobj.all_options = {'wrapper': 'dummy', bobj.all_options = {'wrapper': 'dummy',
'wrapper_save_state': '1'}
self.assertFalse(bobj._validate_options())
bobj.all_options = {'wrapper': 'dummy',
'wrapper_save_state': '1',
'wrapper_archiver': '7z'} 'wrapper_archiver': '7z'}
self.assertTrue(bobj._validate_options()) self.assertTrue(bobj._validate_options())
def test_run_clean(self): @mock.patch('fs_uae_wrapper.path.which')
def test_run_clean(self, which):
which.return_value = 'rar'
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {}) bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
bobj.all_options = {} bobj.all_options = {}

View File

@@ -11,7 +11,10 @@ from fs_uae_wrapper import utils
class TestCD32(TestCase): class TestCD32(TestCase):
def test_validate_options(self): @mock.patch('fs_uae_wrapper.path.which')
def test_validate_options(self, which):
which.return_value = 'rar'
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {}) acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
self.assertFalse(acd32._validate_options()) self.assertFalse(acd32._validate_options())
@@ -20,26 +23,28 @@ class TestCD32(TestCase):
self.assertFalse(acd32._validate_options()) self.assertFalse(acd32._validate_options())
acd32.all_options['wrapper_archive'] = 'fake.tgz' acd32.all_options['wrapper_archive'] = 'fake.tgz'
self.assertFalse(acd32._validate_options())
acd32.all_options['wrapper_archiver'] = 'rar'
self.assertTrue(acd32._validate_options()) self.assertTrue(acd32._validate_options())
@mock.patch('tempfile.mkdtemp') @mock.patch('tempfile.mkdtemp')
@mock.patch('fs_uae_wrapper.path.which')
@mock.patch('fs_uae_wrapper.base.Base._save_save') @mock.patch('fs_uae_wrapper.base.Base._save_save')
@mock.patch('fs_uae_wrapper.base.Base._get_saves_dir')
@mock.patch('fs_uae_wrapper.base.Base._run_emulator') @mock.patch('fs_uae_wrapper.base.Base._run_emulator')
@mock.patch('fs_uae_wrapper.base.Base._kickstart_option') @mock.patch('fs_uae_wrapper.base.Base._kickstart_option')
@mock.patch('fs_uae_wrapper.base.Base._load_save')
@mock.patch('fs_uae_wrapper.base.Base._copy_conf') @mock.patch('fs_uae_wrapper.base.Base._copy_conf')
@mock.patch('fs_uae_wrapper.base.Base._load_save')
@mock.patch('fs_uae_wrapper.base.Base._extract') @mock.patch('fs_uae_wrapper.base.Base._extract')
def test_run(self, extr, cconf, lsave, kick, runemul, ssave, mkdtemp): def test_run(self, extract, load_save, copy_conf, kick_option,
run_emulator, get_save_dir, save_state, which, mkdtemp):
extr.return_value = False extract.return_value = False
cconf.return_value = False copy_conf.return_value = False
lsave.return_value = False load_save.return_value = False
kick.return_value = {} kick_option.return_value = {}
runemul.return_value = False run_emulator.return_value = False
ssave.return_value = False get_save_dir.return_value = False
save_state.return_value = False
which.return_value = 'unrar'
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {}) acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
self.assertFalse(acd32.run()) self.assertFalse(acd32.run())
@@ -50,21 +55,24 @@ class TestCD32(TestCase):
self.assertFalse(acd32.run()) self.assertFalse(acd32.run())
extr.return_value = True extract.return_value = True
self.assertFalse(acd32.run()) self.assertFalse(acd32.run())
cconf.return_value = True copy_conf.return_value = True
self.assertFalse(acd32.run()) self.assertFalse(acd32.run())
lsave.return_value = True load_save.return_value = True
self.assertTrue(acd32.run()) self.assertFalse(acd32.run())
kick.return_value = {'foo': 'bar'} kick_option.return_value = {'foo': 'bar'}
self.assertTrue(acd32.run()) self.assertFalse(acd32.run())
self.assertDictEqual(acd32.fsuae_options, {'foo': 'bar'}) self.assertDictEqual(acd32.fsuae_options, {'foo': 'bar'})
runemul.return_value = True run_emulator.return_value = True
self.assertTrue(acd32.run())
get_save_dir.return_value = True
self.assertFalse(acd32.run()) self.assertFalse(acd32.run())
ssave.return_value = True save_state.return_value = True
self.assertTrue(acd32.run()) self.assertTrue(acd32.run())

View File

@@ -60,61 +60,73 @@ class TestArchive(TestCase):
self.assertFalse(arch.extract('foo')) self.assertFalse(arch.extract('foo'))
call.assert_called_once_with(['false', 'x', 'foo']) call.assert_called_once_with(['false', 'x', 'foo'])
@mock.patch('os.path.exists')
@mock.patch('fs_uae_wrapper.path.which') @mock.patch('fs_uae_wrapper.path.which')
@mock.patch('subprocess.call') @mock.patch('subprocess.call')
def test_tar(self, call, which): def test_tar(self, call, which, exists):
with open('foo', 'w') as fobj: with open('foo', 'w') as fobj:
fobj.write('\n') fobj.write('\n')
which.return_value = 'tar' which.return_value = 'tar'
exists.return_value = True
arch = file_archive.TarArchive() arch = file_archive.TarArchive()
arch.archiver = 'tar' arch.archiver = 'tar'
call.return_value = 0 call.return_value = 0
self.assertTrue(arch.create('foo')) self.assertTrue(arch.create('foo.tar'))
call.assert_called_once_with(['tar', 'cf', 'foo', '.']) call.assert_called_once_with(['tar', 'cf', 'foo.tar', 'foo'])
call.reset_mock() call.reset_mock()
call.return_value = 1 call.return_value = 1
self.assertFalse(arch.extract('foo')) self.assertFalse(arch.extract('foo.tar'))
call.assert_called_once_with(['tar', 'xf', 'foo']) call.assert_called_once_with(['tar', 'xf', 'foo.tar'])
call.reset_mock() call.reset_mock()
arch = file_archive.TarGzipArchive() arch = file_archive.TarGzipArchive()
arch.archiver = 'tar' arch.archiver = 'tar'
call.return_value = 0 call.return_value = 0
self.assertTrue(arch.create('foo')) self.assertTrue(arch.create('foo.tgz'))
call.assert_called_once_with(['tar', 'zcf', 'foo', '.']) call.assert_called_once_with(['tar', 'zcf', 'foo.tgz', 'foo'])
call.reset_mock() call.reset_mock()
call.return_value = 1 call.return_value = 1
self.assertFalse(arch.extract('foo')) self.assertFalse(arch.extract('foo.tgz'))
call.assert_called_once_with(['tar', 'xf', 'foo']) call.assert_called_once_with(['tar', 'xf', 'foo.tgz'])
call.reset_mock() call.reset_mock()
arch = file_archive.TarBzip2Archive() arch = file_archive.TarBzip2Archive()
arch.archiver = 'tar' arch.archiver = 'tar'
call.return_value = 0 call.return_value = 0
self.assertTrue(arch.create('foo')) self.assertTrue(arch.create('foo.tar.bz2'))
call.assert_called_once_with(['tar', 'jcf', 'foo', '.']) call.assert_called_once_with(['tar', 'jcf', 'foo.tar.bz2', 'foo'])
call.reset_mock() call.reset_mock()
call.return_value = 1 call.return_value = 1
self.assertFalse(arch.extract('foo')) self.assertFalse(arch.extract('foo.tar.bz2'))
call.assert_called_once_with(['tar', 'xf', 'foo']) call.assert_called_once_with(['tar', 'xf', 'foo.tar.bz2'])
call.reset_mock() call.reset_mock()
arch = file_archive.TarXzArchive() arch = file_archive.TarXzArchive()
arch.archiver = 'tar' arch.archiver = 'tar'
call.return_value = 0 call.return_value = 0
self.assertTrue(arch.create('foo')) self.assertTrue(arch.create('foo.tar.xz'))
call.assert_called_once_with(['tar', 'Jcf', 'foo', '.']) call.assert_called_once_with(['tar', 'Jcf', 'foo.tar.xz', 'foo'])
call.reset_mock() call.reset_mock()
call.return_value = 1 call.return_value = 1
self.assertFalse(arch.extract('foo')) self.assertFalse(arch.extract('foo.tar.xz'))
call.assert_called_once_with(['tar', 'xf', 'foo']) call.assert_called_once_with(['tar', 'xf', 'foo.tar.xz'])
with open('bar', 'w') as fobj:
fobj.write('\n')
call.reset_mock()
arch = file_archive.TarGzipArchive()
arch.archiver = 'tar'
call.return_value = 0
self.assertTrue(arch.create('foo.tgz'))
call.assert_called_once_with(['tar', 'zcf', 'foo.tgz', 'bar', 'foo'])
@mock.patch('fs_uae_wrapper.path.which') @mock.patch('fs_uae_wrapper.path.which')
@mock.patch('subprocess.call') @mock.patch('subprocess.call')