X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fbenchmark.ts;h=623c11e2777218ad29541b75d1210d2c5d3af60c;hb=83b0a529494ce1c38b6a67af2163c4892201d2e2;hp=d9e4a08ab37349d2cc983b85544d7789af2ac329;hpb=d23dd9fbfc4d26026352c10f81d2795ceaf2908a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/benchmark.ts b/scripts/benchmark.ts index d9e4a08ab..623c11e27 100644 --- a/scripts/benchmark.ts +++ b/scripts/benchmark.ts @@ -1,21 +1,29 @@ -import * as autocannon from 'autocannon' +import autocannon, { printResult } from 'autocannon' +import { program } from 'commander' import { writeJson } from 'fs-extra' -import { flushAndRunServer, killallServers, ServerInfo, setAccessTokensToServers } from '@shared/extra-utils' import { Video, VideoPrivacy } from '@shared/models' -import { registerTSPaths } from '../server/helpers/register-ts-paths' +import { createMultipleServers, doubleFollow, killallServers, PeerTubeServer, setAccessTokensToServers } from '@shared/server-commands' -registerTSPaths() - -let server: ServerInfo +let servers: PeerTubeServer[] +// First server +let server: PeerTubeServer let video: Video let threadId: number -const outfile = process.argv[2] +program + .option('-o, --outfile [outfile]', 'Outfile') + .option('--grep [string]', 'Filter tests you want to execute') + .description('Run API REST benchmark') + .parse(process.argv) + +const options = program.opts() + +const outfile = options.outfile run() .catch(err => console.error(err)) .finally(() => { - if (server) return killallServers([ server ]) + if (servers) return killallServers(servers) }) function buildAuthorizationHeader () { @@ -30,6 +38,12 @@ function buildAPHeader () { } } +function buildJSONHeader () { + return { + 'Content-Type': 'application/json' + } +} + async function run () { console.log('Preparing server...') @@ -41,7 +55,7 @@ async function run () { path: '/accounts/peertube', headers: buildAPHeader(), expecter: (body, status) => { - return status === 200 && body.startsWith('{"type":') + return status === 200 && body.startsWith('{"@context":') } }, { @@ -49,7 +63,7 @@ async function run () { path: '/videos/watch/' + video.uuid, headers: buildAPHeader(), expecter: (body, status) => { - return status === 200 && body.startsWith('{"type":"Video"') + return status === 200 && body.startsWith('{"@context":') } }, { @@ -135,10 +149,35 @@ async function run () { title: 'API - config', path: '/api/v1/config', expecter: (body, status) => { - return status === 200 && body.startsWith('{"instance":') + return status === 200 && body.startsWith('{"client":') + } + }, + { + title: 'API - watching', + method: 'PUT', + headers: { + ...buildAuthorizationHeader(), + ...buildJSONHeader() + }, + body: JSON.stringify({ currentTime: 2 }), + path: '/api/v1/videos/' + video.uuid + '/watching', + expecter: (body, status) => { + return status === 204 + } + }, + { + title: 'API - views', + method: 'POST', + path: '/api/v1/videos/' + video.uuid + '/views', + expecter: (body, status) => { + return status === 204 } } - ] + ].filter(t => { + if (!options.grep) return true + + return t.title.includes(options.grep) + }) const finalResult: any[] = [] @@ -149,7 +188,7 @@ async function run () { Object.assign(testResult, { title: test.title, path: test.path }) finalResult.push(testResult) - console.log(autocannon.printResult(testResult)) + console.log(printResult(testResult)) } if (outfile) await writeJson(outfile, finalResult) @@ -157,14 +196,18 @@ async function run () { function runBenchmark (options: { path: string + method?: string + body?: string headers?: { [ id: string ]: string } expecter: Function }) { - const { path, expecter, headers } = options + const { method = 'GET', path, body, expecter, headers } = options return new Promise((res, rej) => { autocannon({ url: server.url + path, + method: method, + body, connections: 20, headers, pipelining: 1, @@ -188,14 +231,18 @@ function runBenchmark (options: { } async function prepare () { - server = await flushAndRunServer(1, { + servers = await createMultipleServers(3, { rates_limit: { api: { max: 5_000_000 } } }) - await setAccessTokensToServers([ server ]) + server = servers[0] + + await setAccessTokensToServers(servers) + await doubleFollow(servers[0], servers[1]) + await doubleFollow(servers[0], servers[2]) const attributes = { name: 'my super video', @@ -205,39 +252,37 @@ async function prepare () { language: 'fr', privacy: VideoPrivacy.PUBLIC, support: 'please give me a coffee', - description: 'my super description'.repeat(10), + description: 'my super description\n'.repeat(10) + ' * list1\n * list 2\n * list 3', tags: [ 'tag1', 'tag2', 'tag3' ] } for (let i = 0; i < 10; i++) { - await server.videosCommand.upload({ attributes: { ...attributes, name: 'my super video ' + i } }) + await server.videos.upload({ attributes: { ...attributes, name: 'my super video ' + i } }) } - const { data } = await server.videosCommand.list() + const { data } = await server.videos.list() video = data.find(v => v.name === 'my super video 1') for (let i = 0; i < 10; i++) { const text = 'my super first comment' - const created = await server.commentsCommand.createThread({ videoId: video.id, text }) + const created = await server.comments.createThread({ videoId: video.id, text }) threadId = created.id const text1 = 'my super answer to thread 1' - const child = await server.commentsCommand.addReply({ videoId: video.id, toCommentId: threadId, text: text1 }) + const child = await server.comments.addReply({ videoId: video.id, toCommentId: threadId, text: text1 }) const text2 = 'my super answer to answer of thread 1' - await server.commentsCommand.addReply({ videoId: video.id, toCommentId: child.id, text: text2 }) + await server.comments.addReply({ videoId: video.id, toCommentId: child.id, text: text2 }) const text3 = 'my second answer to thread 1' - await server.commentsCommand.addReply({ videoId: video.id, toCommentId: threadId, text: text3 }) + await server.comments.addReply({ videoId: video.id, toCommentId: threadId, text: text3 }) } for (const caption of [ 'ar', 'fr', 'en', 'zh' ]) { - await server.captionsCommand.createVideoCaption({ + await server.captions.add({ language: caption, videoId: video.id, fixture: 'subtitle-good2.vtt' }) } - - return { server, video, threadId } }