]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/benchmark.ts
Introduce sql command
[github/Chocobozzz/PeerTube.git] / scripts / benchmark.ts
1 import * as autocannon from 'autocannon'
2 import { writeJson } from 'fs-extra'
3 import { flushAndRunServer, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo } from '@shared/extra-utils'
4 import { Video, VideoPrivacy } from '@shared/models'
5 import { registerTSPaths } from '../server/helpers/register-ts-paths'
6
7 registerTSPaths()
8
9 let server: ServerInfo
10 let video: Video
11 let threadId: number
12
13 const outfile = process.argv[2]
14
15 run()
16 .catch(err => console.error(err))
17 .finally(() => {
18 if (server) return killallServers([ server ])
19 })
20
21 function buildAuthorizationHeader () {
22 return {
23 Authorization: 'Bearer ' + server.accessToken
24 }
25 }
26
27 function buildAPHeader () {
28 return {
29 Accept: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
30 }
31 }
32
33 async function run () {
34 console.log('Preparing server...')
35
36 await prepare()
37
38 const tests = [
39 {
40 title: 'AP - account peertube',
41 path: '/accounts/peertube',
42 headers: buildAPHeader(),
43 expecter: (body, status) => {
44 return status === 200 && body.startsWith('{"type":')
45 }
46 },
47 {
48 title: 'AP - video',
49 path: '/videos/watch/' + video.uuid,
50 headers: buildAPHeader(),
51 expecter: (body, status) => {
52 return status === 200 && body.startsWith('{"type":"Video"')
53 }
54 },
55 {
56 title: 'Misc - webfinger peertube',
57 path: '/.well-known/webfinger?resource=acct:peertube@' + server.host,
58 expecter: (body, status) => {
59 return status === 200 && body.startsWith('{"subject":')
60 }
61 },
62 {
63 title: 'API - unread notifications',
64 path: '/api/v1/users/me/notifications?start=0&count=0&unread=true',
65 headers: buildAuthorizationHeader(),
66 expecter: (_body, status) => {
67 return status === 200
68 }
69 },
70 {
71 title: 'API - me',
72 path: '/api/v1/users/me',
73 headers: buildAuthorizationHeader(),
74 expecter: (body, status) => {
75 return status === 200 && body.startsWith('{"id":')
76 }
77 },
78 {
79 title: 'API - videos list',
80 path: '/api/v1/videos',
81 expecter: (body, status) => {
82 return status === 200 && body.startsWith('{"total":10')
83 }
84 },
85 {
86 title: 'API - video get',
87 path: '/api/v1/videos/' + video.uuid,
88 expecter: (body, status) => {
89 return status === 200 && body.startsWith('{"id":')
90 }
91 },
92 {
93 title: 'API - video captions',
94 path: '/api/v1/videos/' + video.uuid + '/captions',
95 expecter: (body, status) => {
96 return status === 200 && body.startsWith('{"total":4')
97 }
98 },
99 {
100 title: 'API - video threads',
101 path: '/api/v1/videos/' + video.uuid + '/comment-threads',
102 expecter: (body, status) => {
103 return status === 200 && body.startsWith('{"total":10')
104 }
105 },
106 {
107 title: 'API - video replies',
108 path: '/api/v1/videos/' + video.uuid + '/comment-threads/' + threadId,
109 expecter: (body, status) => {
110 return status === 200 && body.startsWith('{"comment":{')
111 }
112 },
113 {
114 title: 'HTML - video watch',
115 path: '/videos/watch/' + video.uuid,
116 expecter: (body, status) => {
117 return status === 200 && body.includes('<title>my super')
118 }
119 },
120 {
121 title: 'HTML - video embed',
122 path: '/videos/embed/' + video.uuid,
123 expecter: (body, status) => {
124 return status === 200 && body.includes('embed')
125 }
126 },
127 {
128 title: 'HTML - homepage',
129 path: '/',
130 expecter: (_body, status) => {
131 return status === 200
132 }
133 },
134 {
135 title: 'API - config',
136 path: '/api/v1/config',
137 expecter: (body, status) => {
138 return status === 200 && body.startsWith('{"instance":')
139 }
140 }
141 ]
142
143 const finalResult: any[] = []
144
145 for (const test of tests) {
146 console.log('Running against %s.', test.path)
147 const testResult = await runBenchmark(test)
148
149 Object.assign(testResult, { title: test.title, path: test.path })
150 finalResult.push(testResult)
151
152 console.log(autocannon.printResult(testResult))
153 }
154
155 if (outfile) await writeJson(outfile, finalResult)
156 }
157
158 function runBenchmark (options: {
159 path: string
160 headers?: { [ id: string ]: string }
161 expecter: Function
162 }) {
163 const { path, expecter, headers } = options
164
165 return new Promise((res, rej) => {
166 autocannon({
167 url: server.url + path,
168 connections: 20,
169 headers,
170 pipelining: 1,
171 duration: 10,
172 requests: [
173 {
174 onResponse: (status, body) => {
175 if (expecter(body, status) !== true) {
176 console.error('Expected result failed.', { body, status })
177 throw new Error('Invalid expectation')
178 }
179 }
180 }
181 ]
182 }, (err, result) => {
183 if (err) return rej(err)
184
185 return res(result)
186 })
187 })
188 }
189
190 async function prepare () {
191 server = await flushAndRunServer(1, {
192 rates_limit: {
193 api: {
194 max: 5_000_000
195 }
196 }
197 })
198 await setAccessTokensToServers([ server ])
199
200 const videoAttributes = {
201 name: 'my super video',
202 category: 2,
203 nsfw: true,
204 licence: 6,
205 language: 'fr',
206 privacy: VideoPrivacy.PUBLIC,
207 support: 'please give me a coffee',
208 description: 'my super description'.repeat(10),
209 tags: [ 'tag1', 'tag2', 'tag3' ]
210 }
211
212 for (let i = 0; i < 10; i++) {
213 Object.assign(videoAttributes, { name: 'my super video ' + i })
214 await uploadVideo(server.url, server.accessToken, videoAttributes)
215 }
216
217 const resVideos = await getVideosList(server.url)
218 video = resVideos.body.data.find(v => v.name === 'my super video 1')
219
220 for (let i = 0; i < 10; i++) {
221 const text = 'my super first comment'
222 const created = await server.commentsCommand.createThread({ videoId: video.id, text })
223 threadId = created.id
224
225 const text1 = 'my super answer to thread 1'
226 const child = await server.commentsCommand.addReply({ videoId: video.id, toCommentId: threadId, text: text1 })
227
228 const text2 = 'my super answer to answer of thread 1'
229 await server.commentsCommand.addReply({ videoId: video.id, toCommentId: child.id, text: text2 })
230
231 const text3 = 'my second answer to thread 1'
232 await server.commentsCommand.addReply({ videoId: video.id, toCommentId: threadId, text: text3 })
233 }
234
235 for (const caption of [ 'ar', 'fr', 'en', 'zh' ]) {
236 await server.captionsCommand.createVideoCaption({
237 language: caption,
238 videoId: video.id,
239 fixture: 'subtitle-good2.vtt'
240 })
241 }
242
243 return { server, video, threadId }
244 }