2023-01-26 08:31:07 +01:00
|
|
|
from flexmock import flexmock
|
|
|
|
|
|
|
|
from borgmatic.actions import rlist as module
|
|
|
|
|
|
|
|
|
|
|
|
def test_run_rlist_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('list_repository')
|
2023-12-20 18:17:41 +01:00
|
|
|
rlist_arguments = flexmock(repository=flexmock(), json=False)
|
2023-01-26 08:31:07 +01:00
|
|
|
|
|
|
|
list(
|
|
|
|
module.run_rlist(
|
2023-03-24 20:34:57 +01:00
|
|
|
repository={'path': 'repo'},
|
2023-07-09 08:14:30 +02:00
|
|
|
config={},
|
2023-01-26 08:31:07 +01:00
|
|
|
local_borg_version=None,
|
|
|
|
rlist_arguments=rlist_arguments,
|
2023-05-09 08:00:49 +02:00
|
|
|
global_arguments=flexmock(),
|
2023-01-26 08:31:07 +01:00
|
|
|
local_path=None,
|
|
|
|
remote_path=None,
|
|
|
|
)
|
|
|
|
)
|
2023-12-20 18:17:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_run_rlist_produces_json():
|
|
|
|
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('list_repository').and_return(flexmock())
|
|
|
|
parsed_json = flexmock()
|
|
|
|
flexmock(module.borgmatic.actions.json).should_receive('parse_json').and_return(parsed_json)
|
|
|
|
rlist_arguments = flexmock(repository=flexmock(), json=True)
|
|
|
|
|
|
|
|
assert list(
|
|
|
|
module.run_rlist(
|
|
|
|
repository={'path': 'repo'},
|
|
|
|
config={},
|
|
|
|
local_borg_version=None,
|
|
|
|
rlist_arguments=rlist_arguments,
|
|
|
|
global_arguments=flexmock(),
|
|
|
|
local_path=None,
|
|
|
|
remote_path=None,
|
|
|
|
)
|
|
|
|
) == [parsed_json]
|