Try to fix tests
This commit is contained in:
parent
63fa260a81
commit
34aa316f58
3 changed files with 45 additions and 11 deletions
|
@ -58,13 +58,16 @@ async function testVideoResolutions (options: {
|
|||
: originServer.url + '/static/streaming-playlists/hls'
|
||||
|
||||
if (objectStorage) {
|
||||
// Playlist file upload
|
||||
await wait(500)
|
||||
await originServer.live.waitUntilSegmentUpload({ playlistNumber: i, segment: segmentNum })
|
||||
await wait(1000)
|
||||
|
||||
expect(hlsPlaylist.segmentsSha256Url).to.contain(ObjectStorageCommand.getPlaylistBaseUrl())
|
||||
}
|
||||
|
||||
const subPlaylist = await originServer.streamingPlaylists.get({ url: `${baseUrl}/${video.uuid}/${i}.m3u8` })
|
||||
const subPlaylist = await originServer.streamingPlaylists.get({
|
||||
url: `${baseUrl}/${video.uuid}/${i}.m3u8`,
|
||||
withRetry: objectStorage // With object storage, the request may fail because of inconsistent data in S3
|
||||
})
|
||||
|
||||
expect(subPlaylist).to.contain(segmentName)
|
||||
|
||||
|
|
|
@ -172,6 +172,17 @@ export class LiveCommand extends AbstractCommand {
|
|||
return this.server.servers.waitUntilLog(`${videoUUID}/${segmentName}`, totalSessions * 2, false)
|
||||
}
|
||||
|
||||
waitUntilSegmentUpload (options: OverrideCommandOptions & {
|
||||
playlistNumber: number
|
||||
segment: number
|
||||
totalSessions?: number
|
||||
}) {
|
||||
const { playlistNumber, segment, totalSessions = 1 } = options
|
||||
const segmentName = `${playlistNumber}-00000${segment}.ts`
|
||||
|
||||
return this.server.servers.waitUntilLog(`${segmentName} in bucket `, totalSessions * 2, false)
|
||||
}
|
||||
|
||||
async waitUntilReplacedByReplay (options: OverrideCommandOptions & {
|
||||
videoId: number | string
|
||||
}) {
|
||||
|
|
|
@ -1,19 +1,39 @@
|
|||
import { wait } from '@shared/core-utils'
|
||||
import { HttpStatusCode } from '@shared/models'
|
||||
import { unwrapBody, unwrapTextOrDecode, unwrapBodyOrDecodeToJSON } from '../requests'
|
||||
import { unwrapBody, unwrapBodyOrDecodeToJSON, unwrapTextOrDecode } from '../requests'
|
||||
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
||||
|
||||
export class StreamingPlaylistsCommand extends AbstractCommand {
|
||||
|
||||
get (options: OverrideCommandOptions & {
|
||||
async get (options: OverrideCommandOptions & {
|
||||
url: string
|
||||
withRetry?: boolean // default false
|
||||
currentRetry?: number
|
||||
}) {
|
||||
return unwrapTextOrDecode(this.getRawRequest({
|
||||
...options,
|
||||
const { withRetry, currentRetry = 1 } = options
|
||||
|
||||
url: options.url,
|
||||
implicitToken: false,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
}))
|
||||
try {
|
||||
const result = await unwrapTextOrDecode(this.getRawRequest({
|
||||
...options,
|
||||
|
||||
url: options.url,
|
||||
implicitToken: false,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
}))
|
||||
|
||||
return result
|
||||
} catch (err) {
|
||||
if (!withRetry || currentRetry > 5) throw err
|
||||
|
||||
await wait(100)
|
||||
|
||||
return this.get({
|
||||
...options,
|
||||
|
||||
withRetry,
|
||||
currentRetry: currentRetry + 1
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
getFragmentedSegment (options: OverrideCommandOptions & {
|
||||
|
|
Loading…
Reference in a new issue