From 0e1dc3e7c69995c691e1dd82e3c2bc68748661ca Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 4 Sep 2017 21:21:47 +0200 Subject: Convert tests to typescript --- server/tests/utils/video-abuses.js | 73 -------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 server/tests/utils/video-abuses.js (limited to 'server/tests/utils/video-abuses.js') diff --git a/server/tests/utils/video-abuses.js b/server/tests/utils/video-abuses.js deleted file mode 100644 index c4dd87990..000000000 --- a/server/tests/utils/video-abuses.js +++ /dev/null @@ -1,73 +0,0 @@ -'use strict' - -const request = require('supertest') - -const videosAbuseUtils = { - getVideoAbusesList, - getVideoAbusesListPagination, - getVideoAbusesListSort, - reportVideoAbuse -} - -// ---------------------- Export functions -------------------- - -function reportVideoAbuse (url, token, videoId, reason, specialStatus, end) { - if (!end) { - end = specialStatus - specialStatus = 204 - } - - const path = '/api/v1/videos/' + videoId + '/abuse' - - request(url) - .post(path) - .set('Accept', 'application/json') - .set('Authorization', 'Bearer ' + token) - .send({ reason }) - .expect(specialStatus) - .end(end) -} - -function getVideoAbusesList (url, token, end) { - const path = '/api/v1/videos/abuse' - - request(url) - .get(path) - .query({ sort: 'createdAt' }) - .set('Accept', 'application/json') - .set('Authorization', 'Bearer ' + token) - .expect(200) - .expect('Content-Type', /json/) - .end(end) -} - -function getVideoAbusesListPagination (url, token, start, count, end) { - const path = '/api/v1/videos/abuse' - - request(url) - .get(path) - .query({ start: start }) - .query({ count: count }) - .set('Accept', 'application/json') - .set('Authorization', 'Bearer ' + token) - .expect(200) - .expect('Content-Type', /json/) - .end(end) -} - -function getVideoAbusesListSort (url, token, sort, end) { - const path = '/api/v1/videos/abuse' - - request(url) - .get(path) - .query({ sort: sort }) - .set('Accept', 'application/json') - .set('Authorization', 'Bearer ' + token) - .expect(200) - .expect('Content-Type', /json/) - .end(end) -} - -// --------------------------------------------------------------------------- - -module.exports = videosAbuseUtils -- cgit v1.2.3