]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/singlePod.js
Update client packages
[github/Chocobozzz/PeerTube.git] / server / tests / api / singlePod.js
CommitLineData
9f10b292
C
1'use strict'
2
f0f5567b
C
3const async = require('async')
4const chai = require('chai')
5const expect = chai.expect
6const fs = require('fs')
7const pathUtils = require('path')
9f10b292 8
f0f5567b 9const webtorrent = require(pathUtils.join(__dirname, '../../lib/webtorrent'))
9f10b292
C
10webtorrent.silent = true
11
f0f5567b 12const utils = require('./utils')
9f10b292
C
13
14describe('Test a single pod', function () {
f0f5567b
C
15 let app = null
16 let url = ''
17 let video_id = -1
9f10b292
C
18
19 before(function (done) {
20 this.timeout(20000)
21
22 async.series([
23 function (next) {
24 utils.flushTests(next)
25 },
26 function (next) {
27 utils.runServer(1, function (app1, url1) {
28 app = app1
29 url = url1
30 next()
31 })
32 },
33 function (next) {
34 webtorrent.create({ host: 'client', port: '1' }, next)
35 }
36 ], done)
37 })
8c308c2b 38
9f10b292
C
39 it('Should not have videos', function (done) {
40 utils.getVideosList(url, function (err, res) {
41 if (err) throw err
8c308c2b 42
9f10b292
C
43 expect(res.body).to.be.an('array')
44 expect(res.body.length).to.equal(0)
8c308c2b 45
9f10b292 46 done()
8c308c2b 47 })
9f10b292 48 })
8c308c2b 49
9f10b292
C
50 it('Should upload the video', function (done) {
51 this.timeout(5000)
52 utils.uploadVideo(url, 'my super name', 'my super description', 'video_short.webm', done)
53 })
8c308c2b 54
9f10b292
C
55 it('Should seed the uploaded video', function (done) {
56 // Yes, this could be long
57 this.timeout(60000)
8c308c2b 58
9f10b292
C
59 utils.getVideosList(url, function (err, res) {
60 if (err) throw err
8c308c2b 61
9f10b292
C
62 expect(res.body).to.be.an('array')
63 expect(res.body.length).to.equal(1)
8c308c2b 64
f0f5567b 65 const video = res.body[0]
9f10b292
C
66 expect(video.name).to.equal('my super name')
67 expect(video.description).to.equal('my super description')
68 expect(video.podUrl).to.equal('http://localhost:9001')
69 expect(video.magnetUri).to.exist
8c308c2b 70
2df82d42
C
71 video_id = video.id
72
73 webtorrent.add(video.magnetUri, function (torrent) {
74 expect(torrent.files).to.exist
75 expect(torrent.files.length).to.equal(1)
76 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
77
78 done()
79 })
80 })
81 })
82
83 it('Should get the video', function (done) {
84 // Yes, this could be long
85 this.timeout(60000)
86
87 utils.getVideo(url, video_id, function (err, res) {
88 if (err) throw err
89
90 const video = res.body
91 expect(video.name).to.equal('my super name')
92 expect(video.description).to.equal('my super description')
93 expect(video.podUrl).to.equal('http://localhost:9001')
94 expect(video.magnetUri).to.exist
8c308c2b 95
9f10b292
C
96 webtorrent.add(video.magnetUri, function (torrent) {
97 expect(torrent.files).to.exist
98 expect(torrent.files.length).to.equal(1)
99 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
8c308c2b 100
9f10b292 101 done()
876d1bcf 102 })
8c308c2b 103 })
9f10b292 104 })
8c308c2b 105
9f10b292
C
106 it('Should search the video', function (done) {
107 utils.searchVideo(url, 'my', function (err, res) {
108 if (err) throw err
4d5f8138 109
9f10b292
C
110 expect(res.body).to.be.an('array')
111 expect(res.body.length).to.equal(1)
4d5f8138 112
f0f5567b 113 const video = res.body[0]
9f10b292
C
114 expect(video.name).to.equal('my super name')
115 expect(video.description).to.equal('my super description')
116 expect(video.podUrl).to.equal('http://localhost:9001')
4d5f8138 117
9f10b292 118 done()
4d5f8138 119 })
9f10b292 120 })
4d5f8138 121
9f10b292
C
122 it('Should not find a search', function (done) {
123 utils.searchVideo(url, 'hello', function (err, res) {
124 if (err) throw err
4d5f8138 125
9f10b292
C
126 expect(res.body).to.be.an('array')
127 expect(res.body.length).to.equal(0)
4d5f8138 128
9f10b292 129 done()
4d5f8138 130 })
9f10b292 131 })
4d5f8138 132
9f10b292
C
133 it('Should remove the video', function (done) {
134 utils.removeVideo(url, video_id, function (err) {
135 if (err) throw err
f5a60a51 136
3d446a26 137 fs.readdir(pathUtils.join(__dirname, '../../../test1/uploads/'), function (err, files) {
9f10b292 138 if (err) throw err
f5a60a51 139
9f10b292
C
140 expect(files.length).to.equal(0)
141 done()
876d1bcf 142 })
8c308c2b 143 })
9f10b292 144 })
8c308c2b 145
9f10b292
C
146 it('Should not have videos', function (done) {
147 utils.getVideosList(url, function (err, res) {
148 if (err) throw err
8c308c2b 149
9f10b292
C
150 expect(res.body).to.be.an('array')
151 expect(res.body.length).to.equal(0)
8c308c2b 152
9f10b292 153 done()
8c308c2b 154 })
9f10b292 155 })
8c308c2b 156
9f10b292
C
157 after(function (done) {
158 process.kill(-app.pid)
159 process.kill(-webtorrent.app.pid)
8c308c2b 160
9f10b292
C
161 // Keep the logs if the test failed
162 if (this.ok) {
163 utils.flushTests(done)
164 } else {
165 done()
166 }
8c308c2b 167 })
9f10b292 168})