PeerTube/server/tests/api/videos/video-privacy.ts

182 lines
5.4 KiB
TypeScript
Raw Normal View History

/* tslint:disable:no-unused-expression */
import * as chai from 'chai'
2017-11-17 12:05:59 +01:00
import 'mocha'
2017-12-28 13:59:22 +01:00
import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
2017-11-17 12:05:59 +01:00
flushAndRunMultipleServers,
getVideosList, getVideosListWithToken,
2017-11-17 12:05:59 +01:00
ServerInfo,
setAccessTokensToServers,
uploadVideo
} from '../../../../shared/extra-utils/index'
import { doubleFollow } from '../../../../shared/extra-utils/server/follows'
import { userLogin } from '../../../../shared/extra-utils/users/login'
import { createUser } from '../../../../shared/extra-utils/users/users'
import { getMyVideos, getVideo, getVideoWithToken, updateVideo } from '../../../../shared/extra-utils/videos/videos'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
2017-11-17 12:05:59 +01:00
const expect = chai.expect
describe('Test video privacy', function () {
let servers: ServerInfo[] = []
2018-04-04 10:21:36 +02:00
let privateVideoId: number
let privateVideoUUID: string
let unlistedVideoUUID: string
let now: number
before(async function () {
this.timeout(50000)
// Run servers
servers = await flushAndRunMultipleServers(2)
// Get the access tokens
await setAccessTokensToServers(servers)
2017-11-17 12:05:59 +01:00
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
})
2017-11-17 12:05:59 +01:00
it('Should upload a private video on server 1', async function () {
this.timeout(10000)
const attributes = {
privacy: VideoPrivacy.PRIVATE
}
await uploadVideo(servers[0].url, servers[0].accessToken, attributes)
await waitJobs(servers)
})
2017-11-17 12:05:59 +01:00
it('Should not have this private video on server 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 () {
2018-05-28 17:28:53 +02:00
this.timeout(10000)
const user = {
username: 'hello',
password: 'super password'
}
2019-04-15 10:49:46 +02:00
await createUser({ url: servers[ 0 ].url, accessToken: servers[ 0 ].accessToken, username: user.username, password: user.password })
2017-12-28 14:29:57 +01:00
const token = await userLogin(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)
})
2017-11-17 15:20:42 +01:00
it('Should upload an unlisted video on server 2', async function () {
this.timeout(30000)
const attributes = {
name: 'unlisted video',
privacy: VideoPrivacy.UNLISTED
}
await uploadVideo(servers[1].url, servers[1].accessToken, attributes)
// Server 2 has transcoding enabled
await waitJobs(servers)
})
2017-11-17 12:05:59 +01:00
it('Should not have this unlisted video listed on server 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')
}
})
2017-11-17 12:05:59 +01:00
it('Should update the private video to public on server 1', async function () {
this.timeout(10000)
const attribute = {
name: 'super video public',
privacy: VideoPrivacy.PUBLIC
}
2018-04-04 10:21:36 +02:00
now = Date.now()
await updateVideo(servers[0].url, servers[0].accessToken, privateVideoId, attribute)
await waitJobs(servers)
})
2017-11-17 15:20:42 +01:00
it('Should have this new public video listed on server 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')
2018-04-04 10:21:36 +02:00
expect(new Date(res.body.data[0].publishedAt).getTime()).to.be.at.least(now)
}
})
it('Should set this new video as private', async function () {
this.timeout(10000)
await updateVideo(servers[0].url, servers[0].accessToken, privateVideoId, { privacy: VideoPrivacy.PRIVATE })
await waitJobs(servers)
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)
}
{
const res = await getMyVideos(servers[0].url, servers[0].accessToken, 0, 5)
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')
}
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
})
})