mirror of https://github.com/Chocobozzz/PeerTube
125 lines
3.7 KiB
TypeScript
125 lines
3.7 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
import { join } from 'path'
|
|
import { areMockObjectStorageTestsDisabled } from '@shared/core-utils'
|
|
import { HttpStatusCode, VideoDetails } from '@shared/models'
|
|
import {
|
|
cleanupTests,
|
|
createMultipleServers,
|
|
doubleFollow,
|
|
makeRawRequest,
|
|
ObjectStorageCommand,
|
|
PeerTubeServer,
|
|
setAccessTokensToServers,
|
|
waitJobs
|
|
} from '@shared/server-commands'
|
|
import { checkDirectoryIsEmpty, expectStartWith } from '../shared'
|
|
|
|
async function checkFiles (origin: PeerTubeServer, video: VideoDetails, objectStorage?: ObjectStorageCommand) {
|
|
for (const file of video.files) {
|
|
const start = objectStorage
|
|
? objectStorage.getMockWebVideosBaseUrl()
|
|
: origin.url
|
|
|
|
expectStartWith(file.fileUrl, start)
|
|
|
|
await makeRawRequest({ url: file.fileUrl, expectedStatus: HttpStatusCode.OK_200 })
|
|
}
|
|
|
|
const start = objectStorage
|
|
? objectStorage.getMockPlaylistBaseUrl()
|
|
: origin.url
|
|
|
|
const hls = video.streamingPlaylists[0]
|
|
expectStartWith(hls.playlistUrl, start)
|
|
expectStartWith(hls.segmentsSha256Url, start)
|
|
|
|
for (const file of hls.files) {
|
|
expectStartWith(file.fileUrl, start)
|
|
|
|
await makeRawRequest({ url: file.fileUrl, expectedStatus: HttpStatusCode.OK_200 })
|
|
}
|
|
}
|
|
|
|
describe('Test create move video storage job', function () {
|
|
if (areMockObjectStorageTestsDisabled()) return
|
|
|
|
let servers: PeerTubeServer[] = []
|
|
const uuids: string[] = []
|
|
const objectStorage = new ObjectStorageCommand()
|
|
|
|
before(async function () {
|
|
this.timeout(360000)
|
|
|
|
// Run server 2 to have transcoding enabled
|
|
servers = await createMultipleServers(2)
|
|
await setAccessTokensToServers(servers)
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
await objectStorage.prepareDefaultMockBuckets()
|
|
|
|
await servers[0].config.enableTranscoding()
|
|
|
|
for (let i = 0; i < 3; i++) {
|
|
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video' + i } })
|
|
uuids.push(uuid)
|
|
}
|
|
|
|
await waitJobs(servers)
|
|
|
|
await servers[0].kill()
|
|
await servers[0].run(objectStorage.getDefaultMockConfig())
|
|
})
|
|
|
|
it('Should move only one file', async function () {
|
|
this.timeout(120000)
|
|
|
|
const command = `npm run create-move-video-storage-job -- --to-object-storage -v ${uuids[1]}`
|
|
await servers[0].cli.execWithEnv(command, objectStorage.getDefaultMockConfig())
|
|
await waitJobs(servers)
|
|
|
|
for (const server of servers) {
|
|
const video = await server.videos.get({ id: uuids[1] })
|
|
|
|
await checkFiles(servers[0], video, objectStorage)
|
|
|
|
for (const id of [ uuids[0], uuids[2] ]) {
|
|
const video = await server.videos.get({ id })
|
|
|
|
await checkFiles(servers[0], video)
|
|
}
|
|
}
|
|
})
|
|
|
|
it('Should move all files', async function () {
|
|
this.timeout(120000)
|
|
|
|
const command = `npm run create-move-video-storage-job -- --to-object-storage --all-videos`
|
|
await servers[0].cli.execWithEnv(command, objectStorage.getDefaultMockConfig())
|
|
await waitJobs(servers)
|
|
|
|
for (const server of servers) {
|
|
for (const id of [ uuids[0], uuids[2] ]) {
|
|
const video = await server.videos.get({ id })
|
|
|
|
await checkFiles(servers[0], video, objectStorage)
|
|
}
|
|
}
|
|
})
|
|
|
|
it('Should not have files on disk anymore', async function () {
|
|
await checkDirectoryIsEmpty(servers[0], 'videos', [ 'private' ])
|
|
await checkDirectoryIsEmpty(servers[0], join('videos', 'private'))
|
|
|
|
await checkDirectoryIsEmpty(servers[0], join('streaming-playlists', 'hls'), [ 'private' ])
|
|
await checkDirectoryIsEmpty(servers[0], join('streaming-playlists', 'hls', 'private'))
|
|
})
|
|
|
|
after(async function () {
|
|
await objectStorage.cleanupMock()
|
|
|
|
await cleanupTests(servers)
|
|
})
|
|
})
|