2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const async = require('async')
|
|
|
|
const chai = require('chai')
|
|
|
|
const expect = chai.expect
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const utils = require('./utils')
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
describe('Test advanced friends', function () {
|
2016-03-16 17:29:27 -04:00
|
|
|
let apps = []
|
|
|
|
let urls = []
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function makeFriends (pod_number, callback) {
|
|
|
|
return utils.makeFriends(urls[pod_number - 1], callback)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function quitFriends (pod_number, callback) {
|
|
|
|
return utils.quitFriends(urls[pod_number - 1], callback)
|
|
|
|
}
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function getFriendsList (pod_number, end) {
|
|
|
|
return utils.getFriendsList(urls[pod_number - 1], end)
|
|
|
|
}
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function uploadVideo (pod_number, callback) {
|
2016-03-16 17:29:27 -04:00
|
|
|
const name = 'my super video'
|
|
|
|
const description = 'my super description'
|
|
|
|
const fixture = 'video_short.webm'
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
return utils.uploadVideo(urls[pod_number - 1], name, description, fixture, callback)
|
|
|
|
}
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function getVideos (pod_number, callback) {
|
|
|
|
return utils.getVideosList(urls[pod_number - 1], callback)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------
|
2016-01-24 10:08:09 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
before(function (done) {
|
|
|
|
this.timeout(30000)
|
|
|
|
utils.flushAndRunMultipleServers(6, function (apps_run, urls_run) {
|
|
|
|
apps = apps_run
|
|
|
|
urls = urls_run
|
|
|
|
done()
|
2015-11-24 02:33:59 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
it('Should make friends with two pod each in a different group', function (done) {
|
|
|
|
this.timeout(20000)
|
|
|
|
|
|
|
|
async.series([
|
|
|
|
// Pod 3 makes friend with the first one
|
|
|
|
function (next) {
|
|
|
|
makeFriends(3, next)
|
|
|
|
},
|
|
|
|
// Pod 4 makes friend with the second one
|
|
|
|
function (next) {
|
|
|
|
makeFriends(4, next)
|
|
|
|
},
|
|
|
|
// Now if the fifth wants to make friends with the third et the first
|
|
|
|
function (next) {
|
|
|
|
makeFriends(5, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
setTimeout(next, 11000)
|
|
|
|
}],
|
|
|
|
function (err) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
// It should have 0 friends
|
|
|
|
getFriendsList(5, function (err, res) {
|
2016-01-24 10:08:09 -05:00
|
|
|
if (err) throw err
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
expect(res.body.length).to.equal(0)
|
|
|
|
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should quit all friends', function (done) {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
async.series([
|
|
|
|
function (next) {
|
|
|
|
quitFriends(1, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
quitFriends(2, next)
|
|
|
|
}],
|
|
|
|
function (err) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
async.each([ 1, 2, 3, 4, 5, 6 ], function (i, callback) {
|
|
|
|
getFriendsList(i, function (err, res) {
|
2016-01-24 10:08:09 -05:00
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
expect(res.body.length).to.equal(0)
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
callback()
|
2015-11-24 02:33:59 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}, done)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2015-11-24 02:33:59 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
it('Should make friends with the pods 1, 2, 3', function (done) {
|
|
|
|
this.timeout(150000)
|
|
|
|
|
|
|
|
async.series([
|
|
|
|
// Pods 1, 2, 3 and 4 become friends
|
|
|
|
function (next) {
|
|
|
|
makeFriends(2, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
makeFriends(1, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
makeFriends(4, next)
|
|
|
|
},
|
|
|
|
// Kill pod 4
|
|
|
|
function (next) {
|
|
|
|
apps[3].kill()
|
|
|
|
next()
|
|
|
|
},
|
|
|
|
// Expulse pod 4 from pod 1 and 2
|
|
|
|
function (next) {
|
|
|
|
uploadVideo(1, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
uploadVideo(2, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
setTimeout(next, 11000)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
uploadVideo(1, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
uploadVideo(2, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
setTimeout(next, 20000)
|
|
|
|
},
|
|
|
|
// Rerun server 4
|
|
|
|
function (next) {
|
|
|
|
utils.runServer(4, function (app, url) {
|
|
|
|
apps[3] = app
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
getFriendsList(4, function (err, res) {
|
2016-01-24 10:08:09 -05:00
|
|
|
if (err) throw err
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// Pod 4 didn't know pod 1 and 2 removed it
|
|
|
|
expect(res.body.length).to.equal(3)
|
2016-01-24 10:08:09 -05:00
|
|
|
|
|
|
|
next()
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
},
|
|
|
|
// Pod 6 ask pod 1, 2 and 3
|
|
|
|
function (next) {
|
|
|
|
makeFriends(6, next)
|
|
|
|
}],
|
|
|
|
function (err) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
getFriendsList(6, function (err, res) {
|
2016-01-24 10:08:09 -05:00
|
|
|
if (err) throw err
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// Pod 4 should not be our friend
|
2016-03-16 17:29:27 -04:00
|
|
|
const result = res.body
|
2016-02-07 05:23:23 -05:00
|
|
|
expect(result.length).to.equal(3)
|
2016-03-16 17:29:27 -04:00
|
|
|
for (const pod of result) {
|
2016-02-07 05:23:23 -05:00
|
|
|
expect(pod.url).not.equal(urls[3])
|
|
|
|
}
|
2016-01-24 10:08:09 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2016-01-24 10:08:09 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
it('Should pod 1 quit friends', function (done) {
|
|
|
|
this.timeout(25000)
|
|
|
|
|
|
|
|
async.series([
|
|
|
|
// Upload a video on server 3 for aditionnal tests
|
|
|
|
function (next) {
|
|
|
|
uploadVideo(3, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
setTimeout(next, 15000)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
quitFriends(1, next)
|
|
|
|
},
|
|
|
|
// Remove pod 1 from pod 2
|
|
|
|
function (next) {
|
|
|
|
getVideos(1, function (err, res) {
|
|
|
|
if (err) throw err
|
|
|
|
expect(res.body).to.be.an('array')
|
|
|
|
expect(res.body.length).to.equal(2)
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
next()
|
|
|
|
})
|
|
|
|
}],
|
|
|
|
function (err) {
|
|
|
|
if (err) throw err
|
2016-01-24 10:08:09 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
getVideos(2, function (err, res) {
|
2016-01-24 10:08:09 -05:00
|
|
|
if (err) throw err
|
2016-02-07 05:23:23 -05:00
|
|
|
expect(res.body).to.be.an('array')
|
|
|
|
expect(res.body.length).to.equal(3)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2016-01-24 10:08:09 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
it('Should make friends between pod 1 and 2 and exchange their videos', function (done) {
|
|
|
|
this.timeout(20000)
|
|
|
|
makeFriends(1, function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
getVideos(1, function (err, res) {
|
|
|
|
if (err) throw err
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
expect(res.body).to.be.an('array')
|
|
|
|
expect(res.body.length).to.equal(5)
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
}, 5000)
|
2016-01-23 12:31:58 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
2016-01-24 10:08:09 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
after(function (done) {
|
|
|
|
apps.forEach(function (app) {
|
|
|
|
process.kill(-app.pid)
|
2016-01-24 10:08:09 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
|
|
|
|
if (this.ok) {
|
|
|
|
utils.flushTests(done)
|
|
|
|
} else {
|
|
|
|
done()
|
|
|
|
}
|
2015-11-24 02:33:59 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|