2020-06-23 13:30:34 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-06-23 13:30:29 -04:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
|
|
|
const async = require("async");
|
|
|
|
const {expect} = require("chai");
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
const RealTimeClient = require("./helpers/RealTimeClient");
|
|
|
|
const FixturesManager = require("./helpers/FixturesManager");
|
2020-06-09 11:30:03 -04:00
|
|
|
|
|
|
|
|
2020-06-23 13:30:34 -04:00
|
|
|
describe("Router", function() { return describe("joinProject", function() {
|
2020-06-23 13:30:29 -04:00
|
|
|
describe("when there is no callback provided", function() {
|
|
|
|
after(function() {
|
|
|
|
return process.removeListener('unhandledRejection', this.onUnhandled);
|
|
|
|
});
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
before(function(done) {
|
|
|
|
this.onUnhandled = error => done(error);
|
|
|
|
process.on('unhandledRejection', this.onUnhandled);
|
|
|
|
return async.series([
|
|
|
|
cb => {
|
|
|
|
return FixturesManager.setUpProject({
|
|
|
|
privilegeLevel: "owner",
|
|
|
|
project: {
|
|
|
|
name: "Test Project"
|
|
|
|
}
|
|
|
|
}, (e, {project_id, user_id}) => {
|
|
|
|
this.project_id = project_id;
|
|
|
|
this.user_id = user_id;
|
|
|
|
return cb(e);
|
|
|
|
});
|
|
|
|
},
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
cb => {
|
|
|
|
this.client = RealTimeClient.connect();
|
|
|
|
return this.client.on("connectionAccepted", cb);
|
|
|
|
},
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
cb => {
|
|
|
|
this.client = RealTimeClient.connect();
|
|
|
|
return this.client.on("connectionAccepted", cb);
|
|
|
|
},
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
cb => {
|
|
|
|
this.client.emit("joinProject", {project_id: this.project_id});
|
|
|
|
return setTimeout(cb, 100);
|
|
|
|
}
|
|
|
|
], done);
|
|
|
|
});
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:34 -04:00
|
|
|
return it("should keep on going", function() { return expect('still running').to.exist; });
|
2020-06-23 13:30:29 -04:00
|
|
|
});
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
return describe("when there are too many arguments", function() {
|
|
|
|
after(function() {
|
|
|
|
return process.removeListener('unhandledRejection', this.onUnhandled);
|
|
|
|
});
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
before(function(done) {
|
|
|
|
this.onUnhandled = error => done(error);
|
|
|
|
process.on('unhandledRejection', this.onUnhandled);
|
|
|
|
return async.series([
|
|
|
|
cb => {
|
|
|
|
return FixturesManager.setUpProject({
|
|
|
|
privilegeLevel: "owner",
|
|
|
|
project: {
|
|
|
|
name: "Test Project"
|
|
|
|
}
|
|
|
|
}, (e, {project_id, user_id}) => {
|
|
|
|
this.project_id = project_id;
|
|
|
|
this.user_id = user_id;
|
|
|
|
return cb(e);
|
|
|
|
});
|
|
|
|
},
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
cb => {
|
|
|
|
this.client = RealTimeClient.connect();
|
|
|
|
return this.client.on("connectionAccepted", cb);
|
|
|
|
},
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
cb => {
|
|
|
|
this.client = RealTimeClient.connect();
|
|
|
|
return this.client.on("connectionAccepted", cb);
|
|
|
|
},
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
cb => {
|
|
|
|
return this.client.emit("joinProject", 1, 2, 3, 4, 5, error => {
|
|
|
|
this.error = error;
|
|
|
|
return cb();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
], done);
|
|
|
|
});
|
2020-06-09 11:30:03 -04:00
|
|
|
|
2020-06-23 13:30:29 -04:00
|
|
|
return it("should return an error message", function() {
|
|
|
|
return expect(this.error.message).to.equal('unexpected arguments');
|
|
|
|
});
|
|
|
|
});
|
2020-06-23 13:30:34 -04:00
|
|
|
}); });
|