28 lines
984 B
Python
28 lines
984 B
Python
from flexmock import flexmock
|
|
|
|
from borgmatic.actions import list as module
|
|
|
|
|
|
def test_run_list_does_not_raise():
|
|
flexmock(module.logger).answer = lambda message: None
|
|
flexmock(module.borgmatic.config.validate).should_receive('repositories_match').and_return(True)
|
|
flexmock(module.borgmatic.borg.rlist).should_receive('resolve_archive_name').and_return(
|
|
flexmock()
|
|
)
|
|
flexmock(module.borgmatic.actions.arguments).should_receive('update_arguments').and_return(
|
|
flexmock()
|
|
)
|
|
flexmock(module.borgmatic.borg.list).should_receive('list_archive')
|
|
list_arguments = flexmock(repository=flexmock(), archive=flexmock(), json=flexmock())
|
|
|
|
list(
|
|
module.run_list(
|
|
repository={'path': 'repo'},
|
|
config={},
|
|
local_borg_version=None,
|
|
list_arguments=list_arguments,
|
|
global_arguments=flexmock(log_json=False),
|
|
local_path=None,
|
|
remote_path=None,
|
|
)
|
|
)
|