2018-04-18 09:08:36 -05:00
|
|
|
import * as request from 'supertest'
|
2020-12-07 07:32:36 -06:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2018-04-18 09:08:36 -05:00
|
|
|
|
2020-11-09 09:25:27 -06:00
|
|
|
type FeedType = 'videos' | 'video-comments' | 'subscriptions'
|
2018-06-08 13:34:37 -05:00
|
|
|
|
|
|
|
function getXMLfeed (url: string, feed: FeedType, format?: string) {
|
|
|
|
const path = '/feeds/' + feed + '.xml'
|
2018-04-18 09:08:36 -05:00
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.query((format) ? { format: format } : {})
|
|
|
|
.set('Accept', 'application/xml')
|
2020-12-07 07:32:36 -06:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2018-04-18 09:08:36 -05:00
|
|
|
.expect('Content-Type', /xml/)
|
|
|
|
}
|
|
|
|
|
2020-12-07 07:32:36 -06:00
|
|
|
function getJSONfeed (url: string, feed: FeedType, query: any = {}, statusCodeExpected = HttpStatusCode.OK_200) {
|
2018-06-08 13:34:37 -05:00
|
|
|
const path = '/feeds/' + feed + '.json'
|
2018-04-18 09:08:36 -05:00
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
2018-09-13 02:48:34 -05:00
|
|
|
.query(query)
|
2018-04-18 09:08:36 -05:00
|
|
|
.set('Accept', 'application/json')
|
2020-11-25 04:04:18 -06:00
|
|
|
.expect(statusCodeExpected)
|
2018-04-18 09:08:36 -05:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
getXMLfeed,
|
|
|
|
getJSONfeed
|
|
|
|
}
|