blob: 20e68cf3dd88302e2f2e7d1f68faf161cf0fa299 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import * as request from 'supertest'
import { readFileBufferPromise } from '../../../helpers/core-utils'
function getXMLfeed (url: string, format?: string) {
const path = '/feeds/videos.xml'
return request(url)
.get(path)
.query((format) ? { format: format } : {})
.set('Accept', 'application/xml')
.expect(200)
.expect('Content-Type', /xml/)
}
function getJSONfeed (url: string) {
const path = '/feeds/videos.json'
return request(url)
.get(path)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
// ---------------------------------------------------------------------------
export {
getXMLfeed,
getJSONfeed
}
|