1
0
Fork 0
peertube/server/tests/api/users/users-multiple-servers.ts

248 lines
7.9 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2018-01-03 15:38:50 +00:00
import * as chai from 'chai'
import 'mocha'
import { Account } from '../../../../shared/models/actors'
import {
2019-03-19 09:53:53 +00:00
checkTmpIsEmpty,
2019-05-31 12:02:26 +00:00
checkVideoFilesWereRemoved,
cleanupTests,
2018-04-25 08:21:38 +00:00
createUser,
doubleFollow,
flushAndRunMultipleServers,
getAccountVideos,
getVideoChannelsList,
removeUser,
updateMyUser,
2018-08-17 13:45:42 +00:00
userLogin
} from '../../../../shared/extra-utils'
2019-05-31 12:02:26 +00:00
import { getMyUserInformation, ServerInfo, testImage, updateMyAvatar, uploadVideo } from '../../../../shared/extra-utils/index'
import { checkActorFilesWereRemoved, getAccount, getAccountsList } from '../../../../shared/extra-utils/users/accounts'
import { setAccessTokensToServers } from '../../../../shared/extra-utils/users/login'
2018-04-25 08:21:38 +00:00
import { User } from '../../../../shared/models/users'
import { VideoChannel } from '../../../../shared/models/videos'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
2018-01-03 15:38:50 +00:00
const expect = chai.expect
describe('Test users with multiple servers', function () {
let servers: ServerInfo[] = []
2018-04-25 08:21:38 +00:00
let user: User
let userId: number
let videoUUID: string
let userAccessToken: string
2019-05-31 12:02:26 +00:00
let userAvatarFilename: string
2018-01-03 15:38:50 +00:00
before(async function () {
this.timeout(120_000)
2018-01-03 15:38:50 +00:00
servers = await flushAndRunMultipleServers(3)
// Get the access tokens
await setAccessTokensToServers(servers)
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
// Server 1 and server 3 follow each other
await doubleFollow(servers[0], servers[2])
// Server 2 and server 3 follow each other
await doubleFollow(servers[1], servers[2])
// The root user of server 1 is propagated to servers 2 and 3
await uploadVideo(servers[0].url, servers[0].accessToken, {})
2018-04-25 08:21:38 +00:00
{
const user = {
username: 'user1',
password: 'password'
}
2019-04-15 08:49:46 +00:00
const res = await createUser({
2020-01-31 15:56:52 +00:00
url: servers[0].url,
accessToken: servers[0].accessToken,
2019-04-15 08:49:46 +00:00
username: user.username,
password: user.password
})
2018-04-25 08:21:38 +00:00
userId = res.body.user.id
2020-01-31 15:56:52 +00:00
userAccessToken = await userLogin(servers[0], user)
2018-04-25 08:21:38 +00:00
}
{
2020-01-31 15:56:52 +00:00
const resVideo = await uploadVideo(servers[0].url, userAccessToken, {})
2018-04-25 08:21:38 +00:00
videoUUID = resVideo.body.video.uuid
}
await waitJobs(servers)
2018-01-03 15:38:50 +00:00
})
it('Should be able to update my display name', async function () {
this.timeout(10000)
await updateMyUser({
url: servers[0].url,
accessToken: servers[0].accessToken,
displayName: 'my super display name'
})
const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
user = res.body
2019-05-31 12:02:26 +00:00
expect(user.account.displayName).to.equal('my super display name')
await waitJobs(servers)
})
it('Should be able to update my description', async function () {
this.timeout(10_000)
await updateMyUser({
url: servers[0].url,
accessToken: servers[0].accessToken,
description: 'my super description updated'
})
const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
user = res.body
expect(user.account.displayName).to.equal('my super display name')
expect(user.account.description).to.equal('my super description updated')
await waitJobs(servers)
})
2018-01-03 15:38:50 +00:00
it('Should be able to update my avatar', async function () {
this.timeout(10_000)
2018-01-03 15:38:50 +00:00
const fixture = 'avatar2.png'
await updateMyAvatar({
url: servers[0].url,
accessToken: servers[0].accessToken,
fixture
})
const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
user = res.body
2018-01-03 15:38:50 +00:00
2019-05-31 12:02:26 +00:00
userAvatarFilename = user.account.avatar.path
await testImage(servers[0].url, 'avatar2-resized', userAvatarFilename, '.png')
2018-01-03 15:38:50 +00:00
await waitJobs(servers)
2018-01-03 15:38:50 +00:00
})
it('Should have updated my profile on other servers too', async function () {
2021-05-07 06:59:59 +00:00
let createdAt: string | Date
2018-01-03 15:38:50 +00:00
for (const server of servers) {
const resAccounts = await getAccountsList(server.url, '-createdAt')
2021-05-07 06:59:59 +00:00
const resList = resAccounts.body.data.find(a => a.name === 'root' && a.host === 'localhost:' + servers[0].port) as Account
expect(resList).not.to.be.undefined
const resAccount = await getAccount(server.url, resList.name + '@' + resList.host)
const account = resAccount.body as Account
if (!createdAt) createdAt = account.createdAt
2018-01-03 15:38:50 +00:00
2021-05-07 06:59:59 +00:00
expect(account.name).to.equal('root')
expect(account.host).to.equal('localhost:' + servers[0].port)
expect(account.displayName).to.equal('my super display name')
expect(account.description).to.equal('my super description updated')
expect(createdAt).to.equal(account.createdAt)
2018-01-03 15:38:50 +00:00
if (server.serverNumber === 1) {
2021-05-07 06:59:59 +00:00
expect(account.userId).to.be.a('number')
} else {
2021-05-07 06:59:59 +00:00
expect(account.userId).to.be.undefined
}
2021-05-07 06:59:59 +00:00
await testImage(server.url, 'avatar2-resized', account.avatar.path, '.png')
2018-01-03 15:38:50 +00:00
}
})
2018-04-25 08:21:38 +00:00
it('Should list account videos', async function () {
for (const server of servers) {
2019-05-31 12:02:26 +00:00
const res = await getAccountVideos(server.url, server.accessToken, 'user1@localhost:' + servers[0].port, 0, 5)
2018-04-25 08:21:38 +00:00
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
expect(res.body.data[0].uuid).to.equal(videoUUID)
}
})
it('Should search through account videos', async function () {
this.timeout(10_000)
const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name: 'Kami no chikara' })
await waitJobs(servers)
for (const server of servers) {
const res = await getAccountVideos(server.url, server.accessToken, 'user1@localhost:' + servers[0].port, 0, 5, undefined, {
search: 'Kami'
})
expect(res.body.total).to.equal(1)
expect(res.body.data).to.be.an('array')
expect(res.body.data).to.have.lengthOf(1)
expect(res.body.data[0].uuid).to.equal(resVideo.body.video.uuid)
}
})
it('Should remove the user', async function () {
this.timeout(10_000)
for (const server of servers) {
const resAccounts = await getAccountsList(server.url, '-createdAt')
2019-04-26 06:50:52 +00:00
const accountDeleted = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:' + servers[0].port) as Account
2018-04-25 08:21:38 +00:00
expect(accountDeleted).not.to.be.undefined
const resVideoChannels = await getVideoChannelsList(server.url, 0, 10)
const videoChannelDeleted = resVideoChannels.body.data.find(a => {
2019-04-26 06:50:52 +00:00
return a.displayName === 'Main user1 channel' && a.host === 'localhost:' + servers[0].port
2018-04-25 08:21:38 +00:00
}) as VideoChannel
expect(videoChannelDeleted).not.to.be.undefined
}
await removeUser(servers[0].url, userId, servers[0].accessToken)
await waitJobs(servers)
for (const server of servers) {
const resAccounts = await getAccountsList(server.url, '-createdAt')
2019-04-26 06:50:52 +00:00
const accountDeleted = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:' + servers[0].port) as Account
2018-04-25 08:21:38 +00:00
expect(accountDeleted).to.be.undefined
const resVideoChannels = await getVideoChannelsList(server.url, 0, 10)
const videoChannelDeleted = resVideoChannels.body.data.find(a => {
2019-04-26 06:50:52 +00:00
return a.name === 'Main user1 channel' && a.host === 'localhost:' + servers[0].port
2018-04-25 08:21:38 +00:00
}) as VideoChannel
expect(videoChannelDeleted).to.be.undefined
}
})
it('Should not have actor files', async () => {
for (const server of servers) {
2019-05-31 12:02:26 +00:00
await checkActorFilesWereRemoved(userAvatarFilename, server.internalServerNumber)
}
})
it('Should not have video files', async () => {
for (const server of servers) {
2019-04-26 06:50:52 +00:00
await checkVideoFilesWereRemoved(videoUUID, server.internalServerNumber)
}
})
2019-03-19 09:53:53 +00:00
it('Should have an empty tmp directory', async function () {
for (const server of servers) {
await checkTmpIsEmpty(server)
}
})
2019-04-24 13:10:37 +00:00
after(async function () {
await cleanupTests(servers)
2018-01-03 15:38:50 +00:00
})
})