2026-05-08 17:35:46 -04:00
|
|
|
"""ITs for the Brief model & view_post's mark-read behavior.
|
|
|
|
|
|
|
|
|
|
Brief is a notification record — owner + post FK + line FK + is_unread + kind.
|
|
|
|
|
It rides on a Post (one-Post-per-category, Lines accumulate). Clicking FYI on
|
|
|
|
|
a Brief banner navigates to billboard:view_post for the underlying Post; that
|
|
|
|
|
GET is the contract that flips is_unread → False.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
|
from django.urls import reverse
|
|
|
|
|
|
|
|
|
|
from apps.billboard.models import Brief, Line, Post
|
|
|
|
|
from apps.lyric.models import User
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BriefModelTest(TestCase):
|
|
|
|
|
def setUp(self):
|
|
|
|
|
self.user = User.objects.create(email="brief@test.io")
|
|
|
|
|
self.post = Post.objects.create(owner=self.user)
|
post aperture refactor (May-8b): Post.title field; Line.author PROTECT FK + created_at; Note.grant_if_new admin-vs-Look! format dispatch w. note-ref anchor; bottom-anchored aperture w. shared-between header + per-Line user/timestamp; dotted-? Brief square; reserved adman seed — TDD
- schema: billboard/0004 adds Post.title (CharField 35) + Line.author (PROTECT FK, related_name=authored_lines) + Line.created_at (auto_now_add); RunPython backfill stamps existing rows (note_unlock → "Notes & recognitions" + author=adman; user_post → first-line glean + author=Post.owner).
- lyric/0003 seeds adman User (system author for note unlock + share invite Lines); apps.lyric.models gains RESERVED_USERNAMES = {"adman"}, is_reserved_username() guard in dashboard.set_profile, get_or_create_adman() lazy fetch (TransactionTestCase flushes the seed).
- drama: Note.grant_if_new dispatches via _ADMIN_NOTE_SLUGS = {"super-schizo","super-nomad"} — admin slugs use "The administration recognizes…" prose; everyone else uses "Look!—new Note unlocked." Both wrap Note name in `<a class="note-ref">`. Header Line dropped (test_two_different_grants_share_one_post asserts 2 lines, not 3). Note.display_name property added (slug.title() default — "super-schizo" → "Super-Schizo"). User.active_title_display returns donned recognition title or "Earthman" default.
- billboard models: Post.name property removed → my_posts.html, _applet-my-posts.html, PostSerializer switched to Post.title. LineForm.save(for_post, author) + ExistingPostLineForm.save(author) signature + all callers (api.views, billboard.views.new_post + view_post + share_post). billboard.views.share_post authors via get_or_create_adman; new_post truncates first line for Post.title via _truncate_post_title.
- post.html: <h3> post title heading; .post-shared-recipients (commas only) + .post-shared-self lines ("just me, X the Earthman" / "& me, X the Y" 0/≥1 split); #id_post_table is now a <ul> w. justify-content: flex-end + per-Line 3-col grid (author/text/time); adman Lines render |safe + .post-line--system italic; #id_text → #id_post_line_text rename (post.html only — /billboard/ new-post applet keeps #id_text); page_class page-billpost (joins billboard+billscroll body-class trio).
- SCSS _billboard.scss: .post-page extends %billboard-page-base, adds bottom-anchored flex-column scroll + 3-col .post-line grid + .post-line-form pinned at bottom. _note.scss: a.note-banner__image picks up .note-item__image-box dashed-? styling for the Brief square.
- _buddy_panel.html JS rewired for new layout: _appendLine builds <li class="post-line post-line--system"> w. adman+timestamp; _appendRecipientChip handles 0→1+ transition (rewrites "just me," → "& me,", inserts .post-shared-recipients line above self).
- FT post_page.py: get_table_rows queries .post-line; wait_for_row_in_post_table matches by text containment (line_number arg ignored — kept for backwards compat); get_line_input_box probes #id_post_line_text first, falls back to #id_text; get_post_owner reads textContent (hidden span). test_applet_new_post_line_validation switched to input[name="text"]:invalid/:valid for cross-page selectors.
- rootvars.scss: minor plutonium + fuschia tweaks (pre-existing).
- 818 ITs + 35 FTs (buddy/new-post/sharing/validation/layout/jasmine/my-notes/my-posts) green.
Code architected by Disco DeDisco <discodedisco@outlook.com>
Git commit message Co-Authored-By:
Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 21:29:21 -04:00
|
|
|
self.line = Line.objects.create(post=self.post, text="Stargazer, 5:21pm", author=self.user)
|
2026-05-08 17:35:46 -04:00
|
|
|
|
|
|
|
|
def test_brief_defaults_unread(self):
|
|
|
|
|
b = Brief.objects.create(owner=self.user, post=self.post, line=self.line)
|
|
|
|
|
self.assertTrue(b.is_unread)
|
|
|
|
|
|
|
|
|
|
def test_brief_default_kind_is_user_post(self):
|
|
|
|
|
b = Brief.objects.create(owner=self.user, post=self.post, line=self.line)
|
|
|
|
|
self.assertEqual(b.kind, Brief.KIND_USER_POST)
|
|
|
|
|
|
|
|
|
|
def test_brief_kind_choices_include_note_unlock_and_share_invite(self):
|
|
|
|
|
choices = dict(Brief._meta.get_field("kind").choices)
|
|
|
|
|
self.assertIn(Brief.KIND_NOTE_UNLOCK, choices)
|
|
|
|
|
self.assertIn(Brief.KIND_USER_POST, choices)
|
|
|
|
|
self.assertIn(Brief.KIND_SHARE_INVITE, choices)
|
|
|
|
|
|
|
|
|
|
def test_brief_line_can_be_null(self):
|
|
|
|
|
"""A Brief may pre-date its Line (e.g. share-invite spawns the Line
|
|
|
|
|
async — the Brief should still be persistable while the Line write
|
|
|
|
|
is pending). Doesn't break the post FK."""
|
|
|
|
|
b = Brief.objects.create(owner=self.user, post=self.post)
|
|
|
|
|
self.assertIsNone(b.line)
|
|
|
|
|
|
|
|
|
|
def test_brief_owner_post_required(self):
|
|
|
|
|
"""Brief without owner OR post is invalid; both are the load-bearing
|
|
|
|
|
FKs (owner = whose attention; post = where FYI navigates)."""
|
|
|
|
|
from django.db import IntegrityError, transaction
|
|
|
|
|
with transaction.atomic(), self.assertRaises(IntegrityError):
|
|
|
|
|
Brief.objects.create(post=self.post, line=self.line)
|
|
|
|
|
with transaction.atomic(), self.assertRaises(IntegrityError):
|
|
|
|
|
Brief.objects.create(owner=self.user, line=self.line)
|
|
|
|
|
|
|
|
|
|
def test_brief_carries_title(self):
|
|
|
|
|
b = Brief.objects.create(
|
|
|
|
|
owner=self.user, post=self.post, line=self.line,
|
|
|
|
|
title="Look! — new Note unlocked",
|
|
|
|
|
)
|
|
|
|
|
self.assertEqual(b.title, "Look! — new Note unlocked")
|
|
|
|
|
|
|
|
|
|
def test_brief_str_includes_owner_kind_unread(self):
|
|
|
|
|
b = Brief.objects.create(owner=self.user, post=self.post, kind=Brief.KIND_NOTE_UNLOCK)
|
|
|
|
|
s = str(b)
|
|
|
|
|
self.assertIn("brief@test.io", s)
|
|
|
|
|
self.assertIn("note_unlock", s)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ViewPostMarksReadTest(TestCase):
|
|
|
|
|
"""GET /billboard/post/<uuid>/ flips every unread Brief on that post for
|
|
|
|
|
the requesting user to is_unread=False. NVM (banner dismiss client-side
|
|
|
|
|
without nav) leaves Briefs untouched — that path doesn't hit this view."""
|
|
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
|
self.user = User.objects.create(email="reader@test.io")
|
|
|
|
|
self.client.force_login(self.user)
|
|
|
|
|
self.post = Post.objects.create(owner=self.user)
|
post aperture refactor (May-8b): Post.title field; Line.author PROTECT FK + created_at; Note.grant_if_new admin-vs-Look! format dispatch w. note-ref anchor; bottom-anchored aperture w. shared-between header + per-Line user/timestamp; dotted-? Brief square; reserved adman seed — TDD
- schema: billboard/0004 adds Post.title (CharField 35) + Line.author (PROTECT FK, related_name=authored_lines) + Line.created_at (auto_now_add); RunPython backfill stamps existing rows (note_unlock → "Notes & recognitions" + author=adman; user_post → first-line glean + author=Post.owner).
- lyric/0003 seeds adman User (system author for note unlock + share invite Lines); apps.lyric.models gains RESERVED_USERNAMES = {"adman"}, is_reserved_username() guard in dashboard.set_profile, get_or_create_adman() lazy fetch (TransactionTestCase flushes the seed).
- drama: Note.grant_if_new dispatches via _ADMIN_NOTE_SLUGS = {"super-schizo","super-nomad"} — admin slugs use "The administration recognizes…" prose; everyone else uses "Look!—new Note unlocked." Both wrap Note name in `<a class="note-ref">`. Header Line dropped (test_two_different_grants_share_one_post asserts 2 lines, not 3). Note.display_name property added (slug.title() default — "super-schizo" → "Super-Schizo"). User.active_title_display returns donned recognition title or "Earthman" default.
- billboard models: Post.name property removed → my_posts.html, _applet-my-posts.html, PostSerializer switched to Post.title. LineForm.save(for_post, author) + ExistingPostLineForm.save(author) signature + all callers (api.views, billboard.views.new_post + view_post + share_post). billboard.views.share_post authors via get_or_create_adman; new_post truncates first line for Post.title via _truncate_post_title.
- post.html: <h3> post title heading; .post-shared-recipients (commas only) + .post-shared-self lines ("just me, X the Earthman" / "& me, X the Y" 0/≥1 split); #id_post_table is now a <ul> w. justify-content: flex-end + per-Line 3-col grid (author/text/time); adman Lines render |safe + .post-line--system italic; #id_text → #id_post_line_text rename (post.html only — /billboard/ new-post applet keeps #id_text); page_class page-billpost (joins billboard+billscroll body-class trio).
- SCSS _billboard.scss: .post-page extends %billboard-page-base, adds bottom-anchored flex-column scroll + 3-col .post-line grid + .post-line-form pinned at bottom. _note.scss: a.note-banner__image picks up .note-item__image-box dashed-? styling for the Brief square.
- _buddy_panel.html JS rewired for new layout: _appendLine builds <li class="post-line post-line--system"> w. adman+timestamp; _appendRecipientChip handles 0→1+ transition (rewrites "just me," → "& me,", inserts .post-shared-recipients line above self).
- FT post_page.py: get_table_rows queries .post-line; wait_for_row_in_post_table matches by text containment (line_number arg ignored — kept for backwards compat); get_line_input_box probes #id_post_line_text first, falls back to #id_text; get_post_owner reads textContent (hidden span). test_applet_new_post_line_validation switched to input[name="text"]:invalid/:valid for cross-page selectors.
- rootvars.scss: minor plutonium + fuschia tweaks (pre-existing).
- 818 ITs + 35 FTs (buddy/new-post/sharing/validation/layout/jasmine/my-notes/my-posts) green.
Code architected by Disco DeDisco <discodedisco@outlook.com>
Git commit message Co-Authored-By:
Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 21:29:21 -04:00
|
|
|
self.line = Line.objects.create(post=self.post, text="entry one", author=self.user)
|
2026-05-08 17:35:46 -04:00
|
|
|
|
|
|
|
|
def test_get_view_post_flips_owner_unread_brief_to_read(self):
|
|
|
|
|
b = Brief.objects.create(owner=self.user, post=self.post, line=self.line)
|
|
|
|
|
self.assertTrue(b.is_unread)
|
|
|
|
|
self.client.get(reverse("billboard:view_post", args=[self.post.id]))
|
|
|
|
|
b.refresh_from_db()
|
|
|
|
|
self.assertFalse(b.is_unread)
|
|
|
|
|
|
|
|
|
|
def test_get_does_not_flip_other_users_briefs(self):
|
|
|
|
|
other = User.objects.create(email="other@test.io")
|
|
|
|
|
# Both users have a Brief on this post; only the requesting user's flips
|
|
|
|
|
mine = Brief.objects.create(owner=self.user, post=self.post, line=self.line)
|
|
|
|
|
theirs = Brief.objects.create(owner=other, post=self.post, line=self.line)
|
|
|
|
|
self.client.get(reverse("billboard:view_post", args=[self.post.id]))
|
|
|
|
|
mine.refresh_from_db()
|
|
|
|
|
theirs.refresh_from_db()
|
|
|
|
|
self.assertFalse(mine.is_unread)
|
|
|
|
|
self.assertTrue(theirs.is_unread)
|
|
|
|
|
|
|
|
|
|
def test_get_does_not_flip_briefs_on_other_posts(self):
|
|
|
|
|
other_post = Post.objects.create(owner=self.user)
|
post aperture refactor (May-8b): Post.title field; Line.author PROTECT FK + created_at; Note.grant_if_new admin-vs-Look! format dispatch w. note-ref anchor; bottom-anchored aperture w. shared-between header + per-Line user/timestamp; dotted-? Brief square; reserved adman seed — TDD
- schema: billboard/0004 adds Post.title (CharField 35) + Line.author (PROTECT FK, related_name=authored_lines) + Line.created_at (auto_now_add); RunPython backfill stamps existing rows (note_unlock → "Notes & recognitions" + author=adman; user_post → first-line glean + author=Post.owner).
- lyric/0003 seeds adman User (system author for note unlock + share invite Lines); apps.lyric.models gains RESERVED_USERNAMES = {"adman"}, is_reserved_username() guard in dashboard.set_profile, get_or_create_adman() lazy fetch (TransactionTestCase flushes the seed).
- drama: Note.grant_if_new dispatches via _ADMIN_NOTE_SLUGS = {"super-schizo","super-nomad"} — admin slugs use "The administration recognizes…" prose; everyone else uses "Look!—new Note unlocked." Both wrap Note name in `<a class="note-ref">`. Header Line dropped (test_two_different_grants_share_one_post asserts 2 lines, not 3). Note.display_name property added (slug.title() default — "super-schizo" → "Super-Schizo"). User.active_title_display returns donned recognition title or "Earthman" default.
- billboard models: Post.name property removed → my_posts.html, _applet-my-posts.html, PostSerializer switched to Post.title. LineForm.save(for_post, author) + ExistingPostLineForm.save(author) signature + all callers (api.views, billboard.views.new_post + view_post + share_post). billboard.views.share_post authors via get_or_create_adman; new_post truncates first line for Post.title via _truncate_post_title.
- post.html: <h3> post title heading; .post-shared-recipients (commas only) + .post-shared-self lines ("just me, X the Earthman" / "& me, X the Y" 0/≥1 split); #id_post_table is now a <ul> w. justify-content: flex-end + per-Line 3-col grid (author/text/time); adman Lines render |safe + .post-line--system italic; #id_text → #id_post_line_text rename (post.html only — /billboard/ new-post applet keeps #id_text); page_class page-billpost (joins billboard+billscroll body-class trio).
- SCSS _billboard.scss: .post-page extends %billboard-page-base, adds bottom-anchored flex-column scroll + 3-col .post-line grid + .post-line-form pinned at bottom. _note.scss: a.note-banner__image picks up .note-item__image-box dashed-? styling for the Brief square.
- _buddy_panel.html JS rewired for new layout: _appendLine builds <li class="post-line post-line--system"> w. adman+timestamp; _appendRecipientChip handles 0→1+ transition (rewrites "just me," → "& me,", inserts .post-shared-recipients line above self).
- FT post_page.py: get_table_rows queries .post-line; wait_for_row_in_post_table matches by text containment (line_number arg ignored — kept for backwards compat); get_line_input_box probes #id_post_line_text first, falls back to #id_text; get_post_owner reads textContent (hidden span). test_applet_new_post_line_validation switched to input[name="text"]:invalid/:valid for cross-page selectors.
- rootvars.scss: minor plutonium + fuschia tweaks (pre-existing).
- 818 ITs + 35 FTs (buddy/new-post/sharing/validation/layout/jasmine/my-notes/my-posts) green.
Code architected by Disco DeDisco <discodedisco@outlook.com>
Git commit message Co-Authored-By:
Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 21:29:21 -04:00
|
|
|
other_line = Line.objects.create(post=other_post, text="other", author=self.user)
|
2026-05-08 17:35:46 -04:00
|
|
|
unrelated = Brief.objects.create(owner=self.user, post=other_post, line=other_line)
|
|
|
|
|
self.client.get(reverse("billboard:view_post", args=[self.post.id]))
|
|
|
|
|
unrelated.refresh_from_db()
|
|
|
|
|
self.assertTrue(unrelated.is_unread)
|
|
|
|
|
|
|
|
|
|
def test_get_idempotent_for_already_read_brief(self):
|
|
|
|
|
already_read = Brief.objects.create(
|
|
|
|
|
owner=self.user, post=self.post, line=self.line, is_unread=False,
|
|
|
|
|
)
|
|
|
|
|
self.client.get(reverse("billboard:view_post", args=[self.post.id]))
|
|
|
|
|
already_read.refresh_from_db()
|
|
|
|
|
self.assertFalse(already_read.is_unread)
|
|
|
|
|
|
|
|
|
|
def test_post_request_does_not_mark_read(self):
|
|
|
|
|
"""Posting a new Line to view_post (the legacy compose flow) is not
|
|
|
|
|
the FYI-read contract — the user is composing, not reviewing. Mark-
|
|
|
|
|
read happens only on a GET render of post.html."""
|
|
|
|
|
b = Brief.objects.create(owner=self.user, post=self.post, line=self.line)
|
|
|
|
|
self.client.post(
|
|
|
|
|
reverse("billboard:view_post", args=[self.post.id]),
|
|
|
|
|
data={"text": "appended via POST"},
|
|
|
|
|
)
|
|
|
|
|
b.refresh_from_db()
|
|
|
|
|
self.assertTrue(b.is_unread)
|