PeerTube/shared/extra-utils/server/clients.ts

20 lines
457 B
TypeScript
Raw Normal View History

2017-09-04 21:21:47 +02:00
import * as request from 'supertest'
2018-02-16 11:04:12 +01:00
import * as urlUtil from 'url'
2017-09-04 21:21:47 +02:00
function getClient (url: string) {
2017-09-07 17:58:09 +02:00
const path = '/api/v1/oauth-clients/local'
2017-09-04 21:21:47 +02:00
return request(url)
.get(path)
2018-02-16 11:04:12 +01:00
.set('Host', urlUtil.parse(url).host)
2017-09-04 21:21:47 +02:00
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
// ---------------------------------------------------------------------------
export {
getClient
}