]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/utils/feeds/feeds.ts
ffmpeg auto thread
[github/Chocobozzz/PeerTube.git] / server / tests / utils / feeds / feeds.ts
1 import * as request from 'supertest'
2 import { readFileBufferPromise } from '../../../helpers/core-utils'
3
4 type FeedType = 'videos' | 'video-comments'
5
6 function getXMLfeed (url: string, feed: FeedType, format?: string) {
7 const path = '/feeds/' + feed + '.xml'
8
9 return request(url)
10 .get(path)
11 .query((format) ? { format: format } : {})
12 .set('Accept', 'application/xml')
13 .expect(200)
14 .expect('Content-Type', /xml/)
15 }
16
17 function getJSONfeed (url: string, feed: FeedType) {
18 const path = '/feeds/' + feed + '.json'
19
20 return request(url)
21 .get(path)
22 .set('Accept', 'application/json')
23 .expect(200)
24 .expect('Content-Type', /json/)
25 }
26
27 // ---------------------------------------------------------------------------
28
29 export {
30 getXMLfeed,
31 getJSONfeed
32 }