diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-01 19:04:29 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-01 19:04:29 +0200 |
commit | 843aa7ba0312e7180e7bbae147e32ee60e70d9ba (patch) | |
tree | df5533a9dda312877b8b3a6992b81c75044c094e /server/tests/utils | |
parent | 3eeeb87fe62fab3e48455f53c8a725b49878b9b3 (diff) | |
download | PeerTube-843aa7ba0312e7180e7bbae147e32ee60e70d9ba.tar.gz PeerTube-843aa7ba0312e7180e7bbae147e32ee60e70d9ba.tar.zst PeerTube-843aa7ba0312e7180e7bbae147e32ee60e70d9ba.zip |
Server: add tests for video blacklists
Diffstat (limited to 'server/tests/utils')
-rw-r--r-- | server/tests/utils/video-abuses.js | 4 | ||||
-rw-r--r-- | server/tests/utils/video-blacklists.js | 29 |
2 files changed, 31 insertions, 2 deletions
diff --git a/server/tests/utils/video-abuses.js b/server/tests/utils/video-abuses.js index 596c824b3..c4dd87990 100644 --- a/server/tests/utils/video-abuses.js +++ b/server/tests/utils/video-abuses.js | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | const request = require('supertest') | 3 | const request = require('supertest') |
4 | 4 | ||
5 | const videosUtils = { | 5 | const videosAbuseUtils = { |
6 | getVideoAbusesList, | 6 | getVideoAbusesList, |
7 | getVideoAbusesListPagination, | 7 | getVideoAbusesListPagination, |
8 | getVideoAbusesListSort, | 8 | getVideoAbusesListSort, |
@@ -70,4 +70,4 @@ function getVideoAbusesListSort (url, token, sort, end) { | |||
70 | 70 | ||
71 | // --------------------------------------------------------------------------- | 71 | // --------------------------------------------------------------------------- |
72 | 72 | ||
73 | module.exports = videosUtils | 73 | module.exports = videosAbuseUtils |
diff --git a/server/tests/utils/video-blacklists.js b/server/tests/utils/video-blacklists.js new file mode 100644 index 000000000..0a58dd631 --- /dev/null +++ b/server/tests/utils/video-blacklists.js | |||
@@ -0,0 +1,29 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | const request = require('supertest') | ||
4 | |||
5 | const videosBlacklistsUtils = { | ||
6 | addVideoToBlacklist | ||
7 | } | ||
8 | |||
9 | // ---------------------- Export functions -------------------- | ||
10 | |||
11 | function addVideoToBlacklist (url, token, videoId, specialStatus, end) { | ||
12 | if (!end) { | ||
13 | end = specialStatus | ||
14 | specialStatus = 204 | ||
15 | } | ||
16 | |||
17 | const path = '/api/v1/videos/' + videoId + '/blacklist' | ||
18 | |||
19 | request(url) | ||
20 | .post(path) | ||
21 | .set('Accept', 'application/json') | ||
22 | .set('Authorization', 'Bearer ' + token) | ||
23 | .expect(specialStatus) | ||
24 | .end(end) | ||
25 | } | ||
26 | |||
27 | // --------------------------------------------------------------------------- | ||
28 | |||
29 | module.exports = videosBlacklistsUtils | ||