|
@@ -0,0 +1,77 @@
|
|
|
+from collections import OrderedDict
|
|
|
+
|
|
|
+from flexmock import flexmock
|
|
|
+
|
|
|
+from borgmatic.borg import info as module
|
|
|
+from borgmatic.verbosity import VERBOSITY_SOME, VERBOSITY_LOTS
|
|
|
+
|
|
|
+
|
|
|
+def insert_subprocess_mock(check_call_command, **kwargs):
|
|
|
+ subprocess = flexmock(module.subprocess)
|
|
|
+ subprocess.should_receive('check_call').with_args(check_call_command, **kwargs).once()
|
|
|
+
|
|
|
+
|
|
|
+INFO_COMMAND = ('borg', 'info', 'repo')
|
|
|
+
|
|
|
+
|
|
|
+def test_display_archives_info_calls_borg_with_parameters():
|
|
|
+ insert_subprocess_mock(INFO_COMMAND)
|
|
|
+
|
|
|
+ module.display_archives_info(
|
|
|
+ verbosity=None,
|
|
|
+ repository='repo',
|
|
|
+ storage_config={},
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def test_display_archives_info_with_verbosity_some_calls_borg_with_info_parameter():
|
|
|
+ insert_subprocess_mock(INFO_COMMAND + ('--info',))
|
|
|
+
|
|
|
+ module.display_archives_info(
|
|
|
+ repository='repo',
|
|
|
+ storage_config={},
|
|
|
+ verbosity=VERBOSITY_SOME,
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def test_display_archives_info_with_verbosity_lots_calls_borg_with_debug_parameter():
|
|
|
+ insert_subprocess_mock(INFO_COMMAND + ('--debug',))
|
|
|
+
|
|
|
+ module.display_archives_info(
|
|
|
+ repository='repo',
|
|
|
+ storage_config={},
|
|
|
+ verbosity=VERBOSITY_LOTS,
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def test_display_archives_info_with_local_path_calls_borg_via_local_path():
|
|
|
+ insert_subprocess_mock(('borg1',) + INFO_COMMAND[1:])
|
|
|
+
|
|
|
+ module.display_archives_info(
|
|
|
+ verbosity=None,
|
|
|
+ repository='repo',
|
|
|
+ storage_config={},
|
|
|
+ local_path='borg1',
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def test_display_archives_info_with_remote_path_calls_borg_with_remote_path_parameters():
|
|
|
+ insert_subprocess_mock(INFO_COMMAND + ('--remote-path', 'borg1'))
|
|
|
+
|
|
|
+ module.display_archives_info(
|
|
|
+ verbosity=None,
|
|
|
+ repository='repo',
|
|
|
+ storage_config={},
|
|
|
+ remote_path='borg1',
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def test_display_archives_info_with_lock_wait_calls_borg_with_lock_wait_parameters():
|
|
|
+ storage_config = {'lock_wait': 5}
|
|
|
+ insert_subprocess_mock(INFO_COMMAND + ('--lock-wait', '5'))
|
|
|
+
|
|
|
+ module.display_archives_info(
|
|
|
+ verbosity=None,
|
|
|
+ repository='repo',
|
|
|
+ storage_config=storage_config,
|
|
|
+ )
|