X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fcli%2Fupdate-host.ts;h=d3a1520cffcb21adccb866804b54f6305ae14331;hb=078f17e6d90376050f43ce639e88e11869b49ee7;hp=d38bb4331d12a4e1a12c3949200168908a3718f7;hpb=88108880bbdba473cfe36ecbebc1c3c4f972e102;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/cli/update-host.ts b/server/tests/cli/update-host.ts index d38bb4331..d3a1520cf 100644 --- a/server/tests/cli/update-host.ts +++ b/server/tests/cli/update-host.ts @@ -1,30 +1,23 @@ -/* tslint:disable:no-unused-expression */ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ import 'mocha' -import * as chai from 'chai' -import { VideoDetails } from '../../../shared/models/videos' -import { waitJobs } from '../../../shared/utils/server/jobs' -import { addVideoCommentThread } from '../../../shared/utils/videos/video-comments' +import { expect } from 'chai' import { - addVideoChannel, + cleanupTests, createUser, - execCLI, - flushTests, - getEnvCli, + flushAndRunServer, getVideo, - getVideoChannelsList, getVideosList, killallServers, makeActivityPubGetRequest, parseTorrentVideo, - runServer, + reRunServer, ServerInfo, setAccessTokensToServers, - uploadVideo -} from '../../../shared/utils' -import { getAccountsList } from '../../../shared/utils/users/accounts' - -const expect = chai.expect + uploadVideo, + waitJobs +} from '@shared/extra-utils' +import { VideoDetails } from '@shared/models' describe('Test update host scripts', function () { let server: ServerInfo @@ -32,15 +25,13 @@ describe('Test update host scripts', function () { before(async function () { this.timeout(60000) - await flushTests() - const overrideConfig = { webserver: { port: 9256 } } // Run server 2 to have transcoding enabled - server = await runServer(2, overrideConfig) + server = await flushAndRunServer(2, overrideConfig) await setAccessTokensToServers([ server ]) // Upload two videos for our needs @@ -50,7 +41,7 @@ describe('Test update host scripts', function () { await uploadVideo(server.url, server.accessToken, videoAttributes) // Create a user - await createUser(server.url, server.accessToken, 'toto', 'coucou') + await createUser({ url: server.url, accessToken: server.accessToken, username: 'toto', password: 'coucou' }) // Create channel const videoChannel = { @@ -58,11 +49,11 @@ describe('Test update host scripts', function () { displayName: 'second video channel', description: 'super video channel description' } - await addVideoChannel(server.url, server.accessToken, videoChannel) + await server.channelsCommand.create({ attributes: videoChannel }) // Create comments const text = 'my super first comment' - await addVideoCommentThread(server.url, server.accessToken, video1UUID, text) + await server.commentsCommand.createThread({ videoId: video1UUID, text }) await waitJobs(server) }) @@ -72,10 +63,9 @@ describe('Test update host scripts', function () { killallServers([ server ]) // Run server with standard configuration - server = await runServer(2) + await reRunServer(server) - const env = getEnvCli(server) - await execCLI(`${env} npm run update-host`) + await server.cliCommand.execWithEnv(`npm run update-host`) }) it('Should have updated videos url', async function () { @@ -97,10 +87,10 @@ describe('Test update host scripts', function () { }) it('Should have updated video channels url', async function () { - const res = await getVideoChannelsList(server.url, 0, 5, '-name') - expect(res.body.total).to.equal(3) + const { data, total } = await server.channelsCommand.list({ sort: '-name' }) + expect(total).to.equal(3) - for (const channel of res.body.data) { + for (const channel of data) { const { body } = await makeActivityPubGetRequest(server.url, '/video-channels/' + channel.name) expect(body.id).to.equal('http://localhost:9002/video-channels/' + channel.name) @@ -108,10 +98,10 @@ describe('Test update host scripts', function () { }) it('Should have updated accounts url', async function () { - const res = await getAccountsList(server.url) - expect(res.body.total).to.equal(3) + const body = await server.accountsCommand.list() + expect(body.total).to.equal(3) - for (const account of res.body.data) { + for (const account of body.data) { const usernameWithDomain = account.name const { body } = await makeActivityPubGetRequest(server.url, '/accounts/' + usernameWithDomain) @@ -149,6 +139,6 @@ describe('Test update host scripts', function () { }) after(async function () { - killallServers([ server ]) + await cleanupTests([ server ]) }) })