1
0
Fork 0

Fix videos tests

This commit is contained in:
Chocobozzz 2017-12-28 17:25:10 +01:00
parent 5960f92395
commit 59651eee56
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 11 additions and 7 deletions

View File

@ -822,7 +822,7 @@ describe('Test multiple servers', function () {
.field('nsfw', 'false')
.field('channelId', '1')
const filePath = join(__dirname, '..', 'api', 'fixtures', 'video_short.webm')
const filePath = join(__dirname, '..', '..', 'api', 'fixtures', 'video_short.webm')
await req.attach('videofile', filePath)
.expect(200)

View File

@ -337,10 +337,10 @@ describe('Test a single server', function () {
it('Should remove the video', async function () {
await removeVideo(server.url, server.accessToken, videoId)
const files1 = await readdirPromise(join(__dirname, '..', '..', '..', 'test1/videos/'))
const files1 = await readdirPromise(join(__dirname, '..', '..', '..', '..', 'test1/videos/'))
expect(files1).to.have.lengthOf(0)
const files2 = await readdirPromise(join(__dirname, '..', '..', '..', 'test1/thumbnails/'))
const files2 = await readdirPromise(join(__dirname, '..', '..', '..', '..', 'test1/thumbnails/'))
expect(files2).to.have.lengthOf(0)
})

View File

@ -23,7 +23,8 @@ function getVideoCategories (url: string) {
return makeGetRequest({
url,
path
path,
statusCodeExpected: 200
})
}
@ -32,7 +33,8 @@ function getVideoLicences (url: string) {
return makeGetRequest({
url,
path
path,
statusCodeExpected: 200
})
}
@ -41,7 +43,8 @@ function getVideoLanguages (url: string) {
return makeGetRequest({
url,
path
path,
statusCodeExpected: 200
})
}
@ -50,7 +53,8 @@ function getVideoPrivacies (url: string) {
return makeGetRequest({
url,
path
path,
statusCodeExpected: 200
})
}