forked from ChelseaKR/queer-the-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_render_view.py
More file actions
226 lines (191 loc) · 7.08 KB
/
Copy pathtest_render_view.py
File metadata and controls
226 lines (191 loc) · 7.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
"""Renderer + view assembly: content, escaping, and the wired demo view."""
from __future__ import annotations
from pathlib import Path
from app.a11y_check import check_html
from app.render import render_dashboard
from app.view import build_view, demo_view, render_view
from ingest.models import (
Author,
Book,
DailyActivity,
ReadingState,
ReadingStatus,
Source,
SourceKind,
ThemeTag,
)
def test_demo_view_has_expected_shape(tmp_path: Path) -> None:
view = demo_view(tmp_path)
assert view.user == "demo"
assert view.currently_reading
assert view.finished
assert view.recommendations
assert view.stats.books_finished >= 7
assert view.wrapped.year == 2024
def test_render_contains_all_sections(tmp_path: Path) -> None:
view = demo_view(tmp_path)
html = render_dashboard(
view.currently_reading,
view.finished,
view.stats,
view.wrapped,
view.recommendations,
user=view.user,
)
for heading in (
"Currently reading",
"Time to finish",
"Reading stats",
"Reading Wrapped",
"Recommended for you",
"Recently finished",
):
assert heading in html
# Every rec card shows a source link and a why.
assert "Why recommended" in html
assert "Sources" in html
# Themes are rendered as text chips, not colour-only.
assert 'class="tag"' in html
def test_render_escapes_user_content() -> None:
src = Source(SourceKind.CALIBRE_TAG, "calibre:local", "2026-06-05", "x")
book = Book(
book_id="b",
title="<script>alert(1)</script>",
authors=(Author("A & B"),),
theme_tags=(ThemeTag("queer", src),),
)
state = ReadingState(
title=book.title, authors=("A & B",), status=ReadingStatus.READING, book=book
)
from app.stats import compute_stats
from app.wrapped import compute_wrapped
stats = compute_stats([state], [], 0)
wrapped = compute_wrapped([state], [], 2024)
html = render_dashboard([state], [], stats, wrapped, [], user="me")
assert "<script>alert(1)</script>" not in html
assert "<script>" in html
assert "A & B" in html
def test_build_view_empty_inputs() -> None:
view = build_view([], [], (), lists=())
assert view.recommendations == ()
assert view.stats.books_finished == 0
assert view.currently_reading == ()
def test_render_handles_empty_view() -> None:
view = build_view([], [DailyActivity(0, 0, 0)], ())
html = render_dashboard(
view.currently_reading,
view.finished,
view.stats,
view.wrapped,
view.recommendations,
)
assert "Nothing in progress" in html
assert "No recommendations yet" in html
def test_render_data_status_never_refreshed() -> None:
view = build_view([], [DailyActivity(0, 0, 0)], ())
html = render_dashboard(
view.currently_reading,
view.finished,
view.stats,
view.wrapped,
view.recommendations,
)
assert "Data status" in html
assert "never refreshed" in html
assert "stacks refresh" in html
assert 'role="status"' not in html # no stamp yet -> no staleness banner either
def test_render_data_status_shows_stamp_and_no_banner_when_fresh() -> None:
view = build_view([], [DailyActivity(0, 0, 0)], ())
html = render_dashboard(
view.currently_reading,
view.finished,
view.stats,
view.wrapped,
view.recommendations,
refreshed_at=1_700_000_000,
stale=False,
)
assert "Data status" in html
assert "2023-11-14T22:13:20Z" in html # ISO-8601 UTC of the epoch stamp
assert 'role="status"' not in html
def test_render_data_status_stale_banner_is_visible_text() -> None:
view = build_view([], [DailyActivity(0, 0, 0)], ())
html = render_dashboard(
view.currently_reading,
view.finished,
view.stats,
view.wrapped,
view.recommendations,
refreshed_at=1_700_000_000,
stale=True,
)
assert 'role="status"' in html
assert "Stale" in html # staleness named in text, not colour-only
# --- R4: descriptor provenance surfaced in the diversity section --------------
def _diversity_section(html: str) -> str:
start = html.index("Reading diversity")
return html[start : html.index("Reading Wrapped", start)]
def test_diversity_provenance_shows_source_and_date(tmp_path: Path) -> None:
html = render_view(demo_view(tmp_path))
section = _diversity_section(html)
# Every diverse-shelf tag shows the source that asserted it and when (R4).
assert "Per-descriptor provenance" in section
assert "calibre-tag" in section
assert "2026-06-05" in section
# Sensitive descriptors are flagged in text (never colour-only).
assert "(sensitive)" in section
def test_hide_sensitive_redacts_diversity_section(states: list, candidates: tuple) -> None:
view = build_view(states, [], candidates, hide_sensitive_descriptors=True)
html = render_view(view)
section = _diversity_section(html)
# Identity-adjacent labels are aggregated out of the diverse-shelf view.
assert "trans" not in section and "queer" not in section
assert "aggregated for privacy" in section
assert "Privacy:" in section
# The redacted page is still fully accessible (the a11y contract holds).
assert check_html(html) == []
def test_forecasts_render_a_ranged_estimate() -> None:
from ingest.models import ReadingStat
stat = ReadingStat(
key="k",
title="Pace Book",
authors=("Author One",),
pages_read=100,
total_pages=300,
read_time_seconds=3600,
last_read_ts=1_700_000_000,
sessions=6,
)
state = ReadingState(
title="Pace Book",
authors=("Author One",),
status=ReadingStatus.READING,
stat=stat,
)
# Six recent days with pages read give a solid per-page pace sample
# (>= MIN_DAYS_FOR_ESTIMATE), so the forecast is estimable.
daily = [DailyActivity(day_ordinal=d, seconds=600, pages=10) for d in range(1, 7)]
view = build_view([state], daily, ())
assert len(view.forecasts) == 1
forecast = view.forecasts[0].forecast
assert forecast.estimable
assert forecast.low_hours > 0
assert forecast.high_hours >= forecast.low_hours
html = render_view(view)
assert "Time to finish" in html
assert "hours" in html
assert "from your last" in html # the window basis is disclosed, never hidden
assert check_html(html) == [] # the new section is accessible
def test_forecast_without_page_stat_is_honestly_unestimated() -> None:
# A currently-reading book with no reading stat can't be forecast; it must
# say so rather than guess (unknown stays first-class).
state = ReadingState(
title="No Stats Yet",
authors=("Author Two",),
status=ReadingStatus.READING,
)
view = build_view([state], [DailyActivity(1, 600, 10)], ())
assert len(view.forecasts) == 1
assert not view.forecasts[0].forecast.estimable
html = render_view(view)
assert "not enough recent reading to estimate" in html