* docs(playback): add v3 neutral-contract finalization plan Supersedes the wire-contract sections of the 2026-07-12 v3 plan: server-owned attempt keys, delivery-keyed negotiation without Media3 engine names, tiered capability evidence, neutral device/output context, track/quality replan operations, audio-only planning, and coordinated no-back-compat rollout across server, Android, Apple, and web. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(playback): make v3 attempt keys server-owned and replace engines with deliveries Contract core of the platform-neutral v3 finalization (plan sections 3.1 and 3.2), breaking on purpose — v3 is dark and all clients move together: - Every PlanV3 now carries plan_attempt_key, an opaque server-computed token clients store and echo in attempted_plan_keys; ReplanRequestV3 gains bounded local_mutations that the replan handler folds into the failed plan's key. Clients never hash anything. - KotlinName() is deleted from DeliveryV3, StreamProtocolV3 and SubtitleModeV3; the attempt-key canonical string now uses lowercase wire tokens, and PlanRecipeVersionV3 bumps to v3.3 so no key or plan ID computed under the old canonicalization can collide. - EngineV3 leaves the wire: ClientPlaybackContextV3.Engines (media3_*) becomes Deliveries keyed original_http|progressive|hls, with EngineCapabilityV3 renamed DeliveryCapabilityV3. PlanV3.Engine is removed; the planner, subtitle policy and quirk registry re-key on delivery class, and the media3_only feature token is deleted. - Validated-claim strings drop the prefix: media3_h264_decode -> h264_decode, media3_audio_decode -> audio_decode. - Golden fixtures in testdata/protocol_v3 are regenerated by Go and are now the cross-repo source of truth. Part of the playback protocol v3 neutral-contract train (steps 2-3 of docs/superpowers/plans/2026-07-30-playback-protocol-v3-neutral-contract.md). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(playback): add v3 evidence tiers and neutral device/output context Implement plan sections 3.3 and 3.4 of the v3 neutral-contract pass: - ClientCodecCapabilitiesV3 gains required video_evidence and audio_evidence closed enums (exact | platform_attested | declared). Planner strictness follows the tier: exact keeps the strict decode-entry validation, platform_attested validates codec/resolution/bit-depth/ frame-rate but skips profile/level matching, declared grants copy routes from the flat codec lists. Only exact audio evidence earns passthrough claims. The detailed_decode_capabilities feature token is deleted (subsumed by video_evidence=exact), and evidence-blocked direct routes carry the new evidence_insufficient_for_direct reason/warning. - DeviceContextV3 is now platform/os_version/manufacturer/model plus a bounded platform_details map (<=16 entries, <=128 chars); the Android Build dump fields are gone. Fire TV quirks keep matching on manufacturer/model (brand fallback removed with the field). - output_route_generation (int64, dual-location) becomes an optional opaque output_context_id string on the output context; the dual-location consistency validation is deleted. Attempt keys, plan invalidation, route events, and the planstore column follow (new Goose migration). - Feature advertisement collapses to the top-level client_features list only; ClientPlaybackContextV3.Features is deleted and ReplanRequestV3 gains an optional client_features refresh. - PlanRecipeVersionV3 bumped v3.3 -> v3.4; fixtures re-keyed. Part of the playback protocol v3 neutral-contract finalization plan (docs/superpowers/plans/2026-07-30-playback-protocol-v3-neutral-contract.md). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(playback): add v3 intent replans, quality menu, and audio-only routes Protocol v3 could only replan after a failure, so changing the audio track or the quality still required the legacy audio PATCH and the client-recipe transcode start — the two endpoints v3 is meant to replace. Clients also had to own a resolution ladder to render a quality menu, and a source with no video track was terminaled by the video/HDR gates, keeping audiobooks on the legacy path. Add track_change and quality_change replan operations. They carry no failure classification and route through the existing replan transaction, so they inherit its idempotency, capacity reservation, and staged-successor commit for free. Because nothing failed, the previous route stays eligible: neither the attempted-key history nor the failed-plan exclusion applies to them. Publish the server ladder on the plan as available_qualities so the quality menu is server-owned; the rungs come from the same resolutionLabelV3 and ladderBitrateKbpsV3 helpers the planner itself uses, not a parallel table. Plan audio-only sources through their own reduced route family: original_http when the client decodes the codec, otherwise a progressive AAC conversion. The plan advertises audio/mp4 for that remux and the transport now serves the same value, because a declared-tier client probes the advertised MIME with isTypeSupported before attaching a source buffer, and "video/mp4" on a stream with no video track is exactly the mismatch that makes the probe lie. Name the protocol's string vocabulary (dynamic ranges, transformations, executors, validated claims, terminal reasons) as constants while touching these lines, so the wire values have one definition. Part of #135 * docs(playback): publish the v3 protocol contract and fix subtitle ordinals Protocol v3 exists only as Go code today, so the Android and Apple ports have no authority to implement against other than reading this repository. Publish the contract as a normative document, machine-checkable schemas, and generated golden fixtures, and fix the one place where the server's own wire output disagreed with the ordinal space it publishes. - docs/architecture/playback-protocol-v3.md is self-contained enough for a third-party client: endpoints and status codes, evidence tiers and their bound-matching rules, delivery classes, the timeline model, replan semantics, registries, track identity, plan identity, quality, and transformations. - docs/design/schemas/playback-v3/ carries JSON Schemas for the five wire shapes plus valid and invalid fixtures, following the client-diagnostics layout. internal/playback/contract validates every fixture against its schema, so a schema that drifts from the Go types fails the Go suite. - cmd/playbackfixtures generates internal/playback/testdata/protocol_v3 from the production planner. `make playback-fixtures` writes them and `make verify-playback-fixtures` (wired into CI) fails when they are stale. These files are what the client ports consume, so drift would otherwise surface as a playback bug on three platforms at once. The subtitle fix: combined ordinals are one dense space over externals, then embedded tracks, then downloaded ones, but the legacy URL builder skipped burn-in-only tracks while assigning indices, so every track after a DVD/DVB track was numbered one too low and resolved to its neighbour. Ordinal assignment now lives in playback.BuildSubtitleInventoryV3 and both the plan inventory and the legacy `subtitle_urls` shape project from it; the legacy shape still filters burn-in-only entries but keeps each track's real index. Part of #135 * feat(web): migrate the players to the neutral playback v3 contract The web player was the last client still speaking the legacy start protocol: it picked its own file version from a codec probe, posted an ffmpeg recipe to start a transcode, PATCHed an endpoint to change audio tracks, and derived its own quality ladder. None of that survives a server-owned plan, and none of it produced telemetry the apps could be compared against. Video player: starts with a v3 request that advertises `declared` evidence from `isTypeSupported` probes and the three delivery classes, then consumes the returned plan for its URL, timeline, tracks and warnings. Quality and track changes become replans (`quality_change`, `track_change`), the quality menu renders `available_qualities` instead of computing rungs, and playback failures emit `route-events` so web failures land in the same diagnostics as Android and Apple. The duration comes from `source.duration_seconds` rather than the playback engine, and the "how was this delivered" overlay reads the plan's delivery and server transformations instead of comparing codec strings. Audiobook player: starts against the audio-only planner path with a single `original` rung, and takes its seek anchor from `timeline.player_start_seconds` so the progressive-remux route (which anchors the stream and restarts the player clock at zero) does not seek twice. Server side, `disable_progress_persistence` left the wire, so the rule it encoded is now derived. Resume state is keyed on the item, but every part of a multipart presentation shares that key while carrying its own file-local clock — persisting part 4's position would store "12 minutes in" as the book's resume point. `PresentationPartTotal > 1` expresses that directly and generalizes to multipart movies and split episodes, and a client can no longer forget to ask or lie about it. `useTranscodeQuality` and the legacy response types are deleted, and `WEBTEST_KNOWN_FAILURES` loses the audiobook entry along with its fix. Part of #135 * feat(playback)!: make v3 the only playback protocol Protocol v3 shipped behind a flag, alongside the legacy start path it was designed to replace. Running both meant every planner change had to be made twice, in two shapes that disagree about who decides the route: the legacy body carried a decision the client had already made, while v3 asks the server to make it. This deletes the legacy half. Removed: - `handleStartPlaybackLegacy` and its request/response bodies. The `POST /playback/start` route stays, but the protocol-version dispatch envelope is now a strict v3 decode — a body that does not declare `protocol_version: 3` gets `426 client_upgrade_required` so an outdated app can render a clear "update required" state instead of misreading a plan. Deliberately not a `400`: the request may be well-formed for the protocol it was written against. - `POST /playback/transcode/start`, superseded by the `quality_change` replan operation, and `PATCH /playback/{session_id}/audio`, superseded by `track_change`. Both mutated a session without re-planning. - The shadow planner and both rollout settings rows. With v3 the only protocol, `playback.protocol_v3_enabled` would mean "no playback at all"; `playback.protocol_v3_shadow_enabled` gated a comparison against a path that no longer exists. `409 protocol_disabled` on route-events goes with them, and capability `enabled` is now constant `true` (the field stays — clients feature-detect against it). - Version-selection helpers in `internal/playback/resolver.go` that only legacy start reached. `Resolve`/`ClientCapabilities`/`PlayDecision` stay: downloads consumes them. `internal/jellycompat` has its own resolution surface and is untouched. Behaviour the legacy handlers owned and v3 now owns explicitly: series version and audio-track preferences are persisted on start and on a `track_change` replan (not on failure recovery, whose forced route is not a user choice); an omitted `start_position` resolves to the profile's saved resume point; and an omitted audio track resolves through the series preference, the profile audio language, then the library override. Both are settled before planning, because the plan's timeline is cut at the start position. Spec §2.2 documents this as "omission is a request, not a default". The encode-target clamp that lived in the deleted transcode handler is already enforced in the planner, twice — `availableQualitiesV3` omits rungs at or above the source height, and the encode path clamps `targetHeight` to it. Unchanged: progress, stop, HLS manifest and segment delivery, the realtime control socket, stream tokens and restart reconstruction, watch together, downloads, jellycompat. Every removal is recorded in the pre-lock removals table in docs/architecture/v1-scope.md. Part of #135 * fix(scanner): stop recording embedded cover art as a video track ffprobe reports embedded cover art as a video stream carrying disposition.attached_pic. convertProbeData appended every "video" stream to VideoTracks without consulting isMainVideoStream, the predicate that already existed for duration decisions, so the picture was persisted as a playable track. That misreports the file twice: - An audio file with a cover picks up a video track, so it no longer satisfies MediaFile.IsAudioOnly and the v3 planner routes an audiobook through the video path instead of planAudioOnlyV3. - When the picture is ordered ahead of the real stream, the flat codec_video/resolution/hdr columns describe the poster: a 954x720 h264 episode was stored as mjpeg 480x480. Filter attached_pic streams out of the track loop. The guard is the disposition flag, not the codec name, so a genuine MJPEG video is still probed as video — the library has one. Already-probed rows self-heal on the next playback: NeedsCriticalProbeRepair already reprobes tracks missing color_range, which covers 21 of the 23 affected rows, and applyProbeData overwrites VideoTracks wholesale. The remaining two need a rescan; nothing persisted records attached_pic, and keying repair off still-image codec names would reprobe the genuine MJPEG file on every playback forever. Part of the playback v3 neutral-contract work: it is what lets Android drop AUDIOBOOK_COVER_ART_CODECS, which fabricated decode support the client cannot honestly claim under video_evidence: "exact". Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * fix(playback): publish subtitle URLs even when playback starts with subtitles off The v3 plan's subtitle inventory is the authoritative track list a client builds its subtitle menu from, but the handler only rewrote it with session-scoped URLs when a track was actually selected. A start or replan that resolved to `subtitle.mode: "off"` therefore returned the planner's URL-less inventory, so a client whose picker reads the inventory had a menu it could not fetch anything from. The Cast path hits this every time: it starts with subtitles off and needs the receiver's text tracks up front. attachSubtitleArtifactV3 now scopes and publishes the inventory unconditionally and gates only the artifact stamping on the selection. Spec §8 records that the `url` on a sidecar entry does not depend on the current selection. Part of the v3 neutral-contract finalization. * chore(playback): reconcile neutral v3 with main * fix(playback): preserve subtitle intent across replans * fix(playback): retain subtitle inventory on adapted routes * fix(playback): software-decode High10 AVC for QSV * fix(playback): scale High10 frames before QSV upload * fix(playback): preserve empty subtitle inventories * fix(playback): freeze terminal attempt contract * chore(playback): name fixture contract tokens * fix(playback): close v3 conformance review gaps * chore(playback): name conformance category * fix(playback): complete v3 conformance contract * fix(playback): keep schema fixtures generated * fix(playback): emit schema-valid conformance arrays * fix(playback): omit empty replan failures * fix(web): omit empty replan failures * fix(playback): close neutral v3 contract gaps * fix(playback): harden v3 replan, transcode, and quality-ladder edge cases Review remediation for the neutral v3 cutover, server side: - A failed replan no longer overwrites the durable StartResponse with a terminal or advances the replan request ID; an idempotent start replay of a still-healthy session returns the original plan. - SoftwareVideoDecode is now derived inside the transcode layer from source facts (codec/profile/bit depth) carried on TranscodeOpts, so jellycompat, downloads, recipe-card reconstruction, and transcode nodes get the High10 software-decode fix, not just the v3 handler. video_to_h264 recipe version bumps to 2 so mixed-version node pools that would silently drop the flag fail validation instead. - Local transport startup shares the 30s ManifestStartupTimeout; a timeout with the process still running stays retryable and is no longer persisted as a durable terminal against the attempt. - Sparse replan bodies (failure_recovery et al) no longer reset a user-selected quality preference to auto; the empty-value guard now covers every operation. - availableQualitiesV3 publishes no fixed rungs when the source height is unknown, keeping the no-upscaling ladder contract. - The proxy remux path serves audio-only fMP4 as audio/mp4 via a new additive AudioOnly token claim, matching the integrated path. - Plain text subtitle sidecars accept any requested extension again (served as VTT), restoring the permissive v1 behavior; ASS and bitmap handling is unchanged. - The 4K-disallowed terminal message discloses when a lower-resolution alternate exists but was pinned away by quality "original". Part of #135. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(web): keep playback alive through failed replans and honest audio claims Review remediation for the neutral v3 cutover, web player: - A failed or refused replan no longer unmounts the player: the fatal error screen is reserved for loads with no adopted plan, and replan failures surface through the existing non-fatal replanError path. - changeQuality rolls its optimistic preference back when the replan is refused or errors, so a failed switch is not silently applied by the next unrelated replan and the menu shows the real active rung. - The capability probe now tests mp3/vorbis codecs and mp3/flac/ogg containers (MediaSource with a canPlayType fallback), restoring direct play for mp3 audiobooks instead of per-part AAC re-encodes. - Reanchor seeks issued while a replan is in flight coalesce and run when it settles instead of being silently dropped with the scrubber pinned to a phantom position. - Subtitle refresh/translation replans use the resume anchor while the media element has no metadata, so a subtitle_ready broadcast during startup no longer restarts a resumed stream at 0:00. - An exhausted failure-recovery chain sets a visible error instead of returning silently. Part of #135. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(playback): accept video-only and VP9 probe metadata Treat audio and video probe completeness independently so legitimate video-only assets converge without repeated ffprobe repair. Allow unknown codec profile/level metadata to fall through to server adaptation while preserving exact direct-decode constraints. Fixes #574 * fix(playback): address protocol v3 review findings * fix(playback): harden lease and probe repair decisions * fix(playback): close remaining v3 review gaps * fix(playback): recover failed transcode starts * fix(playback): address remaining review-bot findings on v3 replan and audio planning Server: - The deferred replan lease release is bounded by a 3s timeout so a saturated pool or DB outage cannot wedge a handler goroutine that holds the per-session store lock on an uncancellable context. - planAudioOnlyV3 honors the request bandwidth cap: an over-cap source skips the original_http direct route and converts to AAC with the same bandwidth_cap_applied warning and decision reason the video ladder uses. Unknown source bitrate never triggers the cap. - A copy-audio progressive plan rejected only by a per-delivery audio_decode_codecs subset retries as an AAC conversion instead of returning adaptation_unavailable, and the AAC recipe respects the delivery's max_channels. Web: - failure_recovery replans issued while another replan is in flight queue (superseding a pending seek reanchor) instead of being silently dropped with the fatal overlay already suppressed. - A terminal response to a fresh non-preserving start clears the previous plan and stops its session, so episode navigation cannot keep rendering the prior item under the new title. - A refused recovery replan for a transport-dead plan surfaces the error and re-arms the plan failure key, so transient recovery failures no longer strand an endless spinner; the audiobook player gets the same guard reset. - A track-less subtitle_translation_completed hands off to the refreshed persisted track once the inventory settles, clearing the live overlay, instead of pinning the synthetic live track forever. Part of #135. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(playback): reuse HLS transport for sidecar replans * fix(playback): stabilize copy HLS remount timeline * fix(playback): address v3 review findings * fix(playback): satisfy player contract types --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
990 lines
29 KiB
Go
990 lines
29 KiB
Go
package playback
|
||
|
||
import (
|
||
"errors"
|
||
"fmt"
|
||
"math"
|
||
"os"
|
||
"path/filepath"
|
||
"strconv"
|
||
"strings"
|
||
"testing"
|
||
"time"
|
||
)
|
||
|
||
func TestBuildPlaybackManifest_CopyVideoUsesRealManifest(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:3",
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXT-X-INDEPENDENT-SEGMENTS",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
"#EXTINF:2.669000,",
|
||
"seg_00009.m4s",
|
||
"#EXTINF:1.669000,",
|
||
"seg_00010.m4s",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
// Create segment files so startupFilesReady passes.
|
||
for _, name := range []string{"init.mp4", "seg_00009.m4s", "seg_00010.m4s"} {
|
||
if err := os.WriteFile(filepath.Join(tempDir, name), []byte("x"), 0o644); err != nil {
|
||
t.Fatalf("write %s: %v", name, err)
|
||
}
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "copy",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 10,
|
||
},
|
||
}
|
||
|
||
got, err := session.BuildPlaybackManifest("segment/", "token=test")
|
||
if err != nil {
|
||
t.Fatalf("BuildPlaybackManifest: %v", err)
|
||
}
|
||
|
||
text := string(got)
|
||
for _, want := range []string{
|
||
"#EXT-X-PLAYLIST-TYPE:EVENT",
|
||
"#EXT-X-START:TIME-OFFSET=0.001,PRECISE=YES",
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXTINF:2.669000,",
|
||
"#EXTINF:1.669000,",
|
||
"#EXT-X-MAP:URI=\"segment/init.mp4?token=test\"",
|
||
"segment/seg_00009.m4s?token=test",
|
||
"segment/seg_00010.m4s?token=test",
|
||
} {
|
||
if !strings.Contains(text, want) {
|
||
t.Fatalf("manifest missing %q:\n%s", want, text)
|
||
}
|
||
}
|
||
if strings.Contains(text, "#EXT-X-PLAYLIST-TYPE:VOD") {
|
||
t.Fatalf("copy-mode manifest should not be synthetic VOD:\n%s", text)
|
||
}
|
||
}
|
||
|
||
func TestBuildPlaybackManifest_AdvancedCopyGenerationKeepsHistoricalRemountPosition(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
const producedSegments = 160
|
||
lines := []string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:2",
|
||
"#EXT-X-MEDIA-SEQUENCE:0",
|
||
"#EXT-X-INDEPENDENT-SEGMENTS",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
}
|
||
for i := range producedSegments {
|
||
lines = append(lines, "#EXTINF:2.000000,", fmt.Sprintf("seg_%05d.m4s", i))
|
||
}
|
||
lines = append(lines, "")
|
||
manifestPath := filepath.Join(tempDir, "stream.m3u8")
|
||
if err := os.WriteFile(manifestPath, []byte(strings.Join(lines, "\n")), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
for _, name := range []string{"init.mp4", "seg_00000.m4s", "seg_00001.m4s"} {
|
||
if err := os.WriteFile(filepath.Join(tempDir, name), []byte("x"), 0o644); err != nil {
|
||
t.Fatalf("write %s: %v", name, err)
|
||
}
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "copy",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 6_519,
|
||
},
|
||
}
|
||
got, err := session.BuildPlaybackManifest("segment/", "token=test")
|
||
if err != nil {
|
||
t.Fatalf("BuildPlaybackManifest: %v", err)
|
||
}
|
||
text := string(got)
|
||
for _, want := range []string{
|
||
"#EXT-X-PLAYLIST-TYPE:EVENT",
|
||
"#EXT-X-START:TIME-OFFSET=0.001,PRECISE=YES",
|
||
"segment/seg_00025.m4s?token=test",
|
||
"segment/seg_00159.m4s?token=test",
|
||
} {
|
||
if !strings.Contains(text, want) {
|
||
t.Fatalf("advanced manifest missing %q:\n%s", want, text)
|
||
}
|
||
}
|
||
timeline, err := parseManifestTimeline(got)
|
||
if err != nil {
|
||
t.Fatalf("parse advanced manifest: %v", err)
|
||
}
|
||
// A 51-second remount belongs to historical segment 25, not the produced
|
||
// edge at segment 159. The stable origin lets Media3 apply that seek after
|
||
// rebuilding its MediaSource instead of projecting the default to the edge.
|
||
historical := timeline.entries[int(51/2)]
|
||
if historical.number != 25 || historical.number >= timeline.entries[len(timeline.entries)-1].number {
|
||
t.Fatalf("historical remount segment = %d, produced edge = %d", historical.number, timeline.entries[len(timeline.entries)-1].number)
|
||
}
|
||
|
||
// Manifest stabilization is a pure presentation rewrite: when FFmpeg adds
|
||
// the next segment, cadence advances by exactly one and the same stable tags
|
||
// remain without duplication.
|
||
lines = append(lines[:len(lines)-1], "#EXTINF:2.000000,", "seg_00160.m4s", "")
|
||
if err := os.WriteFile(manifestPath, []byte(strings.Join(lines, "\n")), 0o644); err != nil {
|
||
t.Fatalf("advance manifest: %v", err)
|
||
}
|
||
advanced, err := session.BuildPlaybackManifest("segment/", "token=test")
|
||
if err != nil {
|
||
t.Fatalf("BuildPlaybackManifest after cadence advance: %v", err)
|
||
}
|
||
advancedTimeline, err := parseManifestTimeline(advanced)
|
||
if err != nil {
|
||
t.Fatalf("parse advanced cadence: %v", err)
|
||
}
|
||
if len(advancedTimeline.entries) != len(timeline.entries)+1 || advancedTimeline.entries[len(advancedTimeline.entries)-1].number != 160 {
|
||
t.Fatalf("advanced cadence = %d entries ending at %d", len(advancedTimeline.entries), advancedTimeline.entries[len(advancedTimeline.entries)-1].number)
|
||
}
|
||
if strings.Count(string(advanced), "#EXT-X-PLAYLIST-TYPE:EVENT") != 1 || strings.Count(string(advanced), "#EXT-X-START:") != 1 {
|
||
t.Fatalf("stable tags duplicated after manifest advance:\n%s", advanced)
|
||
}
|
||
}
|
||
|
||
func TestBuildPlaybackManifest_CopyVideoWithoutDurationUsesRealManifest(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:3",
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXT-X-INDEPENDENT-SEGMENTS",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
"#EXTINF:2.669000,",
|
||
"seg_00009.m4s",
|
||
"#EXTINF:1.669000,",
|
||
"seg_00010.m4s",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
for _, name := range []string{"init.mp4", "seg_00009.m4s", "seg_00010.m4s"} {
|
||
if err := os.WriteFile(filepath.Join(tempDir, name), []byte("x"), 0o644); err != nil {
|
||
t.Fatalf("write %s: %v", name, err)
|
||
}
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "copy",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 0, // unknown duration — must fall back to real manifest
|
||
},
|
||
}
|
||
|
||
got, err := session.BuildPlaybackManifest("segment/", "token=test")
|
||
if err != nil {
|
||
t.Fatalf("BuildPlaybackManifest: %v", err)
|
||
}
|
||
|
||
text := string(got)
|
||
for _, want := range []string{
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXTINF:2.669000,",
|
||
"#EXTINF:1.669000,",
|
||
"#EXT-X-MAP:URI=\"segment/init.mp4?token=test\"",
|
||
"segment/seg_00009.m4s?token=test",
|
||
"segment/seg_00010.m4s?token=test",
|
||
} {
|
||
if !strings.Contains(text, want) {
|
||
t.Fatalf("manifest missing %q:\n%s", want, text)
|
||
}
|
||
}
|
||
if strings.Contains(text, "#EXT-X-PLAYLIST-TYPE:VOD") {
|
||
t.Fatalf("real manifest should not be synthetic VOD:\n%s", text)
|
||
}
|
||
if strings.Contains(text, "#EXT-X-PLAYLIST-TYPE:EVENT") || strings.Contains(text, "#EXT-X-START:") {
|
||
t.Fatalf("unknown-duration manifest cannot promise append-only EVENT semantics:\n%s", text)
|
||
}
|
||
}
|
||
|
||
func TestBuildPlaybackManifest_EncodedTranscodeUsesSyntheticVODManifest(t *testing.T) {
|
||
session := &TranscodeSession{
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 5.1,
|
||
},
|
||
}
|
||
|
||
got, err := session.BuildPlaybackManifest("segment/", "token=test")
|
||
if err != nil {
|
||
t.Fatalf("BuildPlaybackManifest: %v", err)
|
||
}
|
||
|
||
text := string(got)
|
||
for _, want := range []string{
|
||
"#EXT-X-PLAYLIST-TYPE:VOD",
|
||
"#EXT-X-MEDIA-SEQUENCE:0",
|
||
"#EXTINF:2.000000,",
|
||
"#EXTINF:1.100000,",
|
||
"segment/seg_00000.ts?token=test",
|
||
"segment/seg_00002.ts?token=test",
|
||
} {
|
||
if !strings.Contains(text, want) {
|
||
t.Fatalf("manifest missing %q:\n%s", want, text)
|
||
}
|
||
}
|
||
if strings.Contains(text, "#EXT-X-MAP:") {
|
||
t.Fatalf("encoded manifest should not use fMP4 init map:\n%s", text)
|
||
}
|
||
}
|
||
|
||
func TestBuildPlaybackManifest_LongEncodedTranscodeUsesRealManifest(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:3",
|
||
"#EXT-X-TARGETDURATION:2",
|
||
"#EXT-X-MEDIA-SEQUENCE:0",
|
||
"#EXTINF:2.000000,",
|
||
"seg_00000.ts",
|
||
"#EXTINF:2.000000,",
|
||
"seg_00001.ts",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 1_000_000,
|
||
},
|
||
}
|
||
|
||
got, err := session.BuildPlaybackManifest("segment/", "token=test")
|
||
if err != nil {
|
||
t.Fatalf("BuildPlaybackManifest: %v", err)
|
||
}
|
||
|
||
text := string(got)
|
||
if strings.Contains(text, "#EXT-X-PLAYLIST-TYPE:VOD") ||
|
||
strings.Contains(text, "seg_499999.ts") {
|
||
t.Fatalf("long encoded manifest should not synthesize every segment:\n%s", text)
|
||
}
|
||
for _, want := range []string{
|
||
"#EXT-X-MEDIA-SEQUENCE:0",
|
||
"segment/seg_00000.ts?token=test",
|
||
"segment/seg_00001.ts?token=test",
|
||
} {
|
||
if !strings.Contains(text, want) {
|
||
t.Fatalf("manifest missing %q:\n%s", want, text)
|
||
}
|
||
}
|
||
}
|
||
|
||
func TestBuildSourceAlignedPlaybackManifestAnchorsSeekedRealPlaylist(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:3",
|
||
"#EXT-X-TARGETDURATION:2",
|
||
"#EXT-X-MEDIA-SEQUENCE:8",
|
||
"#EXTINF:2.000000,",
|
||
"seg_00008.ts",
|
||
"#EXTINF:2.000000,",
|
||
"seg_00009.ts",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 1_000_000,
|
||
SeekSeconds: 17.3,
|
||
StartSegmentNumber: 8,
|
||
},
|
||
}
|
||
|
||
got, err := session.BuildSourceAlignedPlaybackManifest("segment/", "source_timeline=1")
|
||
if err != nil {
|
||
t.Fatalf("BuildSourceAlignedPlaybackManifest: %v", err)
|
||
}
|
||
text := string(got)
|
||
for _, want := range []string{
|
||
"#EXT-X-VERSION:8",
|
||
"#EXT-X-TARGETDURATION:3",
|
||
"#EXT-X-MEDIA-SEQUENCE:0",
|
||
"#EXT-X-GAP\n#EXTINF:2.162500,\nsegment/source_timeline_gap.ts?source_timeline=1",
|
||
"segment/seg_00008.ts?source_timeline=1",
|
||
} {
|
||
if !strings.Contains(text, want) {
|
||
t.Fatalf("source-aligned manifest missing %q:\n%s", want, text)
|
||
}
|
||
}
|
||
if gap := strings.Index(text, "source_timeline_gap.ts"); gap < 0 || gap > strings.Index(text, "seg_00008.ts") {
|
||
t.Fatalf("timeline gap must precede the first real segment:\n%s", text)
|
||
}
|
||
if count := strings.Count(text, "#EXT-X-GAP"); count != 8 {
|
||
t.Fatalf("timeline gap count = %d, want 8:\n%s", count, text)
|
||
}
|
||
}
|
||
|
||
func TestCanGenerateSyntheticManifestBoundsSegmentCount(t *testing.T) {
|
||
if !CanGenerateSyntheticManifest(100_000, 2) {
|
||
t.Fatal("historical 50,000-segment manifest should remain supported")
|
||
}
|
||
if CanGenerateSyntheticManifest(100_001, 2) {
|
||
t.Fatal("manifest above 50,000 segments should use the real playlist")
|
||
}
|
||
}
|
||
|
||
func TestBuildPlaybackManifest_UnknownDurationRejectsBrokenManifest(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:0",
|
||
"#EXT-X-MEDIA-SEQUENCE:1390",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
"#EXTINF:0.000000,",
|
||
"seg_01390.m4s",
|
||
"#EXTINF:0.000000,",
|
||
"seg_01391.m4s",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
for _, name := range []string{"init.mp4", "seg_01390.m4s", "seg_01391.m4s"} {
|
||
if err := os.WriteFile(filepath.Join(tempDir, name), []byte("x"), 0o644); err != nil {
|
||
t.Fatalf("write %s: %v", name, err)
|
||
}
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
running: true,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "copy",
|
||
TargetCodecAudio: "aac",
|
||
SegmentDuration: 2,
|
||
TotalDuration: 0, // unknown duration — forces real manifest path
|
||
},
|
||
}
|
||
|
||
if _, err := session.BuildPlaybackManifest("segment/", "token=test"); err == nil {
|
||
t.Fatal("expected BuildPlaybackManifest to reject zero-duration manifest")
|
||
} else if !strings.Contains(err.Error(), "invalid copy playback manifest") {
|
||
t.Fatalf("unexpected error: %v", err)
|
||
}
|
||
}
|
||
|
||
func TestRewriteManifestPaths_RejectsInvalidManifest(t *testing.T) {
|
||
cases := []struct {
|
||
name string
|
||
manifest string
|
||
}{
|
||
{name: "empty", manifest: ""},
|
||
{name: "missing header", manifest: "#EXTINF:2.0,\nseg_00000.m4s\n"},
|
||
{name: "bad map", manifest: "#EXTM3U\n#EXT-X-MAP:BYTERANGE=\"720@0\"\n"},
|
||
}
|
||
|
||
for _, tc := range cases {
|
||
t.Run(tc.name, func(t *testing.T) {
|
||
if _, err := RewriteManifestPaths([]byte(tc.manifest), "segment/", ""); err == nil {
|
||
t.Fatalf("expected RewriteManifestPaths to fail for %s", tc.name)
|
||
}
|
||
})
|
||
}
|
||
}
|
||
|
||
func TestTranscodeSession_SegmentStartTimeUsesManifestTimeline(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:3",
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
"#EXTINF:2.669000,",
|
||
"seg_00009.m4s",
|
||
"#EXTINF:1.669000,",
|
||
"seg_00010.m4s",
|
||
"#EXTINF:1.668000,",
|
||
"seg_00011.m4s",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
SeekSeconds: 18.261,
|
||
TargetCodecVideo: "copy",
|
||
},
|
||
}
|
||
|
||
tests := []struct {
|
||
segment int
|
||
want float64
|
||
}{
|
||
{segment: 9, want: 18.261},
|
||
{segment: 10, want: 20.93},
|
||
{segment: 11, want: 22.599},
|
||
}
|
||
|
||
for _, tc := range tests {
|
||
got, ok, err := session.SegmentStartTime(tc.segment)
|
||
if err != nil {
|
||
t.Fatalf("SegmentStartTime(%d): %v", tc.segment, err)
|
||
}
|
||
if !ok {
|
||
t.Fatalf("SegmentStartTime(%d) reported segment missing", tc.segment)
|
||
}
|
||
if math.Abs(got-tc.want) > 0.0001 {
|
||
t.Fatalf("SegmentStartTime(%d) = %.6f, want %.6f", tc.segment, got, tc.want)
|
||
}
|
||
}
|
||
|
||
if _, ok, err := session.SegmentStartTime(12); err != nil {
|
||
t.Fatalf("SegmentStartTime(12): %v", err)
|
||
} else if ok {
|
||
t.Fatal("SegmentStartTime(12) should report missing segment")
|
||
}
|
||
}
|
||
|
||
func TestRestartSeekTarget_CopyModeUsesManifestTimelineWhenAvailable(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:3",
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
"#EXTINF:2.669000,",
|
||
"seg_00009.m4s",
|
||
"#EXTINF:1.669000,",
|
||
"seg_00010.m4s",
|
||
"#EXTINF:1.668000,",
|
||
"seg_00011.m4s",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
SeekSeconds: 18.261,
|
||
StreamOriginSeconds: 18,
|
||
CopySeekAnchorResolved: true,
|
||
TargetCodecVideo: "copy",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 9,
|
||
},
|
||
}
|
||
|
||
got, ok, err := session.RestartSeekTarget(10)
|
||
if err != nil {
|
||
t.Fatalf("RestartSeekTarget: %v", err)
|
||
}
|
||
if !ok {
|
||
t.Fatal("RestartSeekTarget returned ok=false")
|
||
}
|
||
if math.Abs(got-20.669) > 0.0001 {
|
||
t.Fatalf("RestartSeekTarget(10) = %.6f, want 20.669", got)
|
||
}
|
||
}
|
||
|
||
func TestRestartSeekTarget_CopyModeReportsUnresolvedWhenSegmentOutsideManifest(t *testing.T) {
|
||
// Copy-mode fragments have variable durations, so a segment the manifest
|
||
// can't yet place must NOT fall back to fixed-duration seg×dur math (which
|
||
// would seek FFmpeg to the wrong source time and desync A/V). Instead it
|
||
// reports the seek target as unresolved (0, false, nil).
|
||
tempDir := t.TempDir()
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:3",
|
||
"#EXT-X-MEDIA-SEQUENCE:9",
|
||
"#EXT-X-MAP:URI=\"init.mp4\"",
|
||
"#EXTINF:2.669000,",
|
||
"seg_00009.m4s",
|
||
"#EXTINF:1.669000,",
|
||
"seg_00010.m4s",
|
||
"",
|
||
}, "\n")
|
||
if err := os.WriteFile(filepath.Join(tempDir, "stream.m3u8"), []byte(manifest), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
SeekSeconds: 18.261,
|
||
TargetCodecVideo: "copy",
|
||
SegmentDuration: 2,
|
||
},
|
||
}
|
||
|
||
got, ok, err := session.RestartSeekTarget(50)
|
||
if err != nil {
|
||
t.Fatalf("RestartSeekTarget: %v", err)
|
||
}
|
||
if ok {
|
||
t.Fatalf("RestartSeekTarget(50) returned ok=true (got %f); copy-mode should report unresolved, not seg×dur", got)
|
||
}
|
||
if got != 0 {
|
||
t.Fatalf("RestartSeekTarget(50) = %f, want 0", got)
|
||
}
|
||
}
|
||
|
||
func TestRestartSeekTarget_EncodedUsesFixedDurationMath(t *testing.T) {
|
||
session := &TranscodeSession{
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
},
|
||
}
|
||
|
||
got, ok, err := session.RestartSeekTarget(50)
|
||
if err != nil {
|
||
t.Fatalf("RestartSeekTarget: %v", err)
|
||
}
|
||
if !ok {
|
||
t.Fatal("RestartSeekTarget returned ok=false")
|
||
}
|
||
if got != 100 {
|
||
t.Fatalf("RestartSeekTarget(50) = %f, want 100", got)
|
||
}
|
||
}
|
||
|
||
func TestRestartSeekTarget_CopyModeReportsUnresolvedWhenManifestNotReady(t *testing.T) {
|
||
// A freshly reconstructed copy-mode window has a near-empty/absent manifest
|
||
// (ErrManifestNotReady). The seek target must be reported unresolved
|
||
// (0, false, nil) so the caller retries instead of seeking to a fabricated
|
||
// seg×dur position.
|
||
session := &TranscodeSession{
|
||
outputDir: t.TempDir(), // no stream.m3u8 written -> ErrManifestNotReady
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "copy",
|
||
SegmentDuration: 2,
|
||
},
|
||
}
|
||
|
||
got, ok, err := session.RestartSeekTarget(10)
|
||
if err != nil {
|
||
t.Fatalf("RestartSeekTarget: %v", err)
|
||
}
|
||
if ok {
|
||
t.Fatalf("RestartSeekTarget(10) returned ok=true (got %f); copy-mode should report unresolved when manifest not ready", got)
|
||
}
|
||
if got != 0 {
|
||
t.Fatalf("RestartSeekTarget(10) = %f, want 0", got)
|
||
}
|
||
}
|
||
|
||
func TestWaitForSegment_RestartingSessionReturnsNotFoundInsteadOfTranscodeFailed(t *testing.T) {
|
||
session := &TranscodeSession{
|
||
outputDir: t.TempDir(),
|
||
restarting: true,
|
||
waitErr: errors.New("signal: killed"),
|
||
}
|
||
|
||
_, err := session.WaitForSegment("seg_00010.m4s", 5*time.Millisecond)
|
||
if !errors.Is(err, ErrSegmentNotFound) {
|
||
t.Fatalf("WaitForSegment error = %v, want ErrSegmentNotFound", err)
|
||
}
|
||
}
|
||
|
||
func TestSegmentProgressUsesManifestSequenceAndReadyFiles(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 224, 226, ".ts")
|
||
writeSegmentFile(t, tempDir, "seg_00224.ts", []byte("x"), now.Add(-2*time.Second))
|
||
writeSegmentFile(t, tempDir, "seg_00225.ts", []byte("x"), now.Add(-time.Second))
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 224,
|
||
},
|
||
}
|
||
|
||
progress := session.SegmentProgress(now)
|
||
if progress.ProducedHead != 225 {
|
||
t.Fatalf("ProducedHead = %d, want 225", progress.ProducedHead)
|
||
}
|
||
if progress.ProducedCount != 2 {
|
||
t.Fatalf("ProducedCount = %d, want 2", progress.ProducedCount)
|
||
}
|
||
if !progress.HasManifest {
|
||
t.Fatal("expected HasManifest=true")
|
||
}
|
||
}
|
||
|
||
func TestSegmentProgressIgnoresZeroByteFiles(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 224, 226, ".ts")
|
||
writeSegmentFile(t, tempDir, "seg_00224.ts", []byte("x"), now.Add(-2*time.Second))
|
||
writeSegmentFile(t, tempDir, "seg_00225.ts", []byte("x"), now.Add(-time.Second))
|
||
writeSegmentFile(t, tempDir, "seg_00226.ts", nil, now)
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 224,
|
||
},
|
||
}
|
||
|
||
progress := session.SegmentProgress(now)
|
||
if progress.ProducedHead != 225 {
|
||
t.Fatalf("ProducedHead = %d, want 225", progress.ProducedHead)
|
||
}
|
||
if progress.ProducedCount != 2 {
|
||
t.Fatalf("ProducedCount = %d, want 2", progress.ProducedCount)
|
||
}
|
||
}
|
||
|
||
func TestSegmentRecoveryDecisionWaitsForFreshNextSegment(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 224, 226, ".ts")
|
||
writeSegmentFile(t, tempDir, "seg_00224.ts", []byte("x"), now.Add(-2*time.Second))
|
||
writeSegmentFile(t, tempDir, "seg_00225.ts", []byte("x"), now.Add(-time.Second))
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
running: true,
|
||
lastRequestedSegment: 225,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 224,
|
||
},
|
||
}
|
||
|
||
decision := session.SegmentRecoveryDecision(226, now)
|
||
if !decision.Wait {
|
||
t.Fatalf("Wait = false, want true (reason=%s)", decision.Reason)
|
||
}
|
||
if decision.WaitTimeout != 12*time.Second {
|
||
t.Fatalf("WaitTimeout = %s, want 12s", decision.WaitTimeout)
|
||
}
|
||
if decision.Reason != "near_produced_head" {
|
||
t.Fatalf("Reason = %q, want near_produced_head", decision.Reason)
|
||
}
|
||
if decision.RestartOnTimeout {
|
||
t.Fatal("RestartOnTimeout = true, want false")
|
||
}
|
||
}
|
||
|
||
func TestSegmentRecoveryDecisionUsesLongerWaitForStartupSegment(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
running: true,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 0,
|
||
},
|
||
}
|
||
|
||
decision := session.SegmentRecoveryDecision(0, now)
|
||
if !decision.Wait {
|
||
t.Fatalf("Wait = false, want true (reason=%s)", decision.Reason)
|
||
}
|
||
if decision.WaitTimeout != 12*time.Second {
|
||
t.Fatalf("WaitTimeout = %s, want 12s", decision.WaitTimeout)
|
||
}
|
||
if decision.Reason != "startup_manifest_not_ready" {
|
||
t.Fatalf("Reason = %q, want startup_manifest_not_ready", decision.Reason)
|
||
}
|
||
if decision.RestartOnTimeout {
|
||
t.Fatal("RestartOnTimeout = true, want false")
|
||
}
|
||
}
|
||
|
||
func TestSegmentRecoveryDecisionRestartsWhenProducedOutputIsStale(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 224, 226, ".ts")
|
||
writeSegmentFile(t, tempDir, "seg_00224.ts", []byte("x"), now.Add(-12*time.Second))
|
||
writeSegmentFile(t, tempDir, "seg_00225.ts", []byte("x"), now.Add(-10*time.Second))
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
running: true,
|
||
lastRequestedSegment: 225,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 224,
|
||
},
|
||
}
|
||
|
||
decision := session.SegmentRecoveryDecision(226, now)
|
||
if decision.Wait {
|
||
t.Fatal("Wait = true, want false")
|
||
}
|
||
if !decision.RestartOnTimeout {
|
||
t.Fatal("RestartOnTimeout = false, want true")
|
||
}
|
||
if decision.Reason != "produced_output_stale" {
|
||
t.Fatalf("Reason = %q, want produced_output_stale", decision.Reason)
|
||
}
|
||
}
|
||
|
||
func TestSegmentRecoveryDecisionRestartsForJumpAheadRequest(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 224, 226, ".ts")
|
||
writeSegmentFile(t, tempDir, "seg_00224.ts", []byte("x"), now.Add(-2*time.Second))
|
||
writeSegmentFile(t, tempDir, "seg_00225.ts", []byte("x"), now.Add(-time.Second))
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
running: true,
|
||
lastRequestedSegment: 225,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 224,
|
||
},
|
||
}
|
||
|
||
decision := session.SegmentRecoveryDecision(261, now)
|
||
if decision.Wait {
|
||
t.Fatal("Wait = true, want false")
|
||
}
|
||
if decision.Reason != "request_beyond_produced_window" {
|
||
t.Fatalf("Reason = %q, want request_beyond_produced_window", decision.Reason)
|
||
}
|
||
}
|
||
|
||
func TestSegmentRecoveryDecisionDoesNotUseStaleRequestHistoryAsProducedHead(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 833, 833, ".ts")
|
||
writeSegmentFile(t, tempDir, "seg_00833.ts", []byte("x"), now.Add(-time.Second))
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
lastRequestedSegment: 2446,
|
||
running: true,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 833,
|
||
},
|
||
}
|
||
|
||
decision := session.SegmentRecoveryDecision(1597, now)
|
||
if decision.Wait {
|
||
t.Fatal("Wait = true, want false")
|
||
}
|
||
if decision.Progress.ProducedHead != 833 {
|
||
t.Fatalf("ProducedHead = %d, want 833", decision.Progress.ProducedHead)
|
||
}
|
||
if decision.Reason != "request_beyond_produced_window" {
|
||
t.Fatalf("Reason = %q, want request_beyond_produced_window", decision.Reason)
|
||
}
|
||
}
|
||
|
||
func TestTranscodeThrottlerUsesProducedHeadForGap(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
now := time.Now()
|
||
writeManifestRange(t, tempDir, 225, 293, ".ts")
|
||
for i := 225; i <= 293; i++ {
|
||
writeSegmentFile(t, tempDir, segmentFilename(i, TranscodeOpts{TargetCodecVideo: "h264"}), []byte("x"), now)
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
running: true,
|
||
lastRequestedSegment: 225,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "h264",
|
||
SegmentDuration: 2,
|
||
StartSegmentNumber: 225,
|
||
},
|
||
}
|
||
writer := &recordingWriteCloser{}
|
||
throttler := NewTranscodeThrottler(session, writer, 60, 2)
|
||
|
||
throttler.CheckOnce()
|
||
if !throttler.paused {
|
||
t.Fatal("expected throttler to pause")
|
||
}
|
||
if writer.writes != "p" {
|
||
t.Fatalf("writes = %q, want p", writer.writes)
|
||
}
|
||
|
||
writeManifestRange(t, tempDir, 225, 254, ".ts")
|
||
throttler.CheckOnce()
|
||
if throttler.paused {
|
||
t.Fatal("expected throttler to resume")
|
||
}
|
||
if writer.writes != "pu" {
|
||
t.Fatalf("writes = %q, want pu", writer.writes)
|
||
}
|
||
}
|
||
|
||
type recordingWriteCloser struct {
|
||
writes string
|
||
}
|
||
|
||
func (w *recordingWriteCloser) Write(p []byte) (int, error) {
|
||
w.writes += string(p)
|
||
return len(p), nil
|
||
}
|
||
|
||
func (w *recordingWriteCloser) Close() error {
|
||
return nil
|
||
}
|
||
|
||
func writeManifestRange(t *testing.T, dir string, first int, last int, ext string) {
|
||
t.Helper()
|
||
|
||
lines := []string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:3",
|
||
"#EXT-X-TARGETDURATION:2",
|
||
"#EXT-X-MEDIA-SEQUENCE:" + strconv.Itoa(first),
|
||
"#EXT-X-INDEPENDENT-SEGMENTS",
|
||
}
|
||
for i := first; i <= last; i++ {
|
||
lines = append(lines, "#EXTINF:2.000000,", fmt.Sprintf("seg_%05d%s", i, ext))
|
||
}
|
||
lines = append(lines, "")
|
||
|
||
if err := os.WriteFile(filepath.Join(dir, "stream.m3u8"), []byte(strings.Join(lines, "\n")), 0o644); err != nil {
|
||
t.Fatalf("write manifest: %v", err)
|
||
}
|
||
}
|
||
|
||
func writeSegmentFile(t *testing.T, dir string, name string, data []byte, modTime time.Time) {
|
||
t.Helper()
|
||
|
||
if err := os.WriteFile(filepath.Join(dir, name), data, 0o644); err != nil {
|
||
t.Fatalf("write segment %s: %v", name, err)
|
||
}
|
||
if err := os.Chtimes(filepath.Join(dir, name), modTime, modTime); err != nil {
|
||
t.Fatalf("chtimes segment %s: %v", name, err)
|
||
}
|
||
}
|
||
|
||
func TestCleanStaleSegments(t *testing.T) {
|
||
tempDir := t.TempDir()
|
||
|
||
// Create test files.
|
||
files := map[string]bool{
|
||
"init.mp4": true, // should survive
|
||
"stream.m3u8": false, // should be removed
|
||
"seg_00005.m4s": true, // before start segment — should survive
|
||
"seg_00006.m4s": true, // before start segment — should survive
|
||
"seg_00007.m4s": false, // at start segment — should be removed
|
||
"seg_00008.m4s": false, // after start segment — should be removed
|
||
"seg_00010.m4s": false, // after start segment — should be removed
|
||
"something.txt": true, // non-segment file — should survive
|
||
}
|
||
|
||
for name := range files {
|
||
if err := os.WriteFile(filepath.Join(tempDir, name), []byte("x"), 0o644); err != nil {
|
||
t.Fatalf("write %s: %v", name, err)
|
||
}
|
||
}
|
||
|
||
session := &TranscodeSession{
|
||
outputDir: tempDir,
|
||
opts: TranscodeOpts{
|
||
TargetCodecVideo: "copy",
|
||
},
|
||
}
|
||
|
||
session.cleanStaleSegments(7)
|
||
|
||
for name, shouldExist := range files {
|
||
_, err := os.Stat(filepath.Join(tempDir, name))
|
||
exists := err == nil
|
||
if exists != shouldExist {
|
||
if shouldExist {
|
||
t.Errorf("expected %s to survive cleanup, but it was removed", name)
|
||
} else {
|
||
t.Errorf("expected %s to be removed, but it still exists", name)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
func TestAppendManifestQueryParam(t *testing.T) {
|
||
manifest := strings.Join([]string{
|
||
"#EXTM3U",
|
||
"#EXT-X-VERSION:7",
|
||
"#EXT-X-TARGETDURATION:2",
|
||
"#EXT-X-MAP:URI=\"segment/init.mp4\"",
|
||
"#EXTINF:2.000000,",
|
||
"segment/seg_00000.ts",
|
||
"#EXTINF:2.000000,",
|
||
"segment/seg_00001.ts?existing=1",
|
||
"",
|
||
}, "\n")
|
||
|
||
got := string(AppendManifestQueryParam([]byte(manifest), "st", "TOKEN"))
|
||
for _, want := range []string{
|
||
"#EXT-X-MAP:URI=\"segment/init.mp4?st=TOKEN\"",
|
||
"segment/seg_00000.ts?st=TOKEN",
|
||
"segment/seg_00001.ts?existing=1&st=TOKEN",
|
||
} {
|
||
if !strings.Contains(got, want) {
|
||
t.Fatalf("rewritten manifest missing %q:\n%s", want, got)
|
||
}
|
||
}
|
||
// Tags and EXTINF lines must be untouched.
|
||
if !strings.Contains(got, "#EXT-X-TARGETDURATION:2") || strings.Contains(got, "#EXT-X-TARGETDURATION:2?st") {
|
||
t.Fatalf("non-URI tag was rewritten:\n%s", got)
|
||
}
|
||
}
|
||
|
||
func TestAppendManifestQueryParam_NonManifestUnchanged(t *testing.T) {
|
||
body := []byte("not a manifest\nsegment/seg_00000.ts\n")
|
||
if got := AppendManifestQueryParam(body, "st", "TOKEN"); string(got) != string(body) {
|
||
t.Fatalf("non-manifest body should be unchanged, got:\n%s", got)
|
||
}
|
||
if got := AppendManifestQueryParam([]byte("#EXTM3U\nseg.ts\n"), "", "TOKEN"); !strings.Contains(string(got), "seg.ts\n") || strings.Contains(string(got), "seg.ts?") {
|
||
t.Fatalf("empty key should be a no-op, got:\n%s", got)
|
||
}
|
||
}
|