Foundation & Identity backend for ThoughtSync: - Quart app factory (create_app) with /api/health + SPA history-fallback - async SQLAlchemy 2.0 + asyncpg engine/session (lazy; boots without a DB) - native email+password auth via signed-cookie session (register/login/logout/me + login_required guard); bcrypt password hashing (72-byte safe) - multi-user sharing-ACL spine (rule 47): users, groups, group_members, and a polymorphic shares table + visible_to_user() SQL predicate (owner OR direct share OR group share) that M1's notes will scope through - Alembic async env (adapted from family pattern) + 0001 foundation migration - DB-free unit tests (app/health/auth-guard, password roundtrip, ACL compile) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FRgehjoz7Yv8LkUfADxACm
17 lines
540 B
Python
17 lines
540 B
Python
from thoughtsync.security import hash_password, verify_password
|
|
|
|
|
|
def test_password_roundtrip():
|
|
h = hash_password("correct horse battery staple")
|
|
assert verify_password("correct horse battery staple", h)
|
|
assert not verify_password("wrong password", h)
|
|
|
|
|
|
def test_password_hash_is_salted():
|
|
# Same input hashes differently each time (random salt).
|
|
assert hash_password("same-input") != hash_password("same-input")
|
|
|
|
|
|
def test_verify_rejects_garbage_hash():
|
|
assert not verify_password("whatever", "not-a-bcrypt-hash")
|