mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
5861231548
- need to run migration 1 before using this for this to work - added acceptence test so new documents updated should be upserted, not return 404
45 lines
No EOL
1.4 KiB
CoffeeScript
45 lines
No EOL
1.4 KiB
CoffeeScript
sinon = require "sinon"
|
|
chai = require("chai")
|
|
chai.should()
|
|
{ObjectId} = require "mongojs"
|
|
|
|
DocstoreClient = require "./helpers/DocstoreClient"
|
|
|
|
describe "Getting a doc", ->
|
|
beforeEach (done) ->
|
|
@project_id = ObjectId()
|
|
@doc_id = ObjectId()
|
|
@lines = ["original", "lines"]
|
|
DocstoreClient.createDoc @project_id, @doc_id, @lines, (error) =>
|
|
throw error if error?
|
|
done()
|
|
|
|
describe "when the doc exists", ->
|
|
it "should get the doc lines and version", (done) ->
|
|
DocstoreClient.getDoc @project_id, @doc_id, {}, (error, res, doc) =>
|
|
doc.lines.should.deep.equal @lines
|
|
done()
|
|
|
|
describe "when the doc does not exist", ->
|
|
it "should return a 404", (done) ->
|
|
missing_doc_id = ObjectId()
|
|
DocstoreClient.getDoc @project_id, missing_doc_id, {}, (error, res, doc) ->
|
|
res.statusCode.should.equal 404
|
|
done()
|
|
|
|
describe "when the doc is a deleted doc", ->
|
|
beforeEach (done) ->
|
|
@deleted_doc_id = ObjectId()
|
|
DocstoreClient.createDeletedDoc @project_id, @deleted_doc_id, @lines, done
|
|
|
|
it "should return the doc", (done) ->
|
|
DocstoreClient.getDoc @project_id, @deleted_doc_id, {include_deleted:true},(error, res, doc) =>
|
|
doc.lines.should.deep.equal @lines
|
|
doc.deleted.should.equal true
|
|
done()
|
|
|
|
it "should return a 404 when the query string is not set", (done)->
|
|
DocstoreClient.getDoc @project_id, @deleted_doc_id, {},(error, res, doc) =>
|
|
res.statusCode.should.equal 404
|
|
done()
|
|
|