| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 | import pytestfrom flexmock import flexmockfrom borgmatic.hooks import dump as moduledef test_make_database_dump_path_joins_arguments():    assert module.make_database_dump_path('/tmp', 'super_databases') == '/tmp/super_databases'def test_make_database_dump_path_defaults_without_source_directory():    assert module.make_database_dump_path(None, 'super_databases') == '~/.borgmatic/super_databases'def test_make_database_dump_filename_uses_name_and_hostname():    flexmock(module.os.path).should_receive('expanduser').and_return('databases')    assert (        module.make_database_dump_filename('databases', 'test', 'hostname')        == 'databases/hostname/test'    )def test_make_database_dump_filename_without_hostname_defaults_to_localhost():    flexmock(module.os.path).should_receive('expanduser').and_return('databases')    assert module.make_database_dump_filename('databases', 'test') == 'databases/localhost/test'def test_make_database_dump_filename_with_invalid_name_raises():    flexmock(module.os.path).should_receive('expanduser').and_return('databases')    with pytest.raises(ValueError):        module.make_database_dump_filename('databases', 'invalid/name')def test_create_parent_directory_for_dump_does_not_raise():    flexmock(module.os).should_receive('makedirs')    module.create_parent_directory_for_dump('/path/to/parent')def test_create_named_pipe_for_dump_does_not_raise():    flexmock(module).should_receive('create_parent_directory_for_dump')    flexmock(module.os).should_receive('mkfifo')    module.create_named_pipe_for_dump('/path/to/pipe')def test_remove_database_dumps_removes_dump_path():    flexmock(module.os.path).should_receive('expanduser').and_return('databases/localhost')    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.shutil).should_receive('rmtree').with_args('databases/localhost').once()    module.remove_database_dumps('databases', 'SuperDB', 'test.yaml', dry_run=False)def test_remove_database_dumps_with_dry_run_skips_removal():    flexmock(module.os.path).should_receive('expanduser').and_return('databases/localhost')    flexmock(module.os.path).should_receive('exists').never()    flexmock(module.shutil).should_receive('rmtree').never()    module.remove_database_dumps('databases', 'SuperDB', 'test.yaml', dry_run=True)def test_remove_database_dumps_without_dump_path_present_skips_removal():    flexmock(module.os.path).should_receive('expanduser').and_return('databases/localhost')    flexmock(module.os.path).should_receive('exists').and_return(False)    flexmock(module.shutil).should_receive('rmtree').never()    module.remove_database_dumps('databases', 'SuperDB', 'test.yaml', dry_run=False)def test_convert_glob_patterns_to_borg_patterns_removes_leading_slash():    assert module.convert_glob_patterns_to_borg_patterns(('/etc/foo/bar',)) == ['sh:etc/foo/bar']
 |