mirror of
https://github.com/borgbase/vorta
synced 2024-12-23 08:17:08 +00:00
82844a17b4
* Improve macOS packaging, add notarization. * Properly use QApplication while testing, remove workarounds. * Use Github Workflows instead of Travis. * Remove outdated test workaround.
10 lines
308 B
Python
10 lines
308 B
Python
import uuid
|
|
from vorta.utils import keyring
|
|
|
|
|
|
def test_keyring(qapp):
|
|
UNICODE_PW = 'kjalsdfüadsfäadsfß'
|
|
REPO = f'vorta-test-repo.{uuid.uuid4()}.com:repo' # Random repo URL
|
|
|
|
keyring.set_password('vorta-repo', REPO, UNICODE_PW)
|
|
assert keyring.get_password("vorta-repo", REPO) == UNICODE_PW
|