mirror of https://github.com/Chocobozzz/PeerTube
Fix test (#71)
* Fix timeouting tests * Increase timeout to be sure requests will be propagated * Add timeout to be sure video views will be updated * Use standard style * Fix PR comments.pull/76/head
parent
ba44fa1953
commit
5fe7e89831
|
@ -23,7 +23,7 @@ describe('Test users API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
function (next) {
|
||||
|
|
|
@ -17,7 +17,7 @@ describe('Test video blacklists API validators', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
function (next) {
|
||||
|
|
|
@ -378,7 +378,7 @@ describe('Test videos API validator', function () {
|
|||
})
|
||||
|
||||
it('Should succeed with the correct parameters', function (done) {
|
||||
this.timeout(5000)
|
||||
this.timeout(10000)
|
||||
|
||||
const data = {
|
||||
name: 'my super name',
|
||||
|
@ -392,6 +392,7 @@ describe('Test videos API validator', function () {
|
|||
const attach = {
|
||||
'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
|
||||
}
|
||||
|
||||
requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, function () {
|
||||
attach.videofile = pathUtils.join(__dirname, '..', 'fixtures', 'video_short.mp4')
|
||||
requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, function () {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Test config', function () {
|
|||
let server = null
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
function (next) {
|
||||
|
|
|
@ -46,7 +46,7 @@ describe('Test advanced friends', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(30000)
|
||||
this.timeout(120000)
|
||||
serversUtils.flushAndRunMultipleServers(6, function (serversRun, urlsRun) {
|
||||
servers = serversRun
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ describe('Test basic friends', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
serversUtils.flushAndRunMultipleServers(3, function (serversRun, urlsRun) {
|
||||
servers = serversRun
|
||||
|
||||
|
@ -76,7 +76,7 @@ describe('Test basic friends', function () {
|
|||
})
|
||||
|
||||
it('Should make friends', function (done) {
|
||||
this.timeout(40000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
// The second pod make friend with the third
|
||||
|
@ -142,11 +142,14 @@ describe('Test basic friends', function () {
|
|||
})
|
||||
|
||||
it('Should not be allowed to make friend again', function (done) {
|
||||
this.timeout(10000)
|
||||
const server = servers[1]
|
||||
podsUtils.makeFriends(server.url, server.accessToken, 409, done)
|
||||
})
|
||||
|
||||
it('Should quit friends of pod 2', function (done) {
|
||||
this.timeout(10000)
|
||||
|
||||
series([
|
||||
// Pod 1 quit friends
|
||||
function (next) {
|
||||
|
@ -183,7 +186,7 @@ describe('Test basic friends', function () {
|
|||
})
|
||||
|
||||
it('Should allow pod 2 to make friend again', function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
|
||||
const server = servers[1]
|
||||
podsUtils.makeFriends(server.url, server.accessToken, function () {
|
||||
|
|
|
@ -22,7 +22,7 @@ describe('Test multiple pods', function () {
|
|||
const toRemove = []
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(30000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
// Run servers
|
||||
|
@ -230,7 +230,7 @@ describe('Test multiple pods', function () {
|
|||
})
|
||||
|
||||
it('Should upload two videos on pod 3 and propagate on each pod', function (done) {
|
||||
this.timeout(30000)
|
||||
this.timeout(45000)
|
||||
|
||||
series([
|
||||
function (next) {
|
||||
|
@ -260,7 +260,7 @@ describe('Test multiple pods', function () {
|
|||
videosUtils.uploadVideo(servers[2].url, servers[2].accessToken, videoAttributes, next)
|
||||
},
|
||||
function (next) {
|
||||
setTimeout(next, 22000)
|
||||
setTimeout(next, 33000)
|
||||
}],
|
||||
function (err) {
|
||||
if (err) throw err
|
||||
|
|
|
@ -37,7 +37,7 @@ describe('Test requests schedulers stats', function () {
|
|||
// ---------------------------------------------------------------
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
serversUtils.flushAndRunMultipleServers(2, function (serversRun, urlsRun) {
|
||||
servers = serversRun
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ describe('Test a single pod', function () {
|
|||
let videosListBase = null
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
function (next) {
|
||||
|
@ -181,7 +181,8 @@ describe('Test a single pod', function () {
|
|||
if (err) throw err
|
||||
expect(test).to.equal(true)
|
||||
|
||||
done()
|
||||
// Wait the async views increment
|
||||
setTimeout(done, 500)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -21,7 +21,7 @@ describe('Test users', function () {
|
|||
let userId = null
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(20000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
function (next) {
|
||||
|
|
|
@ -17,7 +17,7 @@ describe('Test video abuses', function () {
|
|||
let servers = []
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(40000)
|
||||
this.timeout(100000)
|
||||
|
||||
series([
|
||||
// Run servers
|
||||
|
|
|
@ -17,7 +17,7 @@ describe('Test video blacklists', function () {
|
|||
let servers = []
|
||||
|
||||
before(function (done) {
|
||||
this.timeout(40000)
|
||||
this.timeout(120000)
|
||||
|
||||
series([
|
||||
// Run servers
|
||||
|
|
Loading…
Reference in New Issue