PeerTube/shared/utils/feeds/feeds.ts

33 lines
813 B
TypeScript
Raw Normal View History

import * as request from 'supertest'
2018-06-08 20:34:37 +02:00
type FeedType = 'videos' | 'video-comments'
function getXMLfeed (url: string, feed: FeedType, format?: string) {
const path = '/feeds/' + feed + '.xml'
return request(url)
.get(path)
.query((format) ? { format: format } : {})
.set('Accept', 'application/xml')
.expect(200)
.expect('Content-Type', /xml/)
}
2018-09-13 09:48:34 +02:00
function getJSONfeed (url: string, feed: FeedType, query: any = {}) {
2018-06-08 20:34:37 +02:00
const path = '/feeds/' + feed + '.json'
return request(url)
.get(path)
2018-09-13 09:48:34 +02:00
.query(query)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
// ---------------------------------------------------------------------------
export {
getXMLfeed,
getJSONfeed
}