X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fapi%2Fusers%2Fusers-multiple-servers.ts;h=5b2bbc520e7ea1babbf4e8c81b2bc7abba13a1f5;hb=c55e3d7227fe1453869e309025996b9d75256d5d;hp=1c7f011a8aaa32e92623b5c655dfdd00ca980fc8;hpb=265ba139ebf56bbdc1c65f6ea4f367774c691fc0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/api/users/users-multiple-servers.ts b/server/tests/api/users/users-multiple-servers.ts index 1c7f011a8..5b2bbc520 100644 --- a/server/tests/api/users/users-multiple-servers.ts +++ b/server/tests/api/users/users-multiple-servers.ts @@ -1,25 +1,40 @@ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ -import * as chai from 'chai' import 'mocha' -import { Account } from '../../../../shared/models/actors' -import { doubleFollow, flushAndRunMultipleServers, wait } from '../../utils' +import * as chai from 'chai' +import { + checkActorFilesWereRemoved, + checkTmpIsEmpty, + checkVideoFilesWereRemoved, + saveVideoInServers, + testImage +} from '@server/tests/shared' +import { MyUser } from '@shared/models' import { - flushTests, getMyUserInformation, killallServers, ServerInfo, testVideoImage, updateMyAvatar, - uploadVideo -} from '../../utils/index' -import { getAccount, getAccountsList } from '../../utils/users/accounts' -import { setAccessTokensToServers } from '../../utils/users/login' + cleanupTests, + createMultipleServers, + doubleFollow, + PeerTubeServer, + setAccessTokensToServers, + waitJobs +} from '@shared/server-commands' const expect = chai.expect describe('Test users with multiple servers', function () { - let servers: ServerInfo[] = [] + let servers: PeerTubeServer[] = [] + + let user: MyUser + let userId: number + + let videoUUID: string + let userAccessToken: string + let userAvatarFilename: string before(async function () { - this.timeout(120000) + this.timeout(120_000) - servers = await flushAndRunMultipleServers(3) + servers = await createMultipleServers(3) // Get the access tokens await setAccessTokensToServers(servers) @@ -32,54 +47,169 @@ describe('Test users with multiple servers', function () { 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, {}) + await servers[0].videos.upload() + + { + const username = 'user1' + const created = await servers[0].users.create({ username }) + userId = created.id + userAccessToken = await servers[0].login.getAccessToken(username) + } + + { + const { uuid } = await servers[0].videos.upload({ token: userAccessToken }) + videoUUID = uuid + + await waitJobs(servers) - await wait(5000) + await saveVideoInServers(servers, videoUUID) + } }) - it('Should be able to update my avatar', async function () { + it('Should be able to update my display name', async function () { this.timeout(10000) + await servers[0].users.updateMe({ displayName: 'my super display name' }) + + user = await servers[0].users.getMyInfo() + 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 servers[0].users.updateMe({ description: 'my super description updated' }) + + user = await servers[0].users.getMyInfo() + expect(user.account.displayName).to.equal('my super display name') + expect(user.account.description).to.equal('my super description updated') + + await waitJobs(servers) + }) + + it('Should be able to update my avatar', async function () { + this.timeout(10_000) + const fixture = 'avatar2.png' - await updateMyAvatar({ - url: servers[0].url, - accessToken: servers[0].accessToken, - fixture - }) + await servers[0].users.updateMyAvatar({ fixture }) - const res = await getMyUserInformation(servers[0].url, servers[0].accessToken) - const user = res.body + user = await servers[0].users.getMyInfo() + userAvatarFilename = user.account.avatar.path - const test = await testVideoImage(servers[0].url, 'avatar2-resized', user.account.avatar.path, '.png') - expect(test).to.equal(true) + await testImage(servers[0].url, 'avatar2-resized', userAvatarFilename, '.png') - await wait(5000) + await waitJobs(servers) }) - it('Should have updated my avatar on other servers too', async function () { + it('Should have updated my profile on other servers too', async function () { + let createdAt: string | Date + for (const server of servers) { - const resAccounts = await getAccountsList(server.url, '-createdAt') + const body = await server.accounts.list({ sort: '-createdAt' }) + + const resList = body.data.find(a => a.name === 'root' && a.host === 'localhost:' + servers[0].port) + expect(resList).not.to.be.undefined + + const account = await server.accounts.get({ accountName: resList.name + '@' + resList.host }) - const rootServer1List = resAccounts.body.data.find(a => a.name === 'root' && a.host === 'localhost:9001') as Account - expect(rootServer1List).not.to.be.undefined + if (!createdAt) createdAt = account.createdAt - const resAccount = await getAccount(server.url, rootServer1List.id) - const rootServer1Get = resAccount.body as Account - expect(rootServer1Get.name).to.equal('root') - expect(rootServer1Get.host).to.equal('localhost:9001') + 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) - const test = await testVideoImage(server.url, 'avatar2-resized', rootServer1Get.avatar.path, '.png') - expect(test).to.equal(true) + if (server.serverNumber === 1) { + expect(account.userId).to.be.a('number') + } else { + expect(account.userId).to.be.undefined + } + + await testImage(server.url, 'avatar2-resized', account.avatar.path, '.png') } }) - after(async function () { - killallServers(servers) + it('Should list account videos', async function () { + for (const server of servers) { + const { total, data } = await server.videos.listByAccount({ handle: 'user1@localhost:' + servers[0].port }) - // Keep the logs if the test failed - if (this[ 'ok' ]) { - await flushTests() + expect(total).to.equal(1) + expect(data).to.be.an('array') + expect(data).to.have.lengthOf(1) + expect(data[0].uuid).to.equal(videoUUID) } }) + + it('Should search through account videos', async function () { + this.timeout(10_000) + + const created = await servers[0].videos.upload({ token: userAccessToken, attributes: { name: 'Kami no chikara' } }) + + await waitJobs(servers) + + for (const server of servers) { + const { total, data } = await server.videos.listByAccount({ handle: 'user1@localhost:' + servers[0].port, search: 'Kami' }) + + 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) + } + }) + + it('Should remove the user', async function () { + this.timeout(10_000) + + for (const server of servers) { + const body = await server.accounts.list({ sort: '-createdAt' }) + + const accountDeleted = body.data.find(a => a.name === 'user1' && a.host === 'localhost:' + servers[0].port) + expect(accountDeleted).not.to.be.undefined + + const { data } = await server.channels.list() + const videoChannelDeleted = data.find(a => a.displayName === 'Main user1 channel' && a.host === 'localhost:' + servers[0].port) + expect(videoChannelDeleted).not.to.be.undefined + } + + await servers[0].users.remove({ userId }) + + await waitJobs(servers) + + for (const server of servers) { + const body = await server.accounts.list({ sort: '-createdAt' }) + + const accountDeleted = body.data.find(a => a.name === 'user1' && a.host === 'localhost:' + servers[0].port) + expect(accountDeleted).to.be.undefined + + const { data } = await server.channels.list() + const videoChannelDeleted = data.find(a => a.name === 'Main user1 channel' && a.host === 'localhost:' + servers[0].port) + expect(videoChannelDeleted).to.be.undefined + } + }) + + it('Should not have actor files', async () => { + for (const server of servers) { + await checkActorFilesWereRemoved(userAvatarFilename, server.internalServerNumber) + } + }) + + it('Should not have video files', async () => { + for (const server of servers) { + await checkVideoFilesWereRemoved({ server, video: server.store.videoDetails }) + } + }) + + it('Should have an empty tmp directory', async function () { + for (const server of servers) { + await checkTmpIsEmpty(server) + } + }) + + after(async function () { + await cleanupTests(servers) + }) })