mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 23:38:49 +00:00
41 lines
1010 B
Python
41 lines
1010 B
Python
import time
|
|
from types import SimpleNamespace
|
|
from pathlib import Path
|
|
import pytest
|
|
|
|
import sys
|
|
|
|
sys.path.append(str(Path(__file__).resolve().parents[1]))
|
|
|
|
import main
|
|
|
|
|
|
def test_auto_sync_triggers_post(monkeypatch):
|
|
pm = SimpleNamespace(
|
|
is_dirty=True,
|
|
last_update=time.time() - 0.2,
|
|
last_activity=time.time(),
|
|
nostr_client=SimpleNamespace(close_client_pool=lambda: None),
|
|
handle_add_password=lambda: None,
|
|
handle_retrieve_entry=lambda: None,
|
|
handle_modify_entry=lambda: None,
|
|
update_activity=lambda: None,
|
|
lock_vault=lambda: None,
|
|
unlock_vault=lambda: None,
|
|
)
|
|
|
|
called = False
|
|
|
|
def fake_post(manager):
|
|
nonlocal called
|
|
called = True
|
|
|
|
monkeypatch.setattr(main, "handle_post_to_nostr", fake_post)
|
|
monkeypatch.setattr(main, "timed_input", lambda *_: "5")
|
|
|
|
with pytest.raises(SystemExit):
|
|
main.display_menu(pm, sync_interval=0.1)
|
|
|
|
assert called
|
|
assert pm.is_dirty is False
|