2021-07-16 04:42:24 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-floating-promises */
|
2020-01-31 10:56:52 -05:00
|
|
|
|
2020-04-29 03:04:42 -04:00
|
|
|
import { decode } from 'querystring'
|
2021-08-27 08:32:44 -04:00
|
|
|
import request from 'supertest'
|
2021-07-06 09:33:39 -04:00
|
|
|
import { URL } from 'url'
|
2022-10-12 10:09:02 -04:00
|
|
|
import { buildAbsoluteFixturePath, pick } from '@shared/core-utils'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '@shared/models'
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
export type CommonRequestParams = {
|
2020-01-31 10:56:52 -05:00
|
|
|
url: string
|
|
|
|
path?: string
|
|
|
|
contentType?: string
|
2019-02-07 09:08:19 -05:00
|
|
|
range?: string
|
2020-04-29 03:04:42 -04:00
|
|
|
redirects?: number
|
2021-05-28 04:21:39 -04:00
|
|
|
accept?: string
|
2021-07-13 05:05:15 -04:00
|
|
|
host?: string
|
2021-07-16 04:42:24 -04:00
|
|
|
token?: string
|
|
|
|
headers?: { [ name: string ]: string }
|
|
|
|
type?: string
|
|
|
|
xForwardedFor?: string
|
|
|
|
expectedStatus?: HttpStatusCode
|
|
|
|
}
|
2017-12-28 08:29:57 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
function makeRawRequest (options: {
|
|
|
|
url: string
|
|
|
|
token?: string
|
|
|
|
expectedStatus?: HttpStatusCode
|
|
|
|
range?: string
|
|
|
|
query?: { [ id: string ]: string }
|
|
|
|
}) {
|
|
|
|
const { host, protocol, pathname } = new URL(options.url)
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url: `${protocol}//${host}`,
|
|
|
|
path: pathname,
|
2022-11-15 10:55:57 -05:00
|
|
|
contentType: undefined,
|
2017-12-28 08:29:57 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
...pick(options, [ 'expectedStatus', 'range', 'token', 'query' ])
|
|
|
|
})
|
2017-12-28 08:29:57 -05:00
|
|
|
}
|
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
function makeGetRequest (options: CommonRequestParams & {
|
|
|
|
query?: any
|
2021-09-07 09:16:26 -04:00
|
|
|
rawQuery?: string
|
2017-12-28 08:29:57 -05:00
|
|
|
}) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const req = request(options.url).get(options.path)
|
2021-09-07 09:16:26 -04:00
|
|
|
|
|
|
|
if (options.query) req.query(options.query)
|
|
|
|
if (options.rawQuery) req.query(options.rawQuery)
|
2017-12-28 08:29:57 -05:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
return buildRequest(req, { contentType: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
|
|
|
|
}
|
2017-12-28 08:29:57 -05:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
function makeHTMLRequest (url: string, path: string) {
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
accept: 'text/html',
|
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
2017-12-28 08:29:57 -05:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
function makeActivityPubGetRequest (url: string, path: string, expectedStatus = HttpStatusCode.OK_200) {
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
2022-07-13 05:58:01 -04:00
|
|
|
expectedStatus,
|
2021-07-16 04:42:24 -04:00
|
|
|
accept: 'application/activity+json,text/html;q=0.9,\\*/\\*;q=0.8'
|
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2021-09-09 03:31:50 -04:00
|
|
|
function makeDeleteRequest (options: CommonRequestParams & {
|
|
|
|
query?: any
|
|
|
|
rawQuery?: string
|
|
|
|
}) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const req = request(options.url).delete(options.path)
|
|
|
|
|
2021-09-09 03:31:50 -04:00
|
|
|
if (options.query) req.query(options.query)
|
|
|
|
if (options.rawQuery) req.query(options.rawQuery)
|
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
return buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
|
|
|
|
}
|
|
|
|
|
|
|
|
function makeUploadRequest (options: CommonRequestParams & {
|
2020-01-31 10:56:52 -05:00
|
|
|
method?: 'POST' | 'PUT'
|
2021-07-15 04:02:54 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
fields: { [ fieldName: string ]: any }
|
2020-10-30 10:09:00 -04:00
|
|
|
attaches?: { [ attachName: string ]: any | any[] }
|
2017-09-04 15:21:47 -04:00
|
|
|
}) {
|
2021-07-16 04:42:24 -04:00
|
|
|
let req = options.method === 'PUT'
|
|
|
|
? request(options.url).put(options.path)
|
|
|
|
: request(options.url).post(options.path)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
req = buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
|
2018-02-13 12:17:05 -05:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
buildFields(req, options.fields)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2020-10-30 10:09:00 -04:00
|
|
|
Object.keys(options.attaches || {}).forEach(attach => {
|
2017-09-04 15:21:47 -04:00
|
|
|
const value = options.attaches[attach]
|
2021-11-10 08:34:02 -05:00
|
|
|
if (!value) return
|
2021-07-16 04:42:24 -04:00
|
|
|
|
2018-08-06 05:45:24 -04:00
|
|
|
if (Array.isArray(value)) {
|
|
|
|
req.attach(attach, buildAbsoluteFixturePath(value[0]), value[1])
|
|
|
|
} else {
|
|
|
|
req.attach(attach, buildAbsoluteFixturePath(value))
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
return req
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
function makePostBodyRequest (options: CommonRequestParams & {
|
2020-01-31 10:56:52 -05:00
|
|
|
fields?: { [ fieldName: string ]: any }
|
2017-09-04 15:21:47 -04:00
|
|
|
}) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const req = request(options.url).post(options.path)
|
|
|
|
.send(options.fields)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
return buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function makePutBodyRequest (options: {
|
2020-01-31 10:56:52 -05:00
|
|
|
url: string
|
|
|
|
path: string
|
|
|
|
token?: string
|
|
|
|
fields: { [ fieldName: string ]: any }
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus?: HttpStatusCode
|
2018-06-29 05:29:23 -04:00
|
|
|
}) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const req = request(options.url).put(options.path)
|
|
|
|
.send(options.fields)
|
2018-06-29 05:29:23 -04:00
|
|
|
|
2021-07-16 04:42:24 -04:00
|
|
|
return buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
|
2020-04-29 03:04:42 -04:00
|
|
|
function decodeQueryString (path: string) {
|
|
|
|
return decode(path.split('?')[1])
|
|
|
|
}
|
|
|
|
|
2021-07-06 04:21:35 -04:00
|
|
|
function unwrapBody <T> (test: request.Test): Promise<T> {
|
2021-07-06 03:55:05 -04:00
|
|
|
return test.then(res => res.body)
|
|
|
|
}
|
|
|
|
|
2021-07-06 04:21:35 -04:00
|
|
|
function unwrapText (test: request.Test): Promise<string> {
|
|
|
|
return test.then(res => res.text)
|
|
|
|
}
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
function unwrapBodyOrDecodeToJSON <T> (test: request.Test): Promise<T> {
|
|
|
|
return test.then(res => {
|
|
|
|
if (res.body instanceof Buffer) {
|
2022-10-04 07:57:56 -04:00
|
|
|
try {
|
|
|
|
return JSON.parse(new TextDecoder().decode(res.body))
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot decode JSON.', res.body)
|
|
|
|
throw err
|
|
|
|
}
|
2021-08-17 02:26:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.body
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function unwrapTextOrDecode (test: request.Test): Promise<string> {
|
|
|
|
return test.then(res => res.text || new TextDecoder().decode(res.body))
|
|
|
|
}
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-07-18 03:52:46 -04:00
|
|
|
makeHTMLRequest,
|
2017-09-04 15:21:47 -04:00
|
|
|
makeGetRequest,
|
2020-04-29 03:04:42 -04:00
|
|
|
decodeQueryString,
|
2018-02-13 12:17:05 -05:00
|
|
|
makeUploadRequest,
|
2017-09-04 15:21:47 -04:00
|
|
|
makePostBodyRequest,
|
2017-12-28 08:29:57 -05:00
|
|
|
makePutBodyRequest,
|
2018-06-29 05:29:23 -04:00
|
|
|
makeDeleteRequest,
|
2019-01-29 02:37:25 -05:00
|
|
|
makeRawRequest,
|
2021-07-06 09:33:39 -04:00
|
|
|
makeActivityPubGetRequest,
|
2021-07-06 04:21:35 -04:00
|
|
|
unwrapBody,
|
2021-08-17 02:26:20 -04:00
|
|
|
unwrapTextOrDecode,
|
|
|
|
unwrapBodyOrDecodeToJSON,
|
2021-07-16 04:42:24 -04:00
|
|
|
unwrapText
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function buildRequest (req: request.Test, options: CommonRequestParams) {
|
|
|
|
if (options.contentType) req.set('Accept', options.contentType)
|
|
|
|
if (options.token) req.set('Authorization', 'Bearer ' + options.token)
|
|
|
|
if (options.range) req.set('Range', options.range)
|
|
|
|
if (options.accept) req.set('Accept', options.accept)
|
|
|
|
if (options.host) req.set('Host', options.host)
|
|
|
|
if (options.redirects) req.redirects(options.redirects)
|
|
|
|
if (options.xForwardedFor) req.set('X-Forwarded-For', options.xForwardedFor)
|
|
|
|
if (options.type) req.type(options.type)
|
|
|
|
|
|
|
|
Object.keys(options.headers || {}).forEach(name => {
|
|
|
|
req.set(name, options.headers[name])
|
|
|
|
})
|
|
|
|
|
2022-08-11 11:24:23 -04:00
|
|
|
return req.expect((res) => {
|
|
|
|
if (options.expectedStatus && res.status !== options.expectedStatus) {
|
|
|
|
throw new Error(`Expected status ${options.expectedStatus}, got ${res.status}. ` +
|
2022-12-29 08:18:07 -05:00
|
|
|
`\nThe server responded: "${res.body?.error ?? res.text}".\n` +
|
2022-08-11 11:24:23 -04:00
|
|
|
'You may take a closer look at the logs. To see how to do so, check out this page: ' +
|
|
|
|
'https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/development/tests.md#debug-server-logs')
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
})
|
2021-07-16 04:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function buildFields (req: request.Test, fields: { [ fieldName: string ]: any }, namespace?: string) {
|
|
|
|
if (!fields) return
|
|
|
|
|
|
|
|
let formKey: string
|
|
|
|
|
|
|
|
for (const key of Object.keys(fields)) {
|
|
|
|
if (namespace) formKey = `${namespace}[${key}]`
|
|
|
|
else formKey = key
|
|
|
|
|
|
|
|
if (fields[key] === undefined) continue
|
|
|
|
|
|
|
|
if (Array.isArray(fields[key]) && fields[key].length === 0) {
|
2021-08-18 05:12:21 -04:00
|
|
|
req.field(key, [])
|
2021-07-16 04:42:24 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fields[key] !== null && typeof fields[key] === 'object') {
|
|
|
|
buildFields(req, fields[key], formKey)
|
|
|
|
} else {
|
|
|
|
req.field(formKey, fields[key])
|
|
|
|
}
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|