| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 | import pytestfrom flexmock import flexmockfrom borgmatic.hooks.credential import keepassxc as module@pytest.mark.parametrize('credential_parameters', ((), ('foo',), ('foo', 'bar', 'baz')))def test_load_credential_with_invalid_credential_parameters_raises(credential_parameters):    flexmock(module.borgmatic.execute).should_receive('execute_command_and_capture_output').never()    with pytest.raises(ValueError):        module.load_credential(            hook_config={}, config={}, credential_parameters=credential_parameters        )def test_load_credential_with_missing_database_raises():    flexmock(module.os.path).should_receive('expanduser').with_args('database.kdbx').and_return(        'database.kdbx'    )    flexmock(module.os.path).should_receive('exists').and_return(False)    flexmock(module.borgmatic.execute).should_receive('execute_command_and_capture_output').never()    with pytest.raises(ValueError):        module.load_credential(            hook_config={}, config={}, credential_parameters=('database.kdbx', 'mypassword')        )def test_load_credential_with_present_database_fetches_password_from_keepassxc():    flexmock(module.os.path).should_receive('expanduser').with_args('database.kdbx').and_return(        'database.kdbx'    )    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).with_args(        (            'keepassxc-cli',            'show',            '--show-protected',            '--attributes',            'Password',            'database.kdbx',            'mypassword',        )    ).and_return(        'password'    ).once()    assert (        module.load_credential(            hook_config={}, config={}, credential_parameters=('database.kdbx', 'mypassword')        )        == 'password'    )def test_load_credential_with_custom_keepassxc_cli_command_calls_it():    flexmock(module.os.path).should_receive('expanduser').with_args('database.kdbx').and_return(        'database.kdbx'    )    config = {'keepassxc': {'keepassxc_cli_command': '/usr/local/bin/keepassxc-cli --some-option'}}    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).with_args(        (            '/usr/local/bin/keepassxc-cli',            '--some-option',            'show',            '--show-protected',            '--attributes',            'Password',            'database.kdbx',            'mypassword',        )    ).and_return(        'password'    ).once()    assert (        module.load_credential(            hook_config=config['keepassxc'],            config=config,            credential_parameters=('database.kdbx', 'mypassword'),        )        == 'password'    )def test_load_credential_with_expanded_directory_with_present_database_fetches_password_from_keepassxc():    flexmock(module.os.path).should_receive('expanduser').with_args('~/database.kdbx').and_return(        '/root/database.kdbx'    )    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).with_args(        (            'keepassxc-cli',            'show',            '--show-protected',            '--attributes',            'Password',            '/root/database.kdbx',            'mypassword',        )    ).and_return(        'password'    ).once()    assert (        module.load_credential(            hook_config={}, config={}, credential_parameters=('~/database.kdbx', 'mypassword')        )        == 'password'    )def test_load_credential_with_key_file():    flexmock(module.os.path).should_receive('expanduser').with_args('database.kdbx').and_return(        'database.kdbx'    )    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).with_args(        (            'keepassxc-cli',            'show',            '--show-protected',            '--attributes',            'Password',            '--key-file',            '/path/to/keyfile',            'database.kdbx',            'mypassword',        )    ).and_return(        'password'    ).once()    assert (        module.load_credential(            hook_config={'key_file': '/path/to/keyfile'},            config={},            credential_parameters=('database.kdbx', 'mypassword'),        )        == 'password'    )def test_load_credential_with_yubikey():    flexmock(module.os.path).should_receive('expanduser').with_args('database.kdbx').and_return(        'database.kdbx'    )    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).with_args(        (            'keepassxc-cli',            'show',            '--show-protected',            '--attributes',            'Password',            '--yubikey',            '1:7370001',            'database.kdbx',            'mypassword',        )    ).and_return(        'password'    ).once()    assert (        module.load_credential(            hook_config={'yubikey': '1:7370001'},            config={},            credential_parameters=('database.kdbx', 'mypassword'),        )        == 'password'    )def test_load_credential_with_key_file_and_yubikey():    flexmock(module.os.path).should_receive('expanduser').with_args('database.kdbx').and_return(        'database.kdbx'    )    flexmock(module.os.path).should_receive('exists').and_return(True)    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).with_args(        (            'keepassxc-cli',            'show',            '--show-protected',            '--attributes',            'Password',            '--key-file',            '/path/to/keyfile',            '--yubikey',            '2',            'database.kdbx',            'mypassword',        )    ).and_return(        'password'    ).once()    assert (        module.load_credential(            hook_config={'key_file': '/path/to/keyfile', 'yubikey': '2'},            config={},            credential_parameters=('database.kdbx', 'mypassword'),        )        == 'password'    )
 |