coulomb-social/docs/identity/smoke.md

24 lines
662 B
Markdown
Raw Normal View History

# Identity smoke checklist
## Offline (dev claims)
1. `uv sync && uv run manage.py migrate && uv run manage.py runserver 8008`
2. Open `/`**Sign in**
3. Dev form → submit subject `smoke-1`
4. Land on `/app/` with display name and subject shown
5. **Sign out** → back to landing; `/app/` redirects to login
6. Sign in again with same subject → single `Member` row (idempotent)
## With platform OIDC
1. Set `OIDC_ENABLED=true` and issuer/client/redirect env vars
2. Register redirect URI at the issuer (no wildcards)
3. `/auth/login/` redirects to IdP; callback creates/links Member
4. Logout clears app session
## Automated
```bash
make test
```