diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-02-21 21:35:59 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-02-26 20:01:26 +0100 |
commit | 9e167724f7e933f41d9ea2e1c31772bf4c560a28 (patch) | |
tree | 093cb7c1b088f35aaf847f859a313a121c8cd233 /server/tests/api/single-pod.js | |
parent | 0150b17e51df3e9fad8a59133d828c68f8ba672b (diff) | |
download | PeerTube-9e167724f7e933f41d9ea2e1c31772bf4c560a28.tar.gz PeerTube-9e167724f7e933f41d9ea2e1c31772bf4c560a28.tar.zst PeerTube-9e167724f7e933f41d9ea2e1c31772bf4c560a28.zip |
Server: make a basic "quick and dirty update" for videos
This system will be useful to to update some int video attributes
(likes, dislikes, views...)
The classic system is not used because we need some optimization for
scaling
Diffstat (limited to 'server/tests/api/single-pod.js')
-rw-r--r-- | server/tests/api/single-pod.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/tests/api/single-pod.js b/server/tests/api/single-pod.js index 83a2b4411..40c33686f 100644 --- a/server/tests/api/single-pod.js +++ b/server/tests/api/single-pod.js | |||
@@ -129,6 +129,17 @@ describe('Test a single pod', function () { | |||
129 | }) | 129 | }) |
130 | }) | 130 | }) |
131 | 131 | ||
132 | it('Should have the views updated', function (done) { | ||
133 | videosUtils.getVideo(server.url, videoId, function (err, res) { | ||
134 | if (err) throw err | ||
135 | |||
136 | const video = res.body | ||
137 | expect(video.views).to.equal(1) | ||
138 | |||
139 | done() | ||
140 | }) | ||
141 | }) | ||
142 | |||
132 | it('Should search the video by name by default', function (done) { | 143 | it('Should search the video by name by default', function (done) { |
133 | videosUtils.searchVideo(server.url, 'my', function (err, res) { | 144 | videosUtils.searchVideo(server.url, 'my', function (err, res) { |
134 | if (err) throw err | 145 | if (err) throw err |