]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/utils/requests-stats.js
Better real world test
[github/Chocobozzz/PeerTube.git] / server / tests / utils / requests-stats.js
1 'use strict'
2
3 const request = require('supertest')
4
5 const requestsStatsUtils = {
6 getRequestsStats
7 }
8
9 // ---------------------- Export functions --------------------
10
11 function getRequestsStats (server, accessToken, callback) {
12 const path = '/api/v1/requests/stats'
13
14 request(server.url)
15 .get(path)
16 .set('Accept', 'application/json')
17 .set('Authorization', 'Bearer ' + accessToken)
18 .expect(200)
19 .expect('Content-Type', /json/)
20 .end(callback)
21 }
22
23 // ---------------------------------------------------------------------------
24
25 module.exports = requestsStatsUtils