2020-01-31 16:56:52 +01:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-07 13:38:26 +02:00
|
|
|
import * as chai from 'chai'
|
2018-02-15 14:46:26 +01:00
|
|
|
import {
|
2021-07-07 13:38:26 +02:00
|
|
|
checkActorFilesWereRemoved,
|
2019-03-19 10:53:53 +01:00
|
|
|
checkTmpIsEmpty,
|
2019-05-31 14:02:26 +02:00
|
|
|
checkVideoFilesWereRemoved,
|
2021-12-17 11:58:15 +01:00
|
|
|
saveVideoInServers,
|
|
|
|
testImage
|
|
|
|
} from '@server/tests/shared'
|
|
|
|
import { MyUser } from '@shared/models'
|
|
|
|
import {
|
2019-05-31 14:02:26 +02:00
|
|
|
cleanupTests,
|
2021-07-16 09:47:51 +02:00
|
|
|
createMultipleServers,
|
2021-07-16 14:27:30 +02:00
|
|
|
doubleFollow,
|
2021-07-16 09:47:51 +02:00
|
|
|
PeerTubeServer,
|
2021-07-07 13:38:26 +02:00
|
|
|
setAccessTokensToServers,
|
2022-02-28 08:34:43 +01:00
|
|
|
setDefaultChannelAvatar,
|
2021-07-07 13:38:26 +02:00
|
|
|
waitJobs
|
2021-12-17 09:29:23 +01:00
|
|
|
} from '@shared/server-commands'
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
|
|
|
describe('Test users with multiple servers', function () {
|
2021-07-16 09:47:51 +02:00
|
|
|
let servers: PeerTubeServer[] = []
|
2021-07-22 14:28:03 +02:00
|
|
|
|
|
|
|
let user: MyUser
|
2018-04-25 10:21:38 +02:00
|
|
|
let userId: number
|
2021-07-22 14:28:03 +02:00
|
|
|
|
2018-04-25 10:21:38 +02:00
|
|
|
let videoUUID: string
|
|
|
|
let userAccessToken: string
|
2022-02-28 08:34:43 +01:00
|
|
|
let userAvatarFilenames: string[]
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
before(async function () {
|
2021-01-19 13:43:33 +01:00
|
|
|
this.timeout(120_000)
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2021-07-16 09:47:51 +02:00
|
|
|
servers = await createMultipleServers(3)
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
2022-02-28 08:34:43 +01:00
|
|
|
await setDefaultChannelAvatar(servers)
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
// 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
|
2021-07-16 09:04:35 +02:00
|
|
|
await servers[0].videos.upload()
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2018-04-25 10:21:38 +02:00
|
|
|
{
|
2021-07-22 14:28:03 +02:00
|
|
|
const username = 'user1'
|
|
|
|
const created = await servers[0].users.create({ username })
|
2021-07-13 14:23:01 +02:00
|
|
|
userId = created.id
|
2021-07-22 14:28:03 +02:00
|
|
|
userAccessToken = await servers[0].login.getAccessToken(username)
|
2018-04-25 10:21:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-07-16 09:04:35 +02:00
|
|
|
const { uuid } = await servers[0].videos.upload({ token: userAccessToken })
|
2021-07-15 10:02:54 +02:00
|
|
|
videoUUID = uuid
|
2021-07-22 14:28:03 +02:00
|
|
|
|
2021-07-23 11:20:00 +02:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
2021-07-22 14:28:03 +02:00
|
|
|
await saveVideoInServers(servers, videoUUID)
|
2018-04-25 10:21:38 +02:00
|
|
|
}
|
2018-01-03 16:38:50 +01:00
|
|
|
})
|
|
|
|
|
2018-04-26 10:03:40 +02:00
|
|
|
it('Should be able to update my display name', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
await servers[0].users.updateMe({ displayName: 'my super display name' })
|
2019-05-31 14:02:26 +02:00
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
user = await servers[0].users.getMyInfo()
|
2018-04-26 10:03:40 +02:00
|
|
|
expect(user.account.displayName).to.equal('my super display name')
|
|
|
|
|
2018-06-13 10:06:50 +02:00
|
|
|
await waitJobs(servers)
|
2018-04-26 10:03:40 +02:00
|
|
|
})
|
|
|
|
|
2018-02-15 14:46:26 +01:00
|
|
|
it('Should be able to update my description', async function () {
|
2021-01-19 13:43:33 +01:00
|
|
|
this.timeout(10_000)
|
2018-02-15 14:46:26 +01:00
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
await servers[0].users.updateMe({ description: 'my super description updated' })
|
2018-02-15 14:46:26 +01:00
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
user = await servers[0].users.getMyInfo()
|
2018-04-26 10:03:40 +02:00
|
|
|
expect(user.account.displayName).to.equal('my super display name')
|
2018-02-15 14:46:26 +01:00
|
|
|
expect(user.account.description).to.equal('my super description updated')
|
|
|
|
|
2018-06-13 10:06:50 +02:00
|
|
|
await waitJobs(servers)
|
2018-02-15 14:46:26 +01:00
|
|
|
})
|
|
|
|
|
2018-01-03 16:38:50 +01:00
|
|
|
it('Should be able to update my avatar', async function () {
|
2021-01-19 13:43:33 +01:00
|
|
|
this.timeout(10_000)
|
2018-01-03 16:38:50 +01:00
|
|
|
|
|
|
|
const fixture = 'avatar2.png'
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
await servers[0].users.updateMyAvatar({ fixture })
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
user = await servers[0].users.getMyInfo()
|
2022-02-28 08:34:43 +01:00
|
|
|
userAvatarFilenames = user.account.avatars.map(({ path }) => path)
|
2019-05-31 14:02:26 +02:00
|
|
|
|
2022-02-28 08:34:43 +01:00
|
|
|
for (const avatar of user.account.avatars) {
|
|
|
|
await testImage(servers[0].url, `avatar2-resized-${avatar.width}x${avatar.width}`, avatar.path, '.png')
|
|
|
|
}
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2018-06-13 10:06:50 +02:00
|
|
|
await waitJobs(servers)
|
2018-01-03 16:38:50 +01:00
|
|
|
})
|
|
|
|
|
2018-04-26 10:03:40 +02:00
|
|
|
it('Should have updated my profile on other servers too', async function () {
|
2021-05-07 08:59:59 +02:00
|
|
|
let createdAt: string | Date
|
|
|
|
|
2018-01-03 16:38:50 +01:00
|
|
|
for (const server of servers) {
|
2021-07-16 09:04:35 +02:00
|
|
|
const body = await server.accounts.list({ sort: '-createdAt' })
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2021-07-07 13:38:26 +02:00
|
|
|
const resList = body.data.find(a => a.name === 'root' && a.host === 'localhost:' + servers[0].port)
|
2021-05-07 08:59:59 +02:00
|
|
|
expect(resList).not.to.be.undefined
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
const account = await server.accounts.get({ accountName: resList.name + '@' + resList.host })
|
2021-05-07 08:59:59 +02:00
|
|
|
|
|
|
|
if (!createdAt) createdAt = account.createdAt
|
2018-01-03 16:38:50 +01:00
|
|
|
|
2021-05-07 08:59:59 +02: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 16:38:50 +01:00
|
|
|
|
2018-10-05 16:56:14 +02:00
|
|
|
if (server.serverNumber === 1) {
|
2021-05-07 08:59:59 +02:00
|
|
|
expect(account.userId).to.be.a('number')
|
2018-10-05 16:56:14 +02:00
|
|
|
} else {
|
2021-05-07 08:59:59 +02:00
|
|
|
expect(account.userId).to.be.undefined
|
2018-10-05 16:56:14 +02:00
|
|
|
}
|
|
|
|
|
2022-02-28 08:34:43 +01:00
|
|
|
for (const avatar of account.avatars) {
|
|
|
|
await testImage(server.url, `avatar2-resized-${avatar.width}x${avatar.width}`, avatar.path, '.png')
|
|
|
|
}
|
2018-01-03 16:38:50 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-04-25 10:21:38 +02:00
|
|
|
it('Should list account videos', async function () {
|
|
|
|
for (const server of servers) {
|
2021-07-16 10:42:24 +02:00
|
|
|
const { total, data } = await server.videos.listByAccount({ handle: 'user1@localhost:' + servers[0].port })
|
2018-04-25 10:21:38 +02:00
|
|
|
|
2021-07-15 10:02:54 +02:00
|
|
|
expect(total).to.equal(1)
|
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
expect(data[0].uuid).to.equal(videoUUID)
|
2018-04-25 10:21:38 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-01-19 13:43:33 +01:00
|
|
|
it('Should search through account videos', async function () {
|
|
|
|
this.timeout(10_000)
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
const created = await servers[0].videos.upload({ token: userAccessToken, attributes: { name: 'Kami no chikara' } })
|
2021-01-19 13:43:33 +01:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 10:42:24 +02:00
|
|
|
const { total, data } = await server.videos.listByAccount({ handle: 'user1@localhost:' + servers[0].port, search: 'Kami' })
|
2021-07-15 10:02:54 +02:00
|
|
|
|
|
|
|
expect(total).to.equal(1)
|
|
|
|
expect(data).to.be.an('array')
|
|
|
|
expect(data).to.have.lengthOf(1)
|
|
|
|
expect(data[0].uuid).to.equal(created.uuid)
|
2021-01-19 13:43:33 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-01-18 10:53:54 +01:00
|
|
|
it('Should remove the user', async function () {
|
2021-01-19 13:43:33 +01:00
|
|
|
this.timeout(10_000)
|
2018-01-18 10:53:54 +01:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 09:04:35 +02:00
|
|
|
const body = await server.accounts.list({ sort: '-createdAt' })
|
2018-01-18 10:53:54 +01:00
|
|
|
|
2021-07-07 13:38:26 +02:00
|
|
|
const accountDeleted = body.data.find(a => a.name === 'user1' && a.host === 'localhost:' + servers[0].port)
|
2018-04-25 10:21:38 +02:00
|
|
|
expect(accountDeleted).not.to.be.undefined
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
const { data } = await server.channels.list()
|
2021-07-09 11:21:30 +02:00
|
|
|
const videoChannelDeleted = data.find(a => a.displayName === 'Main user1 channel' && a.host === 'localhost:' + servers[0].port)
|
2018-04-25 10:21:38 +02:00
|
|
|
expect(videoChannelDeleted).not.to.be.undefined
|
2018-01-18 10:53:54 +01:00
|
|
|
}
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
await servers[0].users.remove({ userId })
|
2018-01-18 10:53:54 +01:00
|
|
|
|
2018-06-13 10:06:50 +02:00
|
|
|
await waitJobs(servers)
|
2018-01-18 10:53:54 +01:00
|
|
|
|
|
|
|
for (const server of servers) {
|
2021-07-16 09:04:35 +02:00
|
|
|
const body = await server.accounts.list({ sort: '-createdAt' })
|
2018-01-18 10:53:54 +01:00
|
|
|
|
2021-07-07 13:38:26 +02:00
|
|
|
const accountDeleted = body.data.find(a => a.name === 'user1' && a.host === 'localhost:' + servers[0].port)
|
2018-04-25 10:21:38 +02:00
|
|
|
expect(accountDeleted).to.be.undefined
|
|
|
|
|
2021-07-16 09:04:35 +02:00
|
|
|
const { data } = await server.channels.list()
|
2021-07-09 11:21:30 +02:00
|
|
|
const videoChannelDeleted = data.find(a => a.name === 'Main user1 channel' && a.host === 'localhost:' + servers[0].port)
|
2018-04-25 10:21:38 +02:00
|
|
|
expect(videoChannelDeleted).to.be.undefined
|
2018-01-18 10:53:54 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not have actor files', async () => {
|
|
|
|
for (const server of servers) {
|
2022-02-28 08:34:43 +01:00
|
|
|
for (const userAvatarFilename of userAvatarFilenames) {
|
|
|
|
await checkActorFilesWereRemoved(userAvatarFilename, server.internalServerNumber)
|
|
|
|
}
|
2018-01-18 10:53:54 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not have video files', async () => {
|
|
|
|
for (const server of servers) {
|
2021-07-22 14:28:03 +02:00
|
|
|
await checkVideoFilesWereRemoved({ server, video: server.store.videoDetails })
|
2018-01-18 10:53:54 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-03-19 10:53:53 +01:00
|
|
|
it('Should have an empty tmp directory', async function () {
|
|
|
|
for (const server of servers) {
|
|
|
|
await checkTmpIsEmpty(server)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-04-24 15:10:37 +02:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
2018-01-03 16:38:50 +01:00
|
|
|
})
|
|
|
|
})
|