PeerTube/tests/api/singlePod.js

148 lines
3.6 KiB
JavaScript
Raw Normal View History

2015-06-09 17:41:40 +02:00
;(function () {
'use strict'
2016-01-24 16:08:09 +01:00
var async = require('async')
2015-06-09 17:41:40 +02:00
var chai = require('chai')
var expect = chai.expect
2016-01-31 11:23:52 +01:00
var fs = require('fs')
2015-12-06 17:09:07 +01:00
2016-02-06 16:22:39 +01:00
var webtorrent = require(__dirname + '/../../lib/webtorrent')
2015-06-09 17:41:40 +02:00
webtorrent.silent = true
2015-12-06 17:09:07 +01:00
var utils = require('./utils')
2015-06-09 17:41:40 +02:00
describe('Test a single pod', function () {
var app = null
var url = ''
var video_id = -1
before(function (done) {
2015-10-30 20:26:36 +01:00
this.timeout(20000)
2015-06-09 17:41:40 +02:00
2016-01-24 16:08:09 +01:00
async.series([
function (next) {
utils.flushTests(next)
},
function (next) {
utils.runServer(1, function (app1, url1) {
app = app1
url = url1
next()
2015-06-09 17:41:40 +02:00
})
2016-01-24 16:08:09 +01:00
},
function (next) {
webtorrent.create({ host: 'client', port: '1' }, next)
}
], done)
2015-06-09 17:41:40 +02:00
})
it('Should not have videos', function (done) {
2015-12-06 17:09:07 +01:00
utils.getVideosList(url, function (err, res) {
if (err) throw err
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
expect(res.body).to.be.an('array')
expect(res.body.length).to.equal(0)
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
done()
})
2015-06-09 17:41:40 +02:00
})
it('Should upload the video', function (done) {
this.timeout(5000)
2015-12-06 17:09:07 +01:00
utils.uploadVideo(url, 'my super name', 'my super description', 'video_short.webm', done)
2015-06-09 17:41:40 +02:00
})
it('Should seed the uploaded video', function (done) {
// Yes, this could be long
this.timeout(60000)
2015-12-06 17:09:07 +01:00
utils.getVideosList(url, function (err, res) {
if (err) throw err
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
expect(res.body).to.be.an('array')
expect(res.body.length).to.equal(1)
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
var video = res.body[0]
expect(video.name).to.equal('my super name')
expect(video.description).to.equal('my super description')
expect(video.podUrl).to.equal('http://localhost:9001')
expect(video.magnetUri).to.exist
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
video_id = video._id
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
webtorrent.add(video.magnetUri, function (torrent) {
expect(torrent.files).to.exist
expect(torrent.files.length).to.equal(1)
expect(torrent.files[0].path).to.exist.and.to.not.equal('')
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
done()
2015-06-09 17:41:40 +02:00
})
2015-12-06 17:09:07 +01:00
})
2015-06-09 17:41:40 +02:00
})
2015-12-05 10:28:27 +01:00
it('Should search the video', function (done) {
2015-12-06 17:09:07 +01:00
utils.searchVideo(url, 'my', function (err, res) {
if (err) throw err
2015-12-05 10:28:27 +01:00
2015-12-06 17:09:07 +01:00
expect(res.body).to.be.an('array')
expect(res.body.length).to.equal(1)
2015-12-05 10:28:27 +01:00
2015-12-06 17:09:07 +01:00
var video = res.body[0]
expect(video.name).to.equal('my super name')
expect(video.description).to.equal('my super description')
expect(video.podUrl).to.equal('http://localhost:9001')
expect(video.magnetUri).to.exist
2015-12-05 10:28:27 +01:00
2015-12-06 17:09:07 +01:00
done()
})
2015-12-05 10:28:27 +01:00
})
it('Should not find a search', function (done) {
2015-12-06 17:09:07 +01:00
utils.searchVideo(url, 'hello', function (err, res) {
if (err) throw err
2015-12-05 10:28:27 +01:00
2015-12-06 17:09:07 +01:00
expect(res.body).to.be.an('array')
expect(res.body.length).to.equal(0)
2015-12-05 10:28:27 +01:00
2015-12-06 17:09:07 +01:00
done()
})
2015-12-05 10:28:27 +01:00
})
2015-06-09 17:41:40 +02:00
it('Should remove the video', function (done) {
2015-12-06 17:09:07 +01:00
utils.removeVideo(url, video_id, function (err) {
if (err) throw err
2015-11-06 17:34:15 +01:00
2015-12-06 17:09:07 +01:00
fs.readdir(__dirname + '/../../test1/uploads/', function (err, files) {
if (err) throw err
2015-11-06 17:34:15 +01:00
2015-12-06 17:09:07 +01:00
expect(files.length).to.equal(0)
done()
2015-06-09 17:41:40 +02:00
})
2015-12-06 17:09:07 +01:00
})
2015-06-09 17:41:40 +02:00
})
it('Should not have videos', function (done) {
2015-12-06 17:09:07 +01:00
utils.getVideosList(url, function (err, res) {
if (err) throw err
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
expect(res.body).to.be.an('array')
expect(res.body.length).to.equal(0)
2015-06-09 17:41:40 +02:00
2015-12-06 17:09:07 +01:00
done()
})
2015-06-09 17:41:40 +02:00
})
after(function (done) {
process.kill(-app.pid)
process.kill(-webtorrent.app.pid)
// Keep the logs if the test failed
if (this.ok) {
2016-01-24 16:08:09 +01:00
utils.flushTests(done)
2015-06-09 17:41:40 +02:00
} else {
done()
}
})
})
})()