2020-02-16 09:03:03 -05:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
handle-callback-err,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-16 09:03:02 -05:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
const sinon = require("sinon");
|
|
|
|
const chai = require("chai");
|
|
|
|
chai.should();
|
|
|
|
const {ObjectId} = require("mongojs");
|
|
|
|
const DocstoreApp = require("./helpers/DocstoreApp");
|
2014-04-29 06:49:09 -04:00
|
|
|
|
2020-02-16 09:03:02 -05:00
|
|
|
const DocstoreClient = require("./helpers/DocstoreClient");
|
2014-04-29 06:49:09 -04:00
|
|
|
|
2020-02-16 09:03:02 -05:00
|
|
|
describe("Getting a doc", function() {
|
|
|
|
beforeEach(function(done) {
|
|
|
|
this.project_id = ObjectId();
|
|
|
|
this.doc_id = ObjectId();
|
|
|
|
this.lines = ["original", "lines"];
|
|
|
|
this.version = 42;
|
|
|
|
this.ranges = {
|
2016-12-05 09:21:49 -05:00
|
|
|
changes: [{
|
2020-02-16 09:03:02 -05:00
|
|
|
id: ObjectId().toString(),
|
|
|
|
op: { i: "foo", p: 3 },
|
|
|
|
meta: {
|
|
|
|
user_id: ObjectId().toString(),
|
2016-12-05 09:21:49 -05:00
|
|
|
ts: new Date().toString()
|
2020-02-16 09:03:02 -05:00
|
|
|
}
|
2016-12-05 09:21:49 -05:00
|
|
|
}]
|
2020-02-16 09:03:02 -05:00
|
|
|
};
|
|
|
|
return DocstoreApp.ensureRunning(() => {
|
|
|
|
return DocstoreClient.createDoc(this.project_id, this.doc_id, this.lines, this.version, this.ranges, error => {
|
|
|
|
if (error != null) { throw error; }
|
|
|
|
return done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-04-29 06:49:09 -04:00
|
|
|
|
2020-02-16 09:03:03 -05:00
|
|
|
describe("when the doc exists", function() { return it("should get the doc lines and version", function(done) {
|
2020-02-16 09:03:02 -05:00
|
|
|
return DocstoreClient.getDoc(this.project_id, this.doc_id, {}, (error, res, doc) => {
|
|
|
|
doc.lines.should.deep.equal(this.lines);
|
|
|
|
doc.version.should.equal(this.version);
|
|
|
|
doc.ranges.should.deep.equal(this.ranges);
|
|
|
|
return done();
|
|
|
|
});
|
2020-02-16 09:03:03 -05:00
|
|
|
}); });
|
2014-04-29 06:49:09 -04:00
|
|
|
|
2020-02-16 09:03:03 -05:00
|
|
|
describe("when the doc does not exist", function() { return it("should return a 404", function(done) {
|
2020-02-16 09:03:02 -05:00
|
|
|
const missing_doc_id = ObjectId();
|
2020-02-16 09:03:03 -05:00
|
|
|
return DocstoreClient.getDoc(this.project_id, missing_doc_id, {}, (error, res, doc) => {
|
2020-02-16 09:03:02 -05:00
|
|
|
res.statusCode.should.equal(404);
|
|
|
|
return done();
|
|
|
|
});
|
2020-02-16 09:03:03 -05:00
|
|
|
}); });
|
2014-04-29 06:49:09 -04:00
|
|
|
|
2020-02-16 09:03:02 -05:00
|
|
|
return describe("when the doc is a deleted doc", function() {
|
|
|
|
beforeEach(function(done) {
|
|
|
|
this.deleted_doc_id = ObjectId();
|
|
|
|
return DocstoreClient.createDoc(this.project_id, this.deleted_doc_id, this.lines, this.version, this.ranges, error => {
|
|
|
|
if (error != null) { throw error; }
|
|
|
|
return DocstoreClient.deleteDoc(this.project_id, this.deleted_doc_id, done);
|
|
|
|
});
|
|
|
|
});
|
2014-06-06 07:37:42 -04:00
|
|
|
|
2020-02-16 09:03:02 -05:00
|
|
|
it("should return the doc", function(done) {
|
|
|
|
return DocstoreClient.getDoc(this.project_id, this.deleted_doc_id, {include_deleted:true},(error, res, doc) => {
|
|
|
|
doc.lines.should.deep.equal(this.lines);
|
|
|
|
doc.version.should.equal(this.version);
|
|
|
|
doc.ranges.should.deep.equal(this.ranges);
|
|
|
|
doc.deleted.should.equal(true);
|
|
|
|
return done();
|
|
|
|
});
|
|
|
|
});
|
2014-06-06 07:37:42 -04:00
|
|
|
|
2020-02-16 09:03:02 -05:00
|
|
|
return it("should return a 404 when the query string is not set", function(done){
|
|
|
|
return DocstoreClient.getDoc(this.project_id, this.deleted_doc_id, {},(error, res, doc) => {
|
|
|
|
res.statusCode.should.equal(404);
|
|
|
|
return done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-01-22 10:05:48 -05:00
|
|
|
|