mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-09 15:58:48 +00:00
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
import sys
|
|
from pathlib import Path
|
|
from tempfile import TemporaryDirectory
|
|
from helpers import create_vault, TEST_SEED, TEST_PASSWORD
|
|
|
|
sys.path.append(str(Path(__file__).resolve().parents[1]))
|
|
|
|
from password_manager.entry_management import EntryManager
|
|
from password_manager.vault import Vault
|
|
|
|
|
|
def test_update_checksum_writes_to_expected_path():
|
|
with TemporaryDirectory() as tmpdir:
|
|
tmp_path = Path(tmpdir)
|
|
vault, enc_mgr = create_vault(tmp_path, TEST_SEED, TEST_PASSWORD)
|
|
entry_mgr = EntryManager(vault, tmp_path)
|
|
|
|
# create an empty index file
|
|
vault.save_index({"entries": {}})
|
|
entry_mgr.update_checksum()
|
|
|
|
expected = tmp_path / "seedpass_passwords_db_checksum.txt"
|
|
assert expected.exists()
|
|
|
|
|
|
def test_backup_index_file_creates_backup_in_directory():
|
|
with TemporaryDirectory() as tmpdir:
|
|
tmp_path = Path(tmpdir)
|
|
vault, enc_mgr = create_vault(tmp_path, TEST_SEED, TEST_PASSWORD)
|
|
entry_mgr = EntryManager(vault, tmp_path)
|
|
|
|
vault.save_index({"entries": {}})
|
|
entry_mgr.backup_index_file()
|
|
|
|
backups = list(tmp_path.glob("passwords_db_backup_*.json.enc"))
|
|
assert len(backups) == 1
|