Server: fix makefriends validation and tests

This commit is contained in:
Chocobozzz 2016-08-21 10:08:40 +02:00
parent 6c1a098b41
commit d57d6f2605
6 changed files with 145 additions and 115 deletions

View File

@ -53,7 +53,13 @@ app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: false })) app.use(bodyParser.urlencoded({ extended: false }))
// Validate some params for the API // Validate some params for the API
app.use(expressValidator({ app.use(expressValidator({
customValidators: Object.assign({}, customValidators.misc, customValidators.users, customValidators.videos) customValidators: Object.assign(
{},
customValidators.misc,
customValidators.pods,
customValidators.users,
customValidators.videos
)
})) }))
// ----------- Views, routes and static files ----------- // ----------- Views, routes and static files -----------

View File

@ -1,11 +1,13 @@
'use strict' 'use strict'
const miscValidators = require('./misc') const miscValidators = require('./misc')
const podsValidators = require('./pods')
const usersValidators = require('./users') const usersValidators = require('./users')
const videosValidators = require('./videos') const videosValidators = require('./videos')
const validators = { const validators = {
misc: miscValidators, misc: miscValidators,
pods: podsValidators,
users: usersValidators, users: usersValidators,
videos: videosValidators videos: videosValidators
} }

View File

@ -1,11 +1,8 @@
'use strict' 'use strict'
const validator = require('express-validator').validator
const miscValidators = { const miscValidators = {
exists: exists, exists: exists,
isArray: isArray, isArray: isArray
isEachUrl: isEachUrl
} }
function exists (value) { function exists (value) {
@ -16,12 +13,6 @@ function isArray (value) {
return Array.isArray(value) return Array.isArray(value)
} }
function isEachUrl (urls) {
return urls.every(function (url) {
return validator.isURL(url)
})
}
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
module.exports = miscValidators module.exports = miscValidators

View File

@ -0,0 +1,21 @@
'use strict'
const validator = require('express-validator').validator
const miscValidators = require('./misc')
const podsValidators = {
isEachUniqueUrlValid: isEachUniqueUrlValid
}
function isEachUniqueUrlValid (urls) {
return miscValidators.isArray(urls) &&
urls.length !== 0 &&
urls.every(function (url) {
return validator.isURL(url) && urls.indexOf(url) === urls.lastIndexOf(url)
})
}
// ---------------------------------------------------------------------------
module.exports = podsValidators

View File

@ -10,23 +10,24 @@ const validatorsPod = {
} }
function makeFriends (req, res, next) { function makeFriends (req, res, next) {
req.checkBody('urls', 'Should have an array of urls').isArray() req.checkBody('urls', 'Should have an array of unique urls').isEachUniqueUrlValid()
req.checkBody('urls', 'Should be an url').isEachUrl()
logger.debug('Checking makeFriends parameters', { parameters: req.body }) logger.debug('Checking makeFriends parameters', { parameters: req.body })
friends.hasFriends(function (err, hasFriends) { checkErrors(req, res, function () {
if (err) { friends.hasFriends(function (err, hasFriends) {
logger.error('Cannot know if we have friends.', { error: err }) if (err) {
res.sendStatus(500) logger.error('Cannot know if we have friends.', { error: err })
} res.sendStatus(500)
}
if (hasFriends === true) { if (hasFriends === true) {
// We need to quit our friends before make new ones // We need to quit our friends before make new ones
res.sendStatus(409) res.sendStatus(409)
} else { } else {
return next() return next()
} }
})
}) })
} }

View File

@ -44,6 +44,106 @@ describe('Test parameters validator', function () {
describe('Of the pods API', function () { describe('Of the pods API', function () {
const path = '/api/v1/pods/' const path = '/api/v1/pods/'
describe('When making friends', function () {
let userAccessToken = null
before(function (done) {
usersUtils.createUser(server.url, server.accessToken, 'user1', 'password', function () {
server.user = {
username: 'user1',
password: 'password'
}
loginUtils.loginAndGetAccessToken(server, function (err, accessToken) {
if (err) throw err
userAccessToken = accessToken
done()
})
})
})
describe('When making friends', function () {
const body = {
urls: [ 'http://localhost:9002' ]
}
it('Should fail without urls', function (done) {
request(server.url)
.post(path + '/makefriends')
.set('Authorization', 'Bearer ' + server.accessToken)
.set('Accept', 'application/json')
.expect(400, done)
})
it('Should fail with urls is not an array', function (done) {
request(server.url)
.post(path + '/makefriends')
.send({ urls: 'http://localhost:9002' })
.set('Authorization', 'Bearer ' + server.accessToken)
.set('Accept', 'application/json')
.expect(400, done)
})
it('Should fail if the array is not composed by urls', function (done) {
request(server.url)
.post(path + '/makefriends')
.send({ urls: [ 'http://localhost:9002', 'localhost:coucou' ] })
.set('Authorization', 'Bearer ' + server.accessToken)
.set('Accept', 'application/json')
.expect(400, done)
})
it('Should fail if urls are not unique', function (done) {
request(server.url)
.post(path + '/makefriends')
.send({ urls: [ 'http://localhost:9002', 'http://localhost:9002' ] })
.set('Authorization', 'Bearer ' + server.accessToken)
.set('Accept', 'application/json')
.expect(400, done)
})
it('Should fail with a invalid token', function (done) {
request(server.url)
.post(path + '/makefriends')
.send(body)
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail if the user is not an administrator', function (done) {
request(server.url)
.post(path + '/makefriends')
.send(body)
.set('Authorization', 'Bearer ' + userAccessToken)
.set('Accept', 'application/json')
.expect(403, done)
})
})
describe('When quitting friends', function () {
it('Should fail with a invalid token', function (done) {
request(server.url)
.get(path + '/quitfriends')
.query({ start: 'hello' })
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail if the user is not an administrator', function (done) {
request(server.url)
.get(path + '/quitfriends')
.query({ start: 'hello' })
.set('Authorization', 'Bearer ' + userAccessToken)
.set('Accept', 'application/json')
.expect(403, done)
})
})
})
describe('When adding a pod', function () { describe('When adding a pod', function () {
it('Should fail with nothing', function (done) { it('Should fail with nothing', function (done) {
const data = {} const data = {}
@ -86,97 +186,6 @@ describe('Test parameters validator', function () {
requestsUtils.makePostBodyRequest(server.url, path, null, data, done, 200) requestsUtils.makePostBodyRequest(server.url, path, null, data, done, 200)
}) })
}) })
describe('For the friends API', function () {
let userAccessToken = null
before(function (done) {
usersUtils.createUser(server.url, server.accessToken, 'user1', 'password', function () {
server.user = {
username: 'user1',
password: 'password'
}
loginUtils.loginAndGetAccessToken(server, function (err, accessToken) {
if (err) throw err
userAccessToken = accessToken
done()
})
})
})
describe('When making friends', function () {
const body = {
urls: [ 'http://localhost:9002' ]
}
it('Should fail without urls', function (done) {
request(server.url)
.post(path + '/makefriends')
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail with urls is not an array', function (done) {
request(server.url)
.post(path + '/makefriends')
.send({ urls: 'http://localhost:9002' })
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail if the array is not composed by urls', function (done) {
request(server.url)
.post(path + '/makefriends')
.send({ urls: [ 'http://localhost:9002', 'localhost:coucou' ] })
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail with a invalid token', function (done) {
request(server.url)
.post(path + '/makefriends')
.send(body)
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail if the user is not an administrator', function (done) {
request(server.url)
.post(path + '/makefriends')
.send(body)
.set('Authorization', 'Bearer ' + userAccessToken)
.set('Accept', 'application/json')
.expect(403, done)
})
})
describe('When quitting friends', function () {
it('Should fail with a invalid token', function (done) {
request(server.url)
.get(path + '/quitfriends')
.query({ start: 'hello' })
.set('Authorization', 'Bearer faketoken')
.set('Accept', 'application/json')
.expect(401, done)
})
it('Should fail if the user is not an administrator', function (done) {
request(server.url)
.get(path + '/quitfriends')
.query({ start: 'hello' })
.set('Authorization', 'Bearer ' + userAccessToken)
.set('Accept', 'application/json')
.expect(403, done)
})
})
})
}) })
describe('Of the videos API', function () { describe('Of the videos API', function () {