mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-19 12:28:12 +01:00
Added test for base wrapper class
Moved most tests from cd32 module to base one. Added missing tests for cd32 module.
This commit is contained in:
@@ -177,7 +177,7 @@ class Base(object):
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
save_path = os.path.join(self.dir, save)
|
save_path = os.path.join(self.dir, save)
|
||||||
if not os.path.exists(save_path):
|
if not os.path.exists(save_path) or not os.path.isdir(save_path):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return save_path
|
return save_path
|
||||||
@@ -188,3 +188,4 @@ class Base(object):
|
|||||||
sys.stderr.write("Configuration lacks of required "
|
sys.stderr.write("Configuration lacks of required "
|
||||||
"`wrapper' option.\n")
|
"`wrapper' option.\n")
|
||||||
return False
|
return False
|
||||||
|
return True
|
||||||
|
|||||||
@@ -54,11 +54,6 @@ class CD32(base.Base):
|
|||||||
def _validate_options(self):
|
def _validate_options(self):
|
||||||
validation_result = super(CD32, self)._validate_options()
|
validation_result = super(CD32, self)._validate_options()
|
||||||
|
|
||||||
validation_result = True
|
|
||||||
|
|
||||||
if not super(CD32, 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")
|
||||||
|
|||||||
241
tests/test_base.py
Normal file
241
tests/test_base.py
Normal file
@@ -0,0 +1,241 @@
|
|||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import shutil
|
||||||
|
from tempfile import mkstemp, mkdtemp
|
||||||
|
from unittest import TestCase
|
||||||
|
|
||||||
|
try:
|
||||||
|
from unittest import mock
|
||||||
|
except ImportError:
|
||||||
|
import mock
|
||||||
|
|
||||||
|
from fs_uae_wrapper import base
|
||||||
|
from fs_uae_wrapper import utils
|
||||||
|
|
||||||
|
|
||||||
|
class TestBase(TestCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
fd, self.fname = mkstemp()
|
||||||
|
self.dirname = mkdtemp()
|
||||||
|
self.confdir = mkdtemp()
|
||||||
|
os.close(fd)
|
||||||
|
self._argv = sys.argv[:]
|
||||||
|
sys.argv = ['fs-uae-wrapper']
|
||||||
|
self.curdir = os.path.abspath(os.curdir)
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
os.chdir(self.curdir)
|
||||||
|
try:
|
||||||
|
shutil.rmtree(self.dirname)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
shutil.rmtree(self.confdir)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
os.unlink(self.fname)
|
||||||
|
sys.argv = self._argv[:]
|
||||||
|
|
||||||
|
def test_clean(self):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.clean()
|
||||||
|
self.assertTrue(os.path.exists(self.dirname))
|
||||||
|
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
bobj.clean()
|
||||||
|
self.assertFalse(os.path.exists(self.dirname))
|
||||||
|
|
||||||
|
@mock.patch('fs_uae_wrapper.utils.get_config')
|
||||||
|
def test_kickstart_option(self, get_config):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
get_config.return_value = {'foo': 'bar'}
|
||||||
|
self.assertDictEqual(bobj._kickstart_option(), {})
|
||||||
|
|
||||||
|
get_config.return_value = {'kickstarts_dir': '/some/path'}
|
||||||
|
self.assertDictEqual(bobj._kickstart_option(),
|
||||||
|
{'kickstarts_dir': '/some/path'})
|
||||||
|
|
||||||
|
os.chdir(self.dirname)
|
||||||
|
get_config.return_value = {'kickstarts_dir': '../some/path'}
|
||||||
|
result = os.path.abspath(os.path.join(self.dirname, '../some/path'))
|
||||||
|
self.assertDictEqual(bobj._kickstart_option(),
|
||||||
|
{'kickstarts_dir': result})
|
||||||
|
|
||||||
|
bobj.conf_file = os.path.join(self.dirname, 'Config.fs-uae')
|
||||||
|
get_config.return_value = {'kickstarts_dir': '$CONFIG/../path'}
|
||||||
|
result = os.path.abspath(os.path.join(self.dirname, '../path'))
|
||||||
|
self.assertDictEqual(bobj._kickstart_option(),
|
||||||
|
{'kickstarts_dir': result})
|
||||||
|
|
||||||
|
def test_set_assets_paths(self):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
os.chdir(self.dirname)
|
||||||
|
bobj.conf_file = 'Config.fs-uae'
|
||||||
|
bobj.all_options = {'wrapper_archive': 'foo.7z'}
|
||||||
|
|
||||||
|
bobj._set_assets_paths()
|
||||||
|
full_path = os.path.join(self.dirname, 'Config_save.7z')
|
||||||
|
self.assertEqual(bobj.save_filename, full_path)
|
||||||
|
|
||||||
|
bobj.all_options = {'wrapper_archive': '/home/user/foo.7z'}
|
||||||
|
|
||||||
|
bobj._set_assets_paths()
|
||||||
|
full_path = os.path.join(self.dirname, 'Config_save.7z')
|
||||||
|
self.assertEqual(bobj.save_filename, full_path)
|
||||||
|
|
||||||
|
def test_copy_conf(self):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.conf_file = self.fname
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
|
||||||
|
self.assertTrue(bobj._copy_conf())
|
||||||
|
self.assertTrue(os.path.exists(os.path.join(self.dirname,
|
||||||
|
'Config.fs-uae')))
|
||||||
|
|
||||||
|
@mock.patch('fs_uae_wrapper.utils.extract_archive')
|
||||||
|
def test_extract(self, utils_extract):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.arch_filepath = self.fname
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
|
||||||
|
utils_extract.return_value = False
|
||||||
|
|
||||||
|
# message for the gui is taken from title in fs-uae conf or, if there
|
||||||
|
# is no such entry, use archive name, which is mandatory to provide
|
||||||
|
bobj.all_options = {'title': 'foo_game', 'wrapper_gui_msg': '1'}
|
||||||
|
self.assertFalse(bobj._extract())
|
||||||
|
utils_extract.assert_called_once_with(self.fname, 'foo_game')
|
||||||
|
|
||||||
|
utils_extract.reset_mock()
|
||||||
|
bobj.all_options = {'wrapper_archive': 'arch.tar',
|
||||||
|
'wrapper_gui_msg': '1'}
|
||||||
|
self.assertFalse(bobj._extract())
|
||||||
|
utils_extract.assert_called_once_with(self.fname, 'arch.tar')
|
||||||
|
|
||||||
|
# lets pretend, the extracting has failed
|
||||||
|
utils_extract.reset_mock()
|
||||||
|
bobj.all_options = {'wrapper_gui_msg': '0'}
|
||||||
|
utils_extract.return_value = False
|
||||||
|
self.assertFalse(bobj._extract())
|
||||||
|
utils_extract.assert_called_once_with(self.fname, '')
|
||||||
|
|
||||||
|
@mock.patch('fs_uae_wrapper.utils.run_command')
|
||||||
|
def test_run_emulator(self, run):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
|
||||||
|
self.assertTrue(bobj._run_emulator([]))
|
||||||
|
run.assert_called_once_with(['fs-uae'])
|
||||||
|
|
||||||
|
# Errors from emulator are not fatal to wrappers
|
||||||
|
run.reset_mock()
|
||||||
|
run.return_value = False
|
||||||
|
self.assertTrue(bobj._run_emulator([]))
|
||||||
|
run.assert_called_once_with(['fs-uae'])
|
||||||
|
|
||||||
|
@mock.patch('fs_uae_wrapper.base.Base._get_saves_dir')
|
||||||
|
@mock.patch('fs_uae_wrapper.utils.run_command')
|
||||||
|
def test_save_save(self, run, saves_dir):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
bobj.save_filename = 'foobar_save.7z'
|
||||||
|
saves_dir.bobj.save_filenamereturn_value = None
|
||||||
|
run.return_value = True
|
||||||
|
|
||||||
|
self.assertTrue(bobj._save_save())
|
||||||
|
|
||||||
|
saves_dir.return_value = bobj.save_filename
|
||||||
|
os.chdir(self.confdir)
|
||||||
|
with open(bobj.save_filename, 'w') as fobj:
|
||||||
|
fobj.write('asd')
|
||||||
|
|
||||||
|
self.assertTrue(bobj._save_save())
|
||||||
|
|
||||||
|
os.mkdir(os.path.join(self.dirname, 'fs-uae-save'))
|
||||||
|
self.assertTrue(bobj._save_save())
|
||||||
|
|
||||||
|
run.return_value = False
|
||||||
|
self.assertFalse(bobj._save_save())
|
||||||
|
|
||||||
|
@mock.patch('fs_uae_wrapper.utils.run_command')
|
||||||
|
def test_load_save(self, run):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
bobj.save_filename = "foobar_save.7z"
|
||||||
|
run.return_value = 0
|
||||||
|
|
||||||
|
# fail to load save is not fatal
|
||||||
|
self.assertTrue(bobj._load_save())
|
||||||
|
|
||||||
|
os.chdir(self.confdir)
|
||||||
|
with open(bobj.save_filename, 'w') as fobj:
|
||||||
|
fobj.write('asd')
|
||||||
|
|
||||||
|
self.assertTrue(bobj._load_save())
|
||||||
|
run.assert_called_once_with(['7z', 'x', bobj.save_filename])
|
||||||
|
|
||||||
|
# failure in searching for archiver are also non fatal
|
||||||
|
run.reset_mock()
|
||||||
|
run.return_value = 1
|
||||||
|
self.assertTrue(bobj._save_save())
|
||||||
|
|
||||||
|
def test_get_saves_dir(self):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.dir = self.dirname
|
||||||
|
|
||||||
|
self.assertIsNone(bobj._get_saves_dir())
|
||||||
|
|
||||||
|
bobj.all_options['save_states_dir'] = '/some/path'
|
||||||
|
self.assertIsNone(bobj._get_saves_dir())
|
||||||
|
|
||||||
|
bobj.all_options['save_states_dir'] = '$CONFIG/../saves'
|
||||||
|
self.assertIsNone(bobj._get_saves_dir())
|
||||||
|
|
||||||
|
bobj.all_options['save_states_dir'] = '/foo/$CONFIG/saves'
|
||||||
|
self.assertIsNone(bobj._get_saves_dir())
|
||||||
|
|
||||||
|
bobj.all_options['save_states_dir'] = '$CONFIG/saves'
|
||||||
|
self.assertIsNone(bobj._get_saves_dir())
|
||||||
|
|
||||||
|
path = os.path.join(self.dirname, 'saves')
|
||||||
|
with open(path, 'w') as fobj:
|
||||||
|
fobj.write('\n')
|
||||||
|
self.assertIsNone(bobj._get_saves_dir())
|
||||||
|
|
||||||
|
os.unlink(path)
|
||||||
|
os.mkdir(path)
|
||||||
|
self.assertEqual(bobj._get_saves_dir(), path)
|
||||||
|
|
||||||
|
def test_validate_options(self):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.all_options = {}
|
||||||
|
|
||||||
|
self.assertFalse(bobj._validate_options())
|
||||||
|
|
||||||
|
bobj.all_options = {'wrapper': 'dummy'}
|
||||||
|
self.assertTrue(bobj._validate_options())
|
||||||
|
|
||||||
|
def test_run_clean(self):
|
||||||
|
|
||||||
|
bobj = base.Base('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
bobj.all_options = {}
|
||||||
|
|
||||||
|
self.assertFalse(bobj.run())
|
||||||
|
|
||||||
|
bobj.all_options = {'wrapper': 'dummy'}
|
||||||
|
try:
|
||||||
|
self.assertTrue(bobj.run())
|
||||||
|
self.assertTrue(os.path.exists(bobj.dir))
|
||||||
|
finally:
|
||||||
|
bobj.clean()
|
||||||
@@ -37,154 +37,58 @@ class TestCD32(TestCase):
|
|||||||
os.unlink(self.fname)
|
os.unlink(self.fname)
|
||||||
sys.argv = self._argv[:]
|
sys.argv = self._argv[:]
|
||||||
|
|
||||||
def test_clean(self):
|
def test_validate_options(self):
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
self.assertFalse(acd32._validate_options())
|
||||||
|
|
||||||
|
acd32.all_options['wrapper'] = 'cd32'
|
||||||
|
self.assertFalse(acd32._validate_options())
|
||||||
|
|
||||||
|
acd32.all_options['wrapper_archive'] = 'fake.tgz'
|
||||||
|
self.assertTrue(acd32._validate_options())
|
||||||
|
|
||||||
|
@mock.patch('fs_uae_wrapper.base.Base._save_save')
|
||||||
|
@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._load_save')
|
||||||
|
@mock.patch('fs_uae_wrapper.base.Base._copy_conf')
|
||||||
|
@mock.patch('fs_uae_wrapper.base.Base._extract')
|
||||||
|
def test_run(self, extr, cconf, lsave, kick, runemul, ssave):
|
||||||
|
|
||||||
|
extr.return_value = False
|
||||||
|
cconf.return_value = False
|
||||||
|
lsave.return_value = False
|
||||||
|
kick.return_value = {}
|
||||||
|
runemul.return_value = False
|
||||||
|
ssave.return_value = False
|
||||||
|
|
||||||
|
try:
|
||||||
|
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
||||||
|
self.assertFalse(acd32.run())
|
||||||
|
|
||||||
|
acd32.all_options = {'wrapper': 'cd32',
|
||||||
|
'wrapper_archive': 'fake.tgz'}
|
||||||
|
|
||||||
|
self.assertFalse(acd32.run())
|
||||||
|
|
||||||
|
extr.return_value = True
|
||||||
|
self.assertFalse(acd32.run())
|
||||||
|
|
||||||
|
cconf.return_value = True
|
||||||
|
self.assertFalse(acd32.run())
|
||||||
|
|
||||||
|
lsave.return_value = True
|
||||||
|
self.assertTrue(acd32.run())
|
||||||
|
|
||||||
|
kick.return_value = {'foo': 'bar'}
|
||||||
|
self.assertTrue(acd32.run())
|
||||||
|
self.assertDictEqual(acd32.fsuae_options, {'foo': 'bar'})
|
||||||
|
|
||||||
|
runemul.return_value = True
|
||||||
|
self.assertFalse(acd32.run())
|
||||||
|
|
||||||
|
ssave.return_value = True
|
||||||
|
self.assertTrue(acd32.run())
|
||||||
|
finally:
|
||||||
acd32.clean()
|
acd32.clean()
|
||||||
self.assertTrue(os.path.exists(self.dirname))
|
|
||||||
|
|
||||||
acd32.dir = self.dirname
|
|
||||||
acd32.clean()
|
|
||||||
self.assertFalse(os.path.exists(self.dirname))
|
|
||||||
|
|
||||||
@mock.patch('fs_uae_wrapper.utils.get_config')
|
|
||||||
def test_kickstart_option(self, get_config):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
get_config.return_value = {'foo': 'bar'}
|
|
||||||
self.assertDictEqual(acd32._kickstart_option(), {})
|
|
||||||
|
|
||||||
get_config.return_value = {'kickstarts_dir': '/some/path'}
|
|
||||||
self.assertDictEqual(acd32._kickstart_option(),
|
|
||||||
{'kickstarts_dir': '/some/path'})
|
|
||||||
|
|
||||||
os.chdir(self.dirname)
|
|
||||||
get_config.return_value = {'kickstarts_dir': '../some/path'}
|
|
||||||
result = os.path.abspath(os.path.join(self.dirname, '../some/path'))
|
|
||||||
self.assertDictEqual(acd32._kickstart_option(),
|
|
||||||
{'kickstarts_dir': result})
|
|
||||||
|
|
||||||
acd32.conf_file = os.path.join(self.dirname, 'Config.fs-uae')
|
|
||||||
get_config.return_value = {'kickstarts_dir': '$CONFIG/../path'}
|
|
||||||
result = os.path.abspath(os.path.join(self.dirname, '../path'))
|
|
||||||
self.assertDictEqual(acd32._kickstart_option(),
|
|
||||||
{'kickstarts_dir': result})
|
|
||||||
|
|
||||||
def test_set_assets_paths(self):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
os.chdir(self.dirname)
|
|
||||||
acd32.conf_file = 'Config.fs-uae'
|
|
||||||
acd32.all_options = {'wrapper_archive': 'foo.7z'}
|
|
||||||
|
|
||||||
acd32._set_assets_paths()
|
|
||||||
full_path = os.path.join(self.dirname, 'Config_save.7z')
|
|
||||||
self.assertEqual(acd32.save_filename, full_path)
|
|
||||||
|
|
||||||
acd32.all_options = {'wrapper_archive': '/home/user/foo.7z'}
|
|
||||||
|
|
||||||
acd32._set_assets_paths()
|
|
||||||
full_path = os.path.join(self.dirname, 'Config_save.7z')
|
|
||||||
self.assertEqual(acd32.save_filename, full_path)
|
|
||||||
|
|
||||||
def test_copy_conf(self):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
acd32.conf_file = self.fname
|
|
||||||
acd32.dir = self.dirname
|
|
||||||
|
|
||||||
self.assertTrue(acd32._copy_conf())
|
|
||||||
self.assertTrue(os.path.exists(os.path.join(self.dirname,
|
|
||||||
'Config.fs-uae')))
|
|
||||||
|
|
||||||
@mock.patch('fs_uae_wrapper.utils.extract_archive')
|
|
||||||
def test_extract(self, utils_extract):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
acd32.arch_filepath = self.fname
|
|
||||||
acd32.dir = self.dirname
|
|
||||||
|
|
||||||
utils_extract.return_value = False
|
|
||||||
|
|
||||||
# message for the gui is taken from title in fs-uae conf or, if there
|
|
||||||
# is no such entry, use archive name, which is mandatory to provide
|
|
||||||
acd32.all_options = {'title': 'foo_game',
|
|
||||||
'wrapper_gui_msg': '1'}
|
|
||||||
self.assertFalse(acd32._extract())
|
|
||||||
utils_extract.assert_called_once_with(self.fname, 'foo_game')
|
|
||||||
|
|
||||||
utils_extract.reset_mock()
|
|
||||||
acd32.all_options = {'wrapper_archive': 'arch.tar',
|
|
||||||
'wrapper_gui_msg': '1'}
|
|
||||||
self.assertFalse(acd32._extract())
|
|
||||||
utils_extract.assert_called_once_with(self.fname, 'arch.tar')
|
|
||||||
|
|
||||||
# lets pretend, the extracting has failed
|
|
||||||
utils_extract.reset_mock()
|
|
||||||
acd32.all_options = {'wrapper_gui_msg': '0'}
|
|
||||||
utils_extract.return_value = False
|
|
||||||
self.assertFalse(acd32._extract())
|
|
||||||
utils_extract.assert_called_once_with(self.fname, '')
|
|
||||||
|
|
||||||
@mock.patch('fs_uae_wrapper.utils.run_command')
|
|
||||||
def test_run_emulator(self, run):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
acd32.dir = self.dirname
|
|
||||||
|
|
||||||
self.assertTrue(acd32._run_emulator([]))
|
|
||||||
run.assert_called_once_with(['fs-uae'])
|
|
||||||
|
|
||||||
# Errors from emulator are not fatal to wrappers
|
|
||||||
run.reset_mock()
|
|
||||||
run.return_value = False
|
|
||||||
self.assertTrue(acd32._run_emulator([]))
|
|
||||||
run.assert_called_once_with(['fs-uae'])
|
|
||||||
|
|
||||||
@mock.patch('fs_uae_wrapper.base.Base._get_saves_dir')
|
|
||||||
@mock.patch('fs_uae_wrapper.utils.run_command')
|
|
||||||
def test_save_save(self, run, saves_dir):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
acd32.dir = self.dirname
|
|
||||||
acd32.save_filename = 'foobar_save.7z'
|
|
||||||
saves_dir.acd32.save_filenamereturn_value = None
|
|
||||||
run.return_value = True
|
|
||||||
|
|
||||||
self.assertTrue(acd32._save_save())
|
|
||||||
|
|
||||||
saves_dir.return_value = acd32.save_filename
|
|
||||||
os.chdir(self.confdir)
|
|
||||||
with open(acd32.save_filename, 'w') as fobj:
|
|
||||||
fobj.write('asd')
|
|
||||||
|
|
||||||
self.assertTrue(acd32._save_save())
|
|
||||||
|
|
||||||
os.mkdir(os.path.join(self.dirname, 'fs-uae-save'))
|
|
||||||
self.assertTrue(acd32._save_save())
|
|
||||||
|
|
||||||
run.return_value = False
|
|
||||||
self.assertFalse(acd32._save_save())
|
|
||||||
|
|
||||||
@mock.patch('fs_uae_wrapper.utils.run_command')
|
|
||||||
def test_load_save(self, run):
|
|
||||||
|
|
||||||
acd32 = cd32.CD32('Config.fs-uae', utils.CmdOption(), {})
|
|
||||||
acd32.dir = self.dirname
|
|
||||||
acd32.save_filename = "foobar_save.7z"
|
|
||||||
run.return_value = 0
|
|
||||||
|
|
||||||
# fail to load save is not fatal
|
|
||||||
self.assertTrue(acd32._load_save())
|
|
||||||
|
|
||||||
os.chdir(self.confdir)
|
|
||||||
with open(acd32.save_filename, 'w') as fobj:
|
|
||||||
fobj.write('asd')
|
|
||||||
|
|
||||||
self.assertTrue(acd32._load_save())
|
|
||||||
run.assert_called_once_with(['7z', 'x', acd32.save_filename])
|
|
||||||
|
|
||||||
# failure in searching for archiver are also non fatal
|
|
||||||
run.reset_mock()
|
|
||||||
run.return_value = 1
|
|
||||||
self.assertTrue(acd32._save_save())
|
|
||||||
|
|||||||
Reference in New Issue
Block a user