mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-30 19:00:48 +00:00
Merge pull request #150 from overleaf/jpa-tests-for-141-147
[misc] add test cases for the validation of the callback argument
This commit is contained in:
commit
ef04d252f3
2 changed files with 77 additions and 0 deletions
|
@ -26,6 +26,7 @@ module.exports = Router =
|
|||
logger.warn attrs, error.message, code: error.code
|
||||
return callback {message: error.message, code: error.code}
|
||||
if error.message == 'unexpected arguments'
|
||||
# the payload might be very large, put it on level info
|
||||
logger.log attrs, 'unexpected arguments'
|
||||
metrics.inc 'unexpected-arguments', 1, { status: method }
|
||||
return callback { message: error.message }
|
||||
|
|
76
services/real-time/test/acceptance/coffee/RouterTests.coffee
Normal file
76
services/real-time/test/acceptance/coffee/RouterTests.coffee
Normal file
|
@ -0,0 +1,76 @@
|
|||
async = require "async"
|
||||
{expect} = require("chai")
|
||||
|
||||
RealTimeClient = require "./helpers/RealTimeClient"
|
||||
FixturesManager = require "./helpers/FixturesManager"
|
||||
|
||||
|
||||
describe "Router", ->
|
||||
describe "joinProject", ->
|
||||
describe "when there is no callback provided", ->
|
||||
after () ->
|
||||
process.removeListener('unhandledRejection', @onUnhandled)
|
||||
|
||||
before (done) ->
|
||||
@onUnhandled = (error) ->
|
||||
done(error)
|
||||
process.on('unhandledRejection', @onUnhandled)
|
||||
async.series [
|
||||
(cb) =>
|
||||
FixturesManager.setUpProject {
|
||||
privilegeLevel: "owner"
|
||||
project: {
|
||||
name: "Test Project"
|
||||
}
|
||||
}, (e, {@project_id, @user_id}) =>
|
||||
cb(e)
|
||||
|
||||
(cb) =>
|
||||
@client = RealTimeClient.connect()
|
||||
@client.on "connectionAccepted", cb
|
||||
|
||||
(cb) =>
|
||||
@client = RealTimeClient.connect()
|
||||
@client.on "connectionAccepted", cb
|
||||
|
||||
(cb) =>
|
||||
@client.emit "joinProject", project_id: @project_id
|
||||
setTimeout(cb, 100)
|
||||
], done
|
||||
|
||||
it "should keep on going", ->
|
||||
expect('still running').to.exist
|
||||
|
||||
describe "when there are too many arguments", ->
|
||||
after () ->
|
||||
process.removeListener('unhandledRejection', @onUnhandled)
|
||||
|
||||
before (done) ->
|
||||
@onUnhandled = (error) ->
|
||||
done(error)
|
||||
process.on('unhandledRejection', @onUnhandled)
|
||||
async.series [
|
||||
(cb) =>
|
||||
FixturesManager.setUpProject {
|
||||
privilegeLevel: "owner"
|
||||
project: {
|
||||
name: "Test Project"
|
||||
}
|
||||
}, (e, {@project_id, @user_id}) =>
|
||||
cb(e)
|
||||
|
||||
(cb) =>
|
||||
@client = RealTimeClient.connect()
|
||||
@client.on "connectionAccepted", cb
|
||||
|
||||
(cb) =>
|
||||
@client = RealTimeClient.connect()
|
||||
@client.on "connectionAccepted", cb
|
||||
|
||||
(cb) =>
|
||||
@client.emit "joinProject", 1, 2, 3, 4, 5, (@error) =>
|
||||
cb()
|
||||
], done
|
||||
|
||||
it "should return an error message", ->
|
||||
expect(@error.message).to.equal('unexpected arguments')
|
Loading…
Reference in a new issue