2016-07-06 20:01:27 +02:00
|
|
|
'use strict'
|
|
|
|
|
2016-08-20 17:19:27 +02:00
|
|
|
const each = require('async/each')
|
2016-07-06 20:01:27 +02:00
|
|
|
const isEqual = require('lodash/isEqual')
|
2017-01-06 23:24:20 +01:00
|
|
|
const differenceWith = require('lodash/differenceWith')
|
2016-07-18 17:17:52 +02:00
|
|
|
const program = require('commander')
|
|
|
|
const series = require('async/series')
|
2016-07-06 20:01:27 +02:00
|
|
|
|
|
|
|
process.env.NODE_ENV = 'test'
|
|
|
|
const constants = require('../../initializers/constants')
|
|
|
|
|
2016-08-20 17:19:27 +02:00
|
|
|
const loginUtils = require('../utils/login')
|
|
|
|
const podsUtils = require('../utils/pods')
|
|
|
|
const serversUtils = require('../utils/servers')
|
|
|
|
const videosUtils = require('../utils/videos')
|
2016-07-06 20:01:27 +02:00
|
|
|
|
|
|
|
program
|
|
|
|
.option('-c, --create [weight]', 'Weight for creating videos')
|
|
|
|
.option('-r, --remove [weight]', 'Weight for removing videos')
|
2017-01-11 18:41:28 +01:00
|
|
|
.option('-u, --update [weight]', 'Weight for updating videos')
|
2016-07-06 20:01:27 +02:00
|
|
|
.option('-p, --pods [n]', 'Number of pods to run (3 or 6)', /^3|6$/, 3)
|
|
|
|
.option('-a, --action [interval]', 'Interval in ms for an action')
|
|
|
|
.option('-i, --integrity [interval]', 'Interval in ms for an integrity check')
|
|
|
|
.option('-f, --flush', 'Flush datas on exit')
|
2017-01-06 23:24:20 +01:00
|
|
|
.option('-d, --difference', 'Display difference if integrity is not okay')
|
2016-07-06 20:01:27 +02:00
|
|
|
.parse(process.argv)
|
|
|
|
|
2017-01-06 23:24:20 +01:00
|
|
|
const createWeight = program.create !== undefined ? parseInt(program.create) : 5
|
|
|
|
const removeWeight = program.remove !== undefined ? parseInt(program.remove) : 4
|
2017-01-11 18:41:28 +01:00
|
|
|
const updateWeight = program.update !== undefined ? parseInt(program.update) : 4
|
2016-07-06 20:01:27 +02:00
|
|
|
const flushAtExit = program.flush || false
|
2017-01-06 23:24:20 +01:00
|
|
|
const actionInterval = program.action !== undefined ? parseInt(program.action) : 500
|
2017-01-12 10:06:03 +01:00
|
|
|
const integrityInterval = program.integrity !== undefined ? parseInt(program.integrity) : 60000
|
2017-01-06 23:24:20 +01:00
|
|
|
const displayDiffOnFail = program.integrity || false
|
2016-07-06 20:01:27 +02:00
|
|
|
|
|
|
|
const numberOfPods = 6
|
2017-01-06 23:24:20 +01:00
|
|
|
|
2016-07-06 20:01:27 +02:00
|
|
|
// Wait requests between pods
|
2017-01-12 10:06:03 +01:00
|
|
|
const baseRequestInterval = integrityInterval < constants.REQUESTS_INTERVAL ? constants.REQUESTS_INTERVAL : integrityInterval
|
2017-01-06 23:24:20 +01:00
|
|
|
const requestsMaxPerInterval = baseRequestInterval / actionInterval
|
2017-01-12 09:47:21 +01:00
|
|
|
const intervalsToMakeAllRequests = Math.ceil(requestsMaxPerInterval / constants.REQUESTS_LIMIT_PER_POD)
|
2017-01-12 10:06:03 +01:00
|
|
|
const waitForBeforeIntegrityCheck = (intervalsToMakeAllRequests * constants.REQUESTS_INTERVAL) - integrityInterval + 1000
|
2016-07-06 20:01:27 +02:00
|
|
|
|
2017-01-11 18:41:28 +01:00
|
|
|
console.log('Create weight: %d, update weight: %d, remove weight: %d.', createWeight, updateWeight, removeWeight)
|
2016-07-06 20:01:27 +02:00
|
|
|
if (flushAtExit) {
|
|
|
|
console.log('Program will flush data on exit.')
|
|
|
|
} else {
|
|
|
|
console.log('Program will not flush data on exit.')
|
|
|
|
}
|
2017-01-06 23:24:20 +01:00
|
|
|
if (displayDiffOnFail) {
|
|
|
|
console.log('Program will display diff on failure.')
|
|
|
|
} else {
|
|
|
|
console.log('Program will not display diff on failure')
|
|
|
|
}
|
2016-07-06 20:01:27 +02:00
|
|
|
console.log('Interval in ms for each action: %d.', actionInterval)
|
|
|
|
console.log('Interval in ms for each integrity check: %d.', integrityInterval)
|
|
|
|
console.log('Will wait %d ms before an integrity check.', waitForBeforeIntegrityCheck)
|
|
|
|
|
|
|
|
console.log('Run servers...')
|
|
|
|
runServers(numberOfPods, function (err, servers) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
process.on('exit', function () {
|
|
|
|
exitServers(servers, flushAtExit)
|
|
|
|
})
|
|
|
|
process.on('SIGINT', goodbye)
|
|
|
|
process.on('SIGTERM', goodbye)
|
|
|
|
|
|
|
|
console.log('Servers runned')
|
|
|
|
|
|
|
|
let checking = false
|
|
|
|
|
|
|
|
setInterval(function () {
|
|
|
|
if (checking === true) return
|
|
|
|
|
2017-01-11 18:41:28 +01:00
|
|
|
const rand = getRandomInt(0, createWeight + updateWeight + removeWeight)
|
2016-07-06 20:01:27 +02:00
|
|
|
|
|
|
|
if (rand < createWeight) {
|
|
|
|
upload(servers, getRandomNumServer(servers))
|
2017-01-11 18:41:28 +01:00
|
|
|
} else if (rand < createWeight + updateWeight) {
|
|
|
|
update(servers, getRandomNumServer(servers))
|
2016-07-06 20:01:27 +02:00
|
|
|
} else {
|
|
|
|
remove(servers, getRandomNumServer(servers))
|
|
|
|
}
|
|
|
|
}, actionInterval)
|
|
|
|
|
|
|
|
setInterval(function () {
|
2017-01-06 23:24:20 +01:00
|
|
|
if (checking === true) return
|
|
|
|
|
2016-07-06 20:01:27 +02:00
|
|
|
console.log('Checking integrity...')
|
|
|
|
checking = true
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
checkIntegrity(servers, function () {
|
|
|
|
checking = false
|
|
|
|
})
|
|
|
|
}, waitForBeforeIntegrityCheck)
|
|
|
|
}, integrityInterval)
|
|
|
|
})
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getRandomInt (min, max) {
|
|
|
|
return Math.floor(Math.random() * (max - min)) + min
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRandomNumServer (servers) {
|
|
|
|
return getRandomInt(0, servers.length)
|
|
|
|
}
|
|
|
|
|
|
|
|
function runServers (numberOfPods, callback) {
|
|
|
|
let servers = null
|
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
series([
|
2016-07-06 20:01:27 +02:00
|
|
|
// Run servers
|
|
|
|
function (next) {
|
2016-08-20 17:19:27 +02:00
|
|
|
serversUtils.flushAndRunMultipleServers(numberOfPods, function (serversRun) {
|
2016-07-06 20:01:27 +02:00
|
|
|
servers = serversRun
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// Get the access tokens
|
|
|
|
function (next) {
|
2016-07-18 17:17:52 +02:00
|
|
|
each(servers, function (server, callbackEach) {
|
2016-08-20 17:19:27 +02:00
|
|
|
loginUtils.loginAndGetAccessToken(server, function (err, accessToken) {
|
2016-07-06 20:01:27 +02:00
|
|
|
if (err) return callbackEach(err)
|
|
|
|
|
|
|
|
server.accessToken = accessToken
|
|
|
|
callbackEach()
|
|
|
|
})
|
|
|
|
}, next)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
const server = servers[1]
|
2016-08-20 17:19:27 +02:00
|
|
|
podsUtils.makeFriends(server.url, server.accessToken, next)
|
2016-07-06 20:01:27 +02:00
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
const server = servers[0]
|
2016-08-20 17:19:27 +02:00
|
|
|
podsUtils.makeFriends(server.url, server.accessToken, next)
|
2016-07-06 20:01:27 +02:00
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
setTimeout(next, 1000)
|
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
const server = servers[3]
|
2016-08-20 17:19:27 +02:00
|
|
|
podsUtils.makeFriends(server.url, server.accessToken, next)
|
2016-07-06 20:01:27 +02:00
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
const server = servers[5]
|
2016-08-20 17:19:27 +02:00
|
|
|
podsUtils.makeFriends(server.url, server.accessToken, next)
|
2016-07-06 20:01:27 +02:00
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
const server = servers[4]
|
2016-08-20 17:19:27 +02:00
|
|
|
podsUtils.makeFriends(server.url, server.accessToken, next)
|
2016-07-06 20:01:27 +02:00
|
|
|
},
|
|
|
|
function (next) {
|
|
|
|
setTimeout(next, 1000)
|
|
|
|
}
|
|
|
|
], function (err) {
|
|
|
|
return callback(err, servers)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function exitServers (servers, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
|
|
|
servers.forEach(function (server) {
|
|
|
|
if (server.app) process.kill(-server.app.pid)
|
|
|
|
})
|
|
|
|
|
2016-08-20 17:19:27 +02:00
|
|
|
if (flushAtExit) serversUtils.flushTests(callback)
|
2016-07-06 20:01:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function upload (servers, numServer, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
2016-12-25 12:05:47 +01:00
|
|
|
const name = Date.now() + ' name'
|
|
|
|
const description = Date.now() + ' description'
|
|
|
|
const tags = [ Date.now().toString().substring(0, 5) + 't1', Date.now().toString().substring(0, 5) + 't2' ]
|
2016-07-06 20:01:27 +02:00
|
|
|
const file = 'video_short1.webm'
|
|
|
|
|
|
|
|
console.log('Upload video to server ' + numServer)
|
|
|
|
|
2016-08-20 17:19:27 +02:00
|
|
|
videosUtils.uploadVideo(servers[numServer].url, servers[numServer].accessToken, name, description, tags, file, callback)
|
2016-07-06 20:01:27 +02:00
|
|
|
}
|
|
|
|
|
2017-01-11 18:41:28 +01:00
|
|
|
function update (servers, numServer, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
|
|
|
videosUtils.getVideosList(servers[numServer].url, function (err, res) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
const videos = res.body.data.filter(function (video) { return video.isLocal })
|
|
|
|
if (videos.length === 0) return callback()
|
|
|
|
|
|
|
|
const toUpdate = videos[getRandomInt(0, videos.length)].id
|
|
|
|
const name = Date.now() + ' name'
|
|
|
|
const description = Date.now() + ' description'
|
|
|
|
const tags = [ Date.now().toString().substring(0, 5) + 't1', Date.now().toString().substring(0, 5) + 't2' ]
|
|
|
|
|
|
|
|
console.log('Updating video of server ' + numServer)
|
|
|
|
|
|
|
|
videosUtils.updateVideo(servers[numServer].url, servers[numServer].accessToken, toUpdate, name, description, tags, callback)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-07-06 20:01:27 +02:00
|
|
|
function remove (servers, numServer, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
2016-08-20 17:19:27 +02:00
|
|
|
videosUtils.getVideosList(servers[numServer].url, function (err, res) {
|
2016-07-06 20:01:27 +02:00
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
const videos = res.body.data
|
|
|
|
if (videos.length === 0) return callback()
|
|
|
|
|
|
|
|
const toRemove = videos[getRandomInt(0, videos.length)].id
|
|
|
|
|
|
|
|
console.log('Removing video from server ' + numServer)
|
2016-08-20 17:19:27 +02:00
|
|
|
videosUtils.removeVideo(servers[numServer].url, servers[numServer].accessToken, toRemove, callback)
|
2016-07-06 20:01:27 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkIntegrity (servers, callback) {
|
|
|
|
const videos = []
|
2016-07-18 17:17:52 +02:00
|
|
|
each(servers, function (server, callback) {
|
2016-08-20 17:19:27 +02:00
|
|
|
videosUtils.getAllVideosListBy(server.url, function (err, res) {
|
2016-07-06 20:01:27 +02:00
|
|
|
if (err) throw err
|
|
|
|
const serverVideos = res.body.data
|
|
|
|
for (const serverVideo of serverVideos) {
|
|
|
|
delete serverVideo.id
|
|
|
|
delete serverVideo.isLocal
|
|
|
|
delete serverVideo.thumbnailPath
|
2017-01-06 23:24:20 +01:00
|
|
|
delete serverVideo.updatedAt
|
2016-07-06 20:01:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
videos.push(serverVideos)
|
|
|
|
callback()
|
|
|
|
})
|
|
|
|
}, function () {
|
|
|
|
for (const video of videos) {
|
|
|
|
if (!isEqual(video, videos[0])) {
|
|
|
|
console.error('Integrity not ok!')
|
2016-12-25 12:05:47 +01:00
|
|
|
|
2017-01-06 23:24:20 +01:00
|
|
|
if (displayDiffOnFail) {
|
|
|
|
console.log(differenceWith(videos[0], video, isEqual))
|
|
|
|
}
|
|
|
|
|
2016-07-06 20:01:27 +02:00
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Integrity ok.')
|
|
|
|
return callback()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function goodbye () {
|
|
|
|
return process.exit(-1)
|
|
|
|
}
|