From 5170f492b95dc81b75230312411c5fdb0019eed2 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 10 May 2023 09:28:42 +0200 Subject: Try to have more robust live tests --- shared/server-commands/videos/live-command.ts | 2 +- .../videos/streaming-playlists-command.ts | 78 ++++++++++++++++------ 2 files changed, 60 insertions(+), 20 deletions(-) (limited to 'shared/server-commands/videos') diff --git a/shared/server-commands/videos/live-command.ts b/shared/server-commands/videos/live-command.ts index dc3c5a86e..2e4bc10b5 100644 --- a/shared/server-commands/videos/live-command.ts +++ b/shared/server-commands/videos/live-command.ts @@ -224,7 +224,7 @@ export class LiveCommand extends AbstractCommand { const video = await server.videos.get({ id: videoUUID }) const hlsPlaylist = video.streamingPlaylists[0] - const shaBody = await server.streamingPlaylists.getSegmentSha256({ url: hlsPlaylist.segmentsSha256Url }) + const shaBody = await server.streamingPlaylists.getSegmentSha256({ url: hlsPlaylist.segmentsSha256Url, withRetry: objectStorage }) if (!shaBody[segmentName]) { throw new Error('Segment SHA does not exist') diff --git a/shared/server-commands/videos/streaming-playlists-command.ts b/shared/server-commands/videos/streaming-playlists-command.ts index 7b92dcc0a..950808b60 100644 --- a/shared/server-commands/videos/streaming-playlists-command.ts +++ b/shared/server-commands/videos/streaming-playlists-command.ts @@ -44,31 +44,71 @@ export class StreamingPlaylistsCommand extends AbstractCommand { } } - getFragmentedSegment (options: OverrideCommandOptions & { + async getFragmentedSegment (options: OverrideCommandOptions & { url: string range?: string + + withRetry?: boolean // default false + currentRetry?: number }) { - return unwrapBody(this.getRawRequest({ - ...options, - - url: options.url, - range: options.range, - implicitToken: false, - responseType: 'application/octet-stream', - defaultExpectedStatus: HttpStatusCode.OK_200 - })) + const { withRetry, currentRetry = 1 } = options + + try { + const result = await unwrapBody(this.getRawRequest({ + ...options, + + url: options.url, + range: options.range, + implicitToken: false, + responseType: 'application/octet-stream', + defaultExpectedStatus: HttpStatusCode.OK_200 + })) + + return result + } catch (err) { + if (!withRetry || currentRetry > 5) throw err + + await wait(100) + + return this.getFragmentedSegment({ + ...options, + + withRetry, + currentRetry: currentRetry + 1 + }) + } } - getSegmentSha256 (options: OverrideCommandOptions & { + async getSegmentSha256 (options: OverrideCommandOptions & { url: string + + withRetry?: boolean // default false + currentRetry?: number }) { - return unwrapBodyOrDecodeToJSON<{ [ id: string ]: string }>(this.getRawRequest({ - ...options, - - url: options.url, - contentType: 'application/json', - implicitToken: false, - defaultExpectedStatus: HttpStatusCode.OK_200 - })) + const { withRetry, currentRetry = 1 } = options + + try { + const result = await unwrapBodyOrDecodeToJSON<{ [ id: string ]: string }>(this.getRawRequest({ + ...options, + + url: options.url, + contentType: 'application/json', + implicitToken: false, + defaultExpectedStatus: HttpStatusCode.OK_200 + })) + + return result + } catch (err) { + if (!withRetry || currentRetry > 5) throw err + + await wait(100) + + return this.getSegmentSha256({ + ...options, + + withRetry, + currentRetry: currentRetry + 1 + }) + } } } -- cgit v1.2.3