aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/tests/utils/feeds/feeds.ts
blob: af6df2b208fe02b88df90b2ed2151fff6dc70dd3 (plain) (tree)
1
2
3
4
5
6
                                    
 



                                                                    








                                                    
                                                                     
                                         


                     
                       










                                                                              
import * as request from 'supertest'

type FeedType = 'videos' | 'video-comments'

function getXMLfeed (url: string, feed: FeedType, format?: string) {
  const path = '/feeds/' + feed + '.xml'

  return request(url)
          .get(path)
          .query((format) ? { format: format } : {})
          .set('Accept', 'application/xml')
          .expect(200)
          .expect('Content-Type', /xml/)
}

function getJSONfeed (url: string, feed: FeedType, query: any = {}) {
  const path = '/feeds/' + feed + '.json'

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

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

export {
  getXMLfeed,
  getJSONfeed
}