Skip to content

Commit b2f7e79

Browse files
committed
#168 tests for transcript views
1 parent c5c60f4 commit b2f7e79

File tree

6 files changed

+460
-1
lines changed

6 files changed

+460
-1
lines changed

cast/devdata.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
from uuid import uuid4
66

77
from django.contrib.auth.models import Group, User
8+
from django.core.files.base import ContentFile
89
from django.core.files.uploadedfile import SimpleUploadedFile
910
from wagtail.images.models import Image
1011
from wagtail.models import Site
1112

12-
from cast.models import Audio, Blog, Gallery, Post, Video
13+
from cast.models import Audio, Blog, Gallery, Post, Transcript, Video
1314

1415

1516
class _Auto:
@@ -52,6 +53,18 @@ def create_image() -> Image:
5253
return image
5354

5455

56+
def create_transcript(*, audio: Audio = Auto, podlove: dict = Auto) -> Transcript:
57+
if not audio:
58+
audio = create_audio()
59+
transcript = Transcript.objects.create(audio=audio)
60+
if podlove:
61+
podlove_content = json.dumps(podlove, indent=2)
62+
transcript.podlove.save("podlove.json", ContentFile(podlove_content))
63+
transcript.save()
64+
65+
return transcript
66+
67+
5568
def create_gallery(*, images: list[Image] = Auto) -> Gallery:
5669
gallery = Gallery.objects.create()
5770
gallery.images.add(*images)

cast/models/transcript.py

+3
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ class Transcript(CollectionMember, index.Indexed, models.Model):
3030
)
3131

3232
admin_form_fields: tuple[str, ...] = ("audio", "podlove", "vtt", "dote")
33+
34+
class Meta:
35+
ordering = ("-id",)

cast/views/wagtail_pagination.py

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ def paginate(
1616
page_key: str = DEFAULT_PAGE_KEY,
1717
per_page: int = MENU_ITEM_PAGINATION,
1818
) -> tuple[Paginator, Page]:
19+
# if not items.query.order_by:
20+
# items = items.order_by("id")
1921
paginator: Paginator = Paginator(items, per_page)
2022
page = paginator.get_page(request.GET.get(page_key))
2123
return paginator, page

docs/releases/0.2.42.rst

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ Django settings to make sure that the fulltext search works:
1717
- #176 Fix tox.ini use of uv
1818
- #176 Fix pyproject.toml dev dependencies
1919
- #176 Fix github actions
20+
- #168 Tests for transcripts -> coverage back at 100%

tests/conftest.py

+26
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from wagtail.models import Site
1919

2020
from cast import appsettings
21+
from cast.devdata import create_transcript
2122
from cast.models import Audio, ChapterMark, File, ItunesArtWork, Video
2223

2324
from .factories import (
@@ -145,6 +146,26 @@ def m4a_audio(fixture_dir):
145146
return simple_m4a
146147

147148

149+
@pytest.fixture()
150+
def podlove_transcript():
151+
podlove = {
152+
"transcripts": [
153+
{
154+
"start": "00:00:00.620",
155+
"start_ms": 620,
156+
"end": "00:00:05.160",
157+
"end_ms": 5160,
158+
"speaker": "",
159+
"voice": "",
160+
"text": "Ja, hallo liebe Hörerinnen und Hörer. Willkommen beim Python-Podcast in der 5ten Episode.",
161+
}
162+
]
163+
}
164+
return SimpleUploadedFile(
165+
name="pp_05.podlove.json", content=json.dumps(podlove).encode("utf-8"), content_type="application/json"
166+
)
167+
168+
148169
# Models
149170
@pytest.fixture()
150171
def user():
@@ -209,6 +230,11 @@ def chaptermarks(audio):
209230
return results
210231

211232

233+
@pytest.fixture()
234+
def transcript(audio):
235+
return create_transcript(audio=audio)
236+
237+
212238
@pytest.fixture()
213239
def file_instance(user, m4a_audio):
214240
file_instance = File(user=user, original=m4a_audio)

0 commit comments

Comments
 (0)