Add tests and fix bugs for video privacy
[oweals/peertube.git] / server / tests / utils / services.ts
1 import * as request from 'supertest'
2
3 function getOEmbed (url: string, oembedUrl: string, format?: string, maxHeight?: number, maxWidth?: number) {
4   const path = '/services/oembed'
5   const query = {
6     url: oembedUrl,
7     format,
8     maxheight: maxHeight,
9     maxwidth: maxWidth
10   }
11
12   return request(url)
13           .get(path)
14           .query(query)
15           .set('Accept', 'application/json')
16           .expect(200)
17 }
18
19 // ---------------------------------------------------------------------------
20
21 export {
22   getOEmbed
23 }