2015-11-24 08:33:59 +01:00
|
|
|
;(function () {
|
|
|
|
'use strict'
|
|
|
|
|
|
|
|
var chai = require('chai')
|
|
|
|
var expect = chai.expect
|
|
|
|
|
2015-12-06 17:09:07 +01:00
|
|
|
var utils = require('./utils')
|
2015-11-24 08:33:59 +01:00
|
|
|
|
|
|
|
describe('Test advanced friends', function () {
|
|
|
|
var apps = []
|
|
|
|
var urls = []
|
|
|
|
|
|
|
|
function makeFriend (pod_number, callback) {
|
2015-12-06 17:09:07 +01:00
|
|
|
return utils.makeFriend(urls[pod_number - 1], callback)
|
2015-11-24 08:33:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getFriendsList (pod_number, end) {
|
2015-12-06 17:09:07 +01:00
|
|
|
return utils.getFriendsList(urls[pod_number - 1], end)
|
2015-11-24 08:33:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function uploadVideo (pod_number, callback) {
|
2015-12-06 17:09:07 +01:00
|
|
|
var name = 'my super video'
|
|
|
|
var description = 'my super description'
|
|
|
|
var fixture = 'video_short.webm'
|
2015-11-24 08:33:59 +01:00
|
|
|
|
2015-12-06 17:09:07 +01:00
|
|
|
return utils.uploadVideo(urls[pod_number - 1], name, description, fixture, callback)
|
2015-11-24 08:33:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(function (done) {
|
|
|
|
this.timeout(30000)
|
|
|
|
utils.runMultipleServers(6, function (apps_run, urls_run) {
|
|
|
|
apps = apps_run
|
|
|
|
urls = urls_run
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function (done) {
|
|
|
|
apps.forEach(function (app) {
|
|
|
|
process.kill(-app.pid)
|
|
|
|
})
|
|
|
|
|
|
|
|
if (this.ok) {
|
|
|
|
utils.flushTests(function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should make friends with two pod each in a different group', function (done) {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
// Pod 3 makes friend with the first one
|
|
|
|
makeFriend(3, function () {
|
|
|
|
// Pod 4 makes friend with the second one
|
|
|
|
makeFriend(4, function () {
|
|
|
|
// Now if the fifth wants to make friends with the third et the first
|
|
|
|
makeFriend(5, function () {
|
|
|
|
// It should have 0 friends
|
|
|
|
getFriendsList(5, function (err, res) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
expect(res.body.length).to.equal(0)
|
|
|
|
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should make friends with the pods 1, 2, 3', function (done) {
|
2015-12-04 16:13:32 +01:00
|
|
|
this.timeout(150000)
|
2015-11-24 08:33:59 +01:00
|
|
|
|
2015-12-04 16:13:32 +01:00
|
|
|
// Pods 1, 2, 3 and 4 become friends (yes this is beautiful)
|
2015-11-24 08:33:59 +01:00
|
|
|
makeFriend(2, function () {
|
|
|
|
makeFriend(1, function () {
|
|
|
|
makeFriend(4, function () {
|
|
|
|
// Kill the server 4
|
|
|
|
apps[3].kill()
|
|
|
|
|
|
|
|
// Expulse pod 4 from pod 1 and 2
|
|
|
|
uploadVideo(1, function () {
|
2015-12-07 17:19:13 +01:00
|
|
|
uploadVideo(2, function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
uploadVideo(1, function () {
|
2015-12-04 16:13:32 +01:00
|
|
|
uploadVideo(2, function () {
|
|
|
|
setTimeout(function () {
|
2015-12-07 17:19:13 +01:00
|
|
|
// Rerun server 4
|
|
|
|
utils.runServer(4, function (app, url) {
|
|
|
|
apps[3] = app
|
|
|
|
getFriendsList(4, function (err, res) {
|
|
|
|
if (err) throw err
|
|
|
|
// Pod 4 didn't know pod 1 and 2 removed it
|
|
|
|
expect(res.body.length).to.equal(3)
|
|
|
|
|
|
|
|
// Pod 6 ask pod 1, 2 and 3
|
|
|
|
makeFriend(6, function () {
|
|
|
|
getFriendsList(6, function (err, res) {
|
2015-12-04 16:13:32 +01:00
|
|
|
if (err) throw err
|
2015-12-07 17:19:13 +01:00
|
|
|
|
|
|
|
// Pod 4 should not be our friend
|
|
|
|
var result = res.body
|
|
|
|
expect(result.length).to.equal(3)
|
|
|
|
for (var pod of result) {
|
|
|
|
expect(pod.url).not.equal(urls[3])
|
|
|
|
}
|
|
|
|
|
|
|
|
done()
|
2015-12-04 16:13:32 +01:00
|
|
|
})
|
|
|
|
})
|
2015-12-07 17:19:13 +01:00
|
|
|
})
|
2015-11-24 08:33:59 +01:00
|
|
|
})
|
2015-12-06 22:40:30 +01:00
|
|
|
}, 15000)
|
2015-11-24 08:33:59 +01:00
|
|
|
})
|
2015-12-07 17:19:13 +01:00
|
|
|
})
|
|
|
|
}, 11000)
|
|
|
|
})
|
2015-11-24 08:33:59 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})()
|