2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
const childProcess = require('child_process')
|
|
|
|
const exec = childProcess.exec
|
|
|
|
const fork = childProcess.fork
|
2016-05-10 21:55:59 +02:00
|
|
|
const fs = require('fs')
|
2016-03-16 22:29:27 +01:00
|
|
|
const pathUtils = require('path')
|
|
|
|
const request = require('supertest')
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const testUtils = {
|
2016-05-13 20:42:11 +02:00
|
|
|
dateIsValid: dateIsValid,
|
2016-02-07 11:23:23 +01:00
|
|
|
flushTests: flushTests,
|
|
|
|
getFriendsList: getFriendsList,
|
2016-03-18 16:28:09 +01:00
|
|
|
getVideo: getVideo,
|
2016-02-07 11:23:23 +01:00
|
|
|
getVideosList: getVideosList,
|
2016-05-13 18:10:46 +02:00
|
|
|
getVideosListPagination: getVideosListPagination,
|
2016-05-17 21:03:00 +02:00
|
|
|
getVideosListSort: getVideosListSort,
|
2016-04-14 22:06:11 +02:00
|
|
|
login: login,
|
|
|
|
loginAndGetAccessToken: loginAndGetAccessToken,
|
2016-02-07 11:23:23 +01:00
|
|
|
makeFriends: makeFriends,
|
|
|
|
quitFriends: quitFriends,
|
|
|
|
removeVideo: removeVideo,
|
|
|
|
flushAndRunMultipleServers: flushAndRunMultipleServers,
|
|
|
|
runServer: runServer,
|
|
|
|
searchVideo: searchVideo,
|
2016-05-13 18:10:46 +02:00
|
|
|
searchVideoWithPagination: searchVideoWithPagination,
|
2016-05-17 21:03:00 +02:00
|
|
|
searchVideoWithSort: searchVideoWithSort,
|
2016-05-10 21:55:59 +02:00
|
|
|
testImage: testImage,
|
2016-02-07 11:23:23 +01:00
|
|
|
uploadVideo: uploadVideo
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------- Export functions --------------------
|
|
|
|
|
2016-05-13 20:42:11 +02:00
|
|
|
function dateIsValid (dateString) {
|
|
|
|
const dateToCheck = new Date(dateString)
|
|
|
|
const now = new Date()
|
|
|
|
|
|
|
|
// Check if the interval is more than 2 minutes
|
|
|
|
if (now - dateToCheck > 120000) return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function flushTests (callback) {
|
2016-04-30 11:17:50 +02:00
|
|
|
exec('npm run clean:server:test', callback)
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getFriendsList (url, end) {
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/v1/pods/'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-03-18 16:28:09 +01:00
|
|
|
function getVideo (url, id, end) {
|
|
|
|
const path = '/api/v1/videos/' + id
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function getVideosList (url, end) {
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/v1/videos'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
2016-05-17 21:18:19 +02:00
|
|
|
.query({ sort: 'name' })
|
2016-02-07 11:23:23 +01:00
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-05-13 18:10:46 +02:00
|
|
|
function getVideosListPagination (url, start, count, end) {
|
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ start: start })
|
|
|
|
.query({ count: count })
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-05-17 21:03:00 +02:00
|
|
|
function getVideosListSort (url, sort, end) {
|
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ sort: sort })
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function login (url, client, user, expectedStatus, end) {
|
2016-04-14 22:06:11 +02:00
|
|
|
if (!end) {
|
2016-05-11 21:19:34 +02:00
|
|
|
end = expectedStatus
|
|
|
|
expectedStatus = 200
|
2016-04-14 22:06:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const path = '/api/v1/users/token'
|
|
|
|
|
|
|
|
const body = {
|
|
|
|
client_id: client.id,
|
|
|
|
client_secret: client.secret,
|
|
|
|
username: user.username,
|
|
|
|
password: user.password,
|
|
|
|
response_type: 'code',
|
|
|
|
grant_type: 'password',
|
|
|
|
scope: 'upload'
|
|
|
|
}
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.post(path)
|
|
|
|
.type('form')
|
|
|
|
.send(body)
|
2016-05-11 21:19:34 +02:00
|
|
|
.expect(expectedStatus)
|
2016-04-14 22:06:11 +02:00
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
function loginAndGetAccessToken (server, callback) {
|
|
|
|
login(server.url, server.client, server.user, 200, function (err, res) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, res.body.access_token)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-13 16:31:14 +02:00
|
|
|
function makeFriends (url, accessToken, expectedStatus, callback) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (!callback) {
|
2016-05-11 21:19:34 +02:00
|
|
|
callback = expectedStatus
|
|
|
|
expectedStatus = 204
|
2016-01-24 16:08:09 +01:00
|
|
|
}
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/v1/pods/makefriends'
|
2016-01-24 16:08:09 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// The first pod make friend with the third
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
2016-05-13 16:31:14 +02:00
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
2016-05-11 21:19:34 +02:00
|
|
|
.expect(expectedStatus)
|
2016-02-07 11:23:23 +01:00
|
|
|
.end(function (err, res) {
|
|
|
|
if (err) throw err
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Wait for the request between pods
|
|
|
|
setTimeout(callback, 1000)
|
2015-12-06 17:09:07 +01:00
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-12-06 17:09:07 +01:00
|
|
|
|
2016-05-13 16:31:14 +02:00
|
|
|
function quitFriends (url, accessToken, expectedStatus, callback) {
|
|
|
|
if (!callback) {
|
|
|
|
callback = expectedStatus
|
|
|
|
expectedStatus = 204
|
|
|
|
}
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/v1/pods/quitfriends'
|
2015-12-06 17:09:07 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// The first pod make friend with the third
|
|
|
|
request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
2016-05-13 16:31:14 +02:00
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
|
|
|
.expect(expectedStatus)
|
2016-02-07 11:23:23 +01:00
|
|
|
.end(function (err, res) {
|
|
|
|
if (err) throw err
|
2015-12-06 17:09:07 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Wait for the request between pods
|
|
|
|
setTimeout(callback, 1000)
|
2015-12-06 17:09:07 +01:00
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function removeVideo (url, token, id, expectedStatus, end) {
|
2016-04-14 22:06:11 +02:00
|
|
|
if (!end) {
|
2016-05-11 21:19:34 +02:00
|
|
|
end = expectedStatus
|
|
|
|
expectedStatus = 204
|
2016-04-14 22:06:11 +02:00
|
|
|
}
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/v1/videos'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
request(url)
|
|
|
|
.delete(path + '/' + id)
|
|
|
|
.set('Accept', 'application/json')
|
2016-04-14 22:06:11 +02:00
|
|
|
.set('Authorization', 'Bearer ' + token)
|
2016-05-11 21:19:34 +02:00
|
|
|
.expect(expectedStatus)
|
2016-02-07 11:23:23 +01:00
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function flushAndRunMultipleServers (totalServers, serversRun) {
|
2016-03-16 22:29:27 +01:00
|
|
|
let apps = []
|
|
|
|
let urls = []
|
|
|
|
let i = 0
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
function anotherServerDone (number, app, url) {
|
|
|
|
apps[number - 1] = app
|
|
|
|
urls[number - 1] = url
|
|
|
|
i++
|
2016-05-11 21:19:34 +02:00
|
|
|
if (i === totalServers) {
|
2016-02-07 11:23:23 +01:00
|
|
|
serversRun(apps, urls)
|
|
|
|
}
|
2015-12-06 17:09:07 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
flushTests(function () {
|
2016-05-11 21:19:34 +02:00
|
|
|
for (let j = 1; j <= totalServers; j++) {
|
2016-03-16 22:29:27 +01:00
|
|
|
// For the virtual buffer
|
|
|
|
setTimeout(function () {
|
|
|
|
runServer(j, function (app, url) {
|
|
|
|
anotherServerDone(j, app, url)
|
|
|
|
})
|
|
|
|
}, 1000 * j)
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function runServer (number, callback) {
|
2016-04-14 22:06:11 +02:00
|
|
|
const server = {
|
|
|
|
app: null,
|
|
|
|
url: `http://localhost:${9000 + number}`,
|
|
|
|
client: {
|
|
|
|
id: null,
|
|
|
|
secret: null
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
username: null,
|
|
|
|
password: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// These actions are async so we need to be sure that they have both been done
|
2016-05-11 21:19:34 +02:00
|
|
|
const serverRunString = {
|
2016-02-07 11:23:23 +01:00
|
|
|
'Connected to mongodb': false,
|
|
|
|
'Server listening on port': false
|
2015-12-06 17:09:07 +01:00
|
|
|
}
|
|
|
|
|
2016-04-14 22:06:11 +02:00
|
|
|
const regexps = {
|
|
|
|
client_id: 'Client id: ([a-f0-9]+)',
|
|
|
|
client_secret: 'Client secret: (.+)',
|
|
|
|
user_username: 'Username: (.+)',
|
|
|
|
user_password: 'User password: (.+)'
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Share the environment
|
2016-03-16 22:29:27 +01:00
|
|
|
const env = Object.create(process.env)
|
2016-02-07 11:23:23 +01:00
|
|
|
env.NODE_ENV = 'test'
|
|
|
|
env.NODE_APP_INSTANCE = number
|
2016-03-16 22:29:27 +01:00
|
|
|
const options = {
|
2016-02-07 11:23:23 +01:00
|
|
|
silent: true,
|
|
|
|
env: env,
|
|
|
|
detached: true
|
2015-12-06 17:09:07 +01:00
|
|
|
}
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-04-14 22:06:11 +02:00
|
|
|
server.app = fork(pathUtils.join(__dirname, '../../../server.js'), [], options)
|
|
|
|
server.app.stdout.on('data', function onStdout (data) {
|
2016-05-11 21:19:34 +02:00
|
|
|
let dontContinue = false
|
2016-04-14 22:06:11 +02:00
|
|
|
|
|
|
|
// Capture things if we want to
|
|
|
|
for (const key of Object.keys(regexps)) {
|
|
|
|
const regexp = regexps[key]
|
|
|
|
const matches = data.toString().match(regexp)
|
|
|
|
if (matches !== null) {
|
|
|
|
if (key === 'client_id') server.client.id = matches[1]
|
|
|
|
else if (key === 'client_secret') server.client.secret = matches[1]
|
|
|
|
else if (key === 'user_username') server.user.username = matches[1]
|
|
|
|
else if (key === 'user_password') server.user.password = matches[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Check if all required sentences are here
|
2016-05-11 21:19:34 +02:00
|
|
|
for (const key of Object.keys(serverRunString)) {
|
|
|
|
if (data.toString().indexOf(key) !== -1) serverRunString[key] = true
|
|
|
|
if (serverRunString[key] === false) dontContinue = true
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// If no, there is maybe one thing not already initialized (mongodb...)
|
2016-05-11 21:19:34 +02:00
|
|
|
if (dontContinue === true) return
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-04-14 22:06:11 +02:00
|
|
|
server.app.stdout.removeListener('data', onStdout)
|
|
|
|
callback(server)
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-22 09:15:00 +02:00
|
|
|
function searchVideo (url, search, field, end) {
|
|
|
|
if (!end) {
|
|
|
|
end = field
|
|
|
|
field = null
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-05-22 09:15:00 +02:00
|
|
|
const path = '/api/v1/videos'
|
|
|
|
const req = request(url)
|
|
|
|
.get(path + '/search/' + search)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
|
|
|
|
if (field) req.query({ field: field })
|
|
|
|
req.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.end(end)
|
2016-05-13 18:10:46 +02:00
|
|
|
}
|
|
|
|
|
2016-05-22 09:15:00 +02:00
|
|
|
function searchVideoWithPagination (url, search, field, start, count, end) {
|
2016-05-13 18:10:46 +02:00
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path + '/search/' + search)
|
|
|
|
.query({ start: start })
|
|
|
|
.query({ count: count })
|
2016-05-22 09:15:00 +02:00
|
|
|
.query({ field: field })
|
2016-05-13 18:10:46 +02:00
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
2016-05-17 21:03:00 +02:00
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
function searchVideoWithSort (url, search, sort, end) {
|
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
request(url)
|
|
|
|
.get(path + '/search/' + search)
|
|
|
|
.query({ sort: sort })
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
2016-02-07 11:23:23 +01:00
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function testImage (url, videoName, imagePath, callback) {
|
2016-05-10 21:55:59 +02:00
|
|
|
request(url)
|
2016-05-11 21:19:34 +02:00
|
|
|
.get(imagePath)
|
2016-05-10 21:55:59 +02:00
|
|
|
.expect(200)
|
|
|
|
.end(function (err, res) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
fs.readFile(pathUtils.join(__dirname, 'fixtures', videoName + '.jpg'), function (err, data) {
|
2016-05-10 21:55:59 +02:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
callback(null, data.equals(res.body))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function uploadVideo (url, accessToken, name, description, fixture, specialStatus, end) {
|
2016-04-14 22:06:11 +02:00
|
|
|
if (!end) {
|
2016-05-11 21:19:34 +02:00
|
|
|
end = specialStatus
|
|
|
|
specialStatus = 204
|
2016-04-14 22:06:11 +02:00
|
|
|
}
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const path = '/api/v1/videos'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
request(url)
|
|
|
|
.post(path)
|
|
|
|
.set('Accept', 'application/json')
|
2016-05-11 21:19:34 +02:00
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
2016-02-07 11:23:23 +01:00
|
|
|
.field('name', name)
|
|
|
|
.field('description', description)
|
2016-03-18 16:44:54 +01:00
|
|
|
.attach('videofile', pathUtils.join(__dirname, 'fixtures', fixture))
|
2016-05-11 21:19:34 +02:00
|
|
|
.expect(specialStatus)
|
2016-02-07 11:23:23 +01:00
|
|
|
.end(end)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = testUtils
|