overleaf/services/real-time/test/acceptance/js/helpers/FixturesManager.js

73 lines
2.4 KiB
JavaScript
Raw Normal View History

/* eslint-disable
camelcase,
handle-callback-err,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
let FixturesManager;
const RealTimeClient = require("./RealTimeClient");
const MockWebServer = require("./MockWebServer");
const MockDocUpdaterServer = require("./MockDocUpdaterServer");
2014-11-12 10:54:55 -05:00
module.exports = (FixturesManager = {
setUpProject(options, callback) {
if (options == null) { options = {}; }
if (callback == null) { callback = function(error, data) {}; }
if (!options.user_id) { options.user_id = FixturesManager.getRandomId(); }
if (!options.project_id) { options.project_id = FixturesManager.getRandomId(); }
if (!options.project) { options.project = { name: "Test Project" }; }
const {project_id, user_id, privilegeLevel, project, publicAccess} = options;
2014-11-12 10:54:55 -05:00
const privileges = {};
privileges[user_id] = privilegeLevel;
if (publicAccess) {
privileges["anonymous-user"] = publicAccess;
}
2014-11-12 10:54:55 -05:00
MockWebServer.createMockProject(project_id, privileges, project);
return MockWebServer.run(error => {
if (error != null) { throw error; }
return RealTimeClient.setSession({
user: {
_id: user_id,
first_name: "Joe",
last_name: "Bloggs"
}
}, error => {
if (error != null) { throw error; }
return callback(null, {project_id, user_id, privilegeLevel, project});
});
});
},
2014-11-12 10:54:55 -05:00
setUpDoc(project_id, options, callback) {
if (options == null) { options = {}; }
if (callback == null) { callback = function(error, data) {}; }
if (!options.doc_id) { options.doc_id = FixturesManager.getRandomId(); }
if (!options.lines) { options.lines = ["doc", "lines"]; }
if (!options.version) { options.version = 42; }
if (!options.ops) { options.ops = ["mock", "ops"]; }
const {doc_id, lines, version, ops, ranges} = options;
2014-11-12 10:54:55 -05:00
MockDocUpdaterServer.createMockDoc(project_id, doc_id, {lines, version, ops, ranges});
return MockDocUpdaterServer.run(error => {
if (error != null) { throw error; }
return callback(null, {project_id, doc_id, lines, version, ops});
});
},
2014-11-12 10:54:55 -05:00
getRandomId() {
2014-11-12 10:54:55 -05:00
return require("crypto")
.createHash("sha1")
.update(Math.random().toString())
.digest("hex")
.slice(0,24);
}
});
2014-11-12 10:54:55 -05:00