Add verbose flag to list_entries and update archived view

This commit is contained in:
thePR0M3TH3AN
2025-07-16 15:05:11 -04:00
parent e8ade741ad
commit 073b8c4d47
3 changed files with 89 additions and 39 deletions

View File

@@ -152,3 +152,41 @@ def test_view_archived_entries_removed_after_restore(monkeypatch, capsys):
note = pm.notifications.get_nowait()
assert note.level == "WARNING"
assert note.message == "No archived entries found."
def test_archived_entries_menu_hides_active(monkeypatch, capsys):
with TemporaryDirectory() as tmpdir:
tmp_path = Path(tmpdir)
vault, enc_mgr = create_vault(tmp_path, TEST_SEED, TEST_PASSWORD)
cfg_mgr = ConfigManager(vault, tmp_path)
backup_mgr = BackupManager(tmp_path, cfg_mgr)
entry_mgr = EntryManager(vault, backup_mgr)
pm = PasswordManager.__new__(PasswordManager)
pm.encryption_mode = EncryptionMode.SEED_ONLY
pm.encryption_manager = enc_mgr
pm.vault = vault
pm.entry_manager = entry_mgr
pm.backup_manager = backup_mgr
pm.parent_seed = TEST_SEED
pm.nostr_client = SimpleNamespace()
pm.fingerprint_dir = tmp_path
pm.is_dirty = False
pm.notifications = queue.Queue()
archived_idx = entry_mgr.add_entry("archived.com", 8)
active_idx = entry_mgr.add_entry("active.com", 8)
# Archive only the first entry
monkeypatch.setattr("builtins.input", lambda *_: str(archived_idx))
pm.handle_archive_entry()
assert entry_mgr.retrieve_entry(archived_idx)["archived"] is True
assert entry_mgr.retrieve_entry(active_idx)["archived"] is False
# View archived entries and immediately exit
inputs = iter([""])
monkeypatch.setattr("builtins.input", lambda *_: next(inputs))
pm.handle_view_archived_entries()
out = capsys.readouterr().out
assert "archived.com" in out
assert "active.com" not in out