createUser,
getUserAccessToken
} from '../../utils'
+import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
describe('Test videos API validator', function () {
const path = '/api/v1/videos/'
let server: ServerInfo
let channelId: number
+ function getCompleteVideoUploadAttributes () {
+ return {
+ name: 'my super name',
+ category: 5,
+ licence: 1,
+ language: 6,
+ nsfw: false,
+ description: 'my super description',
+ tags: [ 'tag1', 'tag2' ],
+ privacy: VideoPrivacy.PUBLIC,
+ channelId
+ }
+ }
+
+ function getCompleteVideoUpdateAttributes () {
+ return {
+ name: 'my super name',
+ category: 5,
+ licence: 2,
+ language: 6,
+ nsfw: false,
+ description: 'my super description',
+ privacy: VideoPrivacy.PUBLIC,
+ tags: [ 'tag1', 'tag2' ]
+ }
+ }
+
+ function getVideoUploadAttaches () {
+ return {
+ 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
+ }
+ }
+
// ---------------------------------------------------------------
before(async function () {
})
})
+ describe('When listing my videos', function () {
+ const path = '/api/v1/users/me/videos'
+
+ it('Should fail with a bad start pagination', async function () {
+ await request(server.url)
+ .get(path)
+ .set('Authorization', 'Bearer ' + server.accessToken)
+ .query({ start: 'hello' })
+ .set('Accept', 'application/json')
+ .expect(400)
+ })
+
+ it('Should fail with a bad count pagination', async function () {
+ await request(server.url)
+ .get(path)
+ .set('Authorization', 'Bearer ' + server.accessToken)
+ .query({ count: 'hello' })
+ .set('Accept', 'application/json')
+ .expect(400)
+ })
+
+ it('Should fail with an incorrect sort', async function () {
+ await request(server.url)
+ .get(path)
+ .set('Authorization', 'Bearer ' + server.accessToken)
+ .query({ sort: 'hello' })
+ .set('Accept', 'application/json')
+ .expect(400)
+ })
+ })
+
describe('When adding a video', function () {
it('Should fail with nothing', async function () {
const fields = {}
})
it('Should fail without name', async function () {
- const fields = {
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ delete fields.name
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a long name', async function () {
- const fields = {
- name: 'My very very very very very very very very very very very very very very very very very ' +
- 'very very very very very very very very very very very very very very very very long long' +
- 'very very very very very very very very very very very very very very very very long name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.name = 'My very very very very very very very very very very very very very very very very very ' +
+ 'very very very very very very very very very very very very very very very very long long' +
+ 'very very very very very very very very very very very very very very very very long name'
+
+ const attaches = getVideoUploadAttaches
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without a category', async function () {
- const fields = {
- name: 'my super name',
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ delete fields.category
+
+ const attaches = getVideoUploadAttaches
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a bad category', async function () {
- const fields = {
- name: 'my super name',
- category: 125,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.category = 125
+
+ const attaches = getVideoUploadAttaches
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without a licence', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ delete fields.licence
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a bad licence', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 125,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.licence = 125
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a bad language', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 4,
- language: 563,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.language = 563
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without nsfw attribute', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 4,
- language: 6,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ delete fields.nsfw
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a bad nsfw attribute', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 4,
- language: 6,
- nsfw: 2,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.nsfw = 2 as any
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without description', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ delete fields.description
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a long description', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description which is very very very very very very very very very very very very very very long'.repeat(35),
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.description = 'my super description which is very very very very very very very very very very very very long'.repeat(35)
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without a channel', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ delete fields.channelId
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a bad channel', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId: 545454
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.channelId = 545454
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
const accessTokenUser = await getUserAccessToken(server, user)
const res = await getMyUserInformation(server.url, accessTokenUser)
- const channelId = res.body.videoChannels[0].id
+ const customChannelId = res.body.videoChannels[0].id
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.channelId = customChannelId
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with too many tags', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.tags = [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ]
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a tag length too low', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 't' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.tags = [ 'tag1', 't' ]
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a tag length too big', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'my_super_tag_too_long_long_long_long_long_long', 'tag1' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ fields.tags = [ 'my_super_tag_too_long_long_long_long_long_long', 'tag1' ]
+
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without an input file', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
+ const fields = getCompleteVideoUploadAttributes()
const attaches = {}
await makePostUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail without an incorrect input file', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
+ const fields = getCompleteVideoUploadAttributes()
const attaches = {
'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
}
})
it('Should fail with a too big duration', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
+ const fields = getCompleteVideoUploadAttributes()
const attaches = {
'videofile': join(__dirname, '..', 'fixtures', 'video_too_long.webm')
}
it('Should succeed with the correct parameters', async function () {
this.timeout(10000)
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ],
- channelId
- }
- const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
- }
+ const fields = getCompleteVideoUploadAttributes()
+ const attaches = getVideoUploadAttaches()
await makePostUploadRequest({
url: server.url,
})
it('Should fail without a valid uuid', async function () {
- const fields = {
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
await makePutBodyRequest({ url: server.url, path: path + 'blabla', token: server.accessToken, fields })
})
it('Should fail with an unknown id', async function () {
- const fields = {
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+
await makePutBodyRequest({
url: server.url,
path: path + '4da6fde3-88f7-4d16-b119-108df5630b06',
})
it('Should fail with a long name', async function () {
- const fields = {
- name: 'My very very very very very very very very very very very very very very very very very ' +
- 'very very very very very very very very very very very very very very very very long long' +
- 'very very very very very very very very very very very very very very very very long name',
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.name = 'My very very very very very very very very very very very very very very very very long'.repeat(3)
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a bad category', async function () {
- const fields = {
- name: 'my super name',
- category: 128,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.category = 128
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a bad licence', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 128,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.licence = 128
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a bad language', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 3,
- language: 896,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.language = 896
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a bad nsfw attribute', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 5,
- language: 6,
- nsfw: -4,
- description: 'my super description',
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.nsfw = (-4 as any)
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a long description', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description which is very very very very very very very very very very very very very long'.repeat(35),
- tags: [ 'tag1', 'tag2' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.description = 'my super description which is very very very very very very very very very very very very very long'.repeat(35)
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with too many tags', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.tags = [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ]
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a tag length too low', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'tag1', 't' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.tags = [ 'tag1', 't' ]
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a tag length too big', async function () {
- const fields = {
- name: 'my super name',
- category: 5,
- licence: 2,
- language: 6,
- nsfw: false,
- description: 'my super description',
- tags: [ 'my_super_tag_too_long_long_long_long', 'tag1' ]
- }
+ const fields = getCompleteVideoUpdateAttributes()
+ fields.tags = [ 'my_super_tag_too_long_long_long_long', 'tag1' ]
+
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})
it('Should fail with a video of another user')
it('Should fail with a video of another pod')
+
+ it('Should succeed with the correct parameters', async function () {
+ const fields = getCompleteVideoUpdateAttributes()
+
+ await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields, statusCodeExpected: 204 })
+ })
})
describe('When getting a video', function () {
--- /dev/null
+/* tslint:disable:no-unused-expression */
+
+import 'mocha'
+import * as chai from 'chai'
+const expect = chai.expect
+
+import {
+ ServerInfo,
+ flushTests,
+ uploadVideo,
+ makeFriends,
+ getVideosList,
+ wait,
+ setAccessTokensToServers,
+ flushAndRunMultipleServers,
+ killallServers
+} from '../utils'
+import { VideoPrivacy } from '../../../shared/models/videos/video-privacy.enum'
+import { getMyVideos, getVideo, getVideoWithToken, updateVideo } from '../utils/videos'
+import { createUser } from '../utils/users'
+import { getUserAccessToken } from '../utils/login'
+
+describe('Test video privacy', function () {
+ let servers: ServerInfo[] = []
+ let privateVideoId
+ let privateVideoUUID
+ let unlistedVideoUUID
+
+ before(async function () {
+ this.timeout(120000)
+
+ // Run servers
+ servers = await flushAndRunMultipleServers(2)
+
+ // Get the access tokens
+ await setAccessTokensToServers(servers)
+
+ // Pod 1 makes friend with pod 2
+ await makeFriends(servers[0].url, servers[0].accessToken)
+ })
+
+ it('Should upload a private video on pod 1', async function () {
+ this.timeout(15000)
+
+ const attributes = {
+ privacy: VideoPrivacy.PRIVATE
+ }
+ await uploadVideo(servers[0].url, servers[0].accessToken, attributes)
+
+ await wait(11000)
+ })
+
+ it('Should not have this private video on pod 2', async function () {
+ const res = await getVideosList(servers[1].url)
+
+ expect(res.body.total).to.equal(0)
+ expect(res.body.data).to.have.lengthOf(0)
+ })
+
+ it('Should list my (private) videos', async function () {
+ const res = await getMyVideos(servers[0].url, servers[0].accessToken, 0, 1)
+
+ expect(res.body.total).to.equal(1)
+ expect(res.body.data).to.have.lengthOf(1)
+
+ privateVideoId = res.body.data[0].id
+ privateVideoUUID = res.body.data[0].uuid
+ })
+
+ it('Should not be able to watch this video with non authenticated user', async function () {
+ await getVideo(servers[0].url, privateVideoUUID, 401)
+ })
+
+ it('Should not be able to watch this private video with another user', async function () {
+ const user = {
+ username: 'hello',
+ password: 'super password'
+ }
+ await createUser(servers[0].url, servers[0].accessToken, user.username, user.password)
+
+ const token = await getUserAccessToken(servers[0], user)
+ await getVideoWithToken(servers[0].url, token, privateVideoUUID, 403)
+ })
+
+ it('Should be able to watch this video with the correct user', async function () {
+ await getVideoWithToken(servers[0].url, servers[0].accessToken, privateVideoUUID)
+ })
+
+ it('Should upload a unlisted video on pod 2', async function () {
+ this.timeout(30000)
+
+ const attributes = {
+ name: 'unlisted video',
+ privacy: VideoPrivacy.UNLISTED
+ }
+ await uploadVideo(servers[1].url, servers[1].accessToken, attributes)
+
+ await wait(22000)
+ })
+
+ it('Should not have this unlisted video listed on pod 1 and 2', async function () {
+ for (const server of servers) {
+ const res = await getVideosList(server.url)
+
+ expect(res.body.total).to.equal(0)
+ expect(res.body.data).to.have.lengthOf(0)
+ }
+ })
+
+ it('Should list my (unlisted) videos', async function () {
+ const res = await getMyVideos(servers[1].url, servers[1].accessToken, 0, 1)
+
+ expect(res.body.total).to.equal(1)
+ expect(res.body.data).to.have.lengthOf(1)
+
+ unlistedVideoUUID = res.body.data[0].uuid
+ })
+
+ it('Should be able to get this unlisted video', async function () {
+ for (const server of servers) {
+ const res = await getVideo(server.url, unlistedVideoUUID)
+
+ expect(res.body.name).to.equal('unlisted video')
+ }
+ })
+
+ it('Should update the private video to public on pod 1', async function () {
+ this.timeout(15000)
+
+ const attribute = {
+ name: 'super video public',
+ privacy: VideoPrivacy.PUBLIC
+ }
+
+ await updateVideo(servers[0].url, servers[0].accessToken, privateVideoId, attribute)
+
+ await wait(11000)
+ })
+
+ it('Should not have this new unlisted video listed on pod 1 and 2', async function () {
+ for (const server of servers) {
+ const res = await getVideosList(server.url)
+
+ expect(res.body.total).to.equal(1)
+ expect(res.body.data).to.have.lengthOf(1)
+ expect(res.body.data[0].name).to.equal('super video public')
+ }
+ })
+
+ after(async function () {
+ killallServers(servers)
+
+ // Keep the logs if the test failed
+ if (this['ok']) {
+ await flushTests()
+ }
+ })
+})