| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- from flexmock import flexmock
- from borgmatic.actions import check as module
- def test_run_check_calls_hooks_for_configured_repository():
- flexmock(module.logger).answer = lambda message: None
- flexmock(module.borgmatic.config.checks).should_receive(
- 'repository_enabled_for_checks'
- ).and_return(True)
- flexmock(module.borgmatic.borg.check).should_receive('check_archives')
- flexmock(module.borgmatic.hooks.command).should_receive('execute_hook').times(2)
- check_arguments = flexmock(
- repository=None, progress=flexmock(), repair=flexmock(), only=flexmock(), force=flexmock()
- )
- global_arguments = flexmock(monitoring_verbosity=1, dry_run=False)
- module.run_check(
- config_filename='test.yaml',
- repository='repo',
- location={'repositories': ['repo']},
- storage={},
- consistency={},
- hooks={},
- hook_context={},
- local_borg_version=None,
- check_arguments=check_arguments,
- global_arguments=global_arguments,
- local_path=None,
- remote_path=None,
- )
- def test_run_check_runs_with_select_repository():
- flexmock(module.logger).answer = lambda message: None
- flexmock(module.borgmatic.config.validate).should_receive('repositories_match').and_return(True)
- flexmock(module.borgmatic.borg.check).should_receive('check_archives')
- check_arguments = flexmock(
- repository='repo', progress=flexmock(), repair=flexmock(), only=flexmock(), force=flexmock()
- )
- global_arguments = flexmock(monitoring_verbosity=1, dry_run=False)
- module.run_check(
- config_filename='test.yaml',
- repository='repo',
- location={'repositories': ['repo']},
- storage={},
- consistency={},
- hooks={},
- hook_context={},
- local_borg_version=None,
- check_arguments=check_arguments,
- global_arguments=global_arguments,
- local_path=None,
- remote_path=None,
- )
- def test_run_check_bails_if_repository_does_not_match():
- flexmock(module.logger).answer = lambda message: None
- flexmock(module.borgmatic.config.validate).should_receive('repositories_match').and_return(
- False
- )
- flexmock(module.borgmatic.borg.check).should_receive('check_archives').never()
- check_arguments = flexmock(
- repository='repo2',
- progress=flexmock(),
- repair=flexmock(),
- only=flexmock(),
- force=flexmock(),
- )
- global_arguments = flexmock(monitoring_verbosity=1, dry_run=False)
- module.run_check(
- config_filename='test.yaml',
- repository='repo',
- location={'repositories': ['repo']},
- storage={},
- consistency={},
- hooks={},
- hook_context={},
- local_borg_version=None,
- check_arguments=check_arguments,
- global_arguments=global_arguments,
- local_path=None,
- remote_path=None,
- )
|