aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/tests/utils/videos/services.ts
blob: 1a53dd4cf56b8412f208eef35e7da2d7558c69f2 (plain) (tree)






















                                                                                                             
import * as request from 'supertest'

function getOEmbed (url: string, oembedUrl: string, format?: string, maxHeight?: number, maxWidth?: number) {
  const path = '/services/oembed'
  const query = {
    url: oembedUrl,
    format,
    maxheight: maxHeight,
    maxwidth: maxWidth
  }

  return request(url)
          .get(path)
          .query(query)
          .set('Accept', 'application/json')
          .expect(200)
}

// ---------------------------------------------------------------------------

export {
  getOEmbed
}