1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 09:49:20 +02:00

Fix CI tests

This commit is contained in:
Chocobozzz 2024-02-12 11:22:51 +01:00
parent ca90b8f651
commit 11458a747c
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 11 additions and 3 deletions

View file

@ -50,7 +50,13 @@ describe('Object storage for video static file privacy', function () {
for (const file of getAllFiles(video)) {
const internalFileUrl = await sqlCommand.getInternalFileUrl(file.id)
expectStartWith(internalFileUrl, ObjectStorageCommand.getScalewayBaseUrl())
await makeRawRequest({ url: internalFileUrl, token: server.accessToken, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
const { text } = await makeRawRequest({
url: internalFileUrl,
token: server.accessToken,
expectedStatus: HttpStatusCode.BAD_REQUEST_400
})
expect(text).to.contain('Unsupported Authorization Type')
}
const hls = getHLS(video)