mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
108 lines
3.4 KiB
CoffeeScript
108 lines
3.4 KiB
CoffeeScript
sinon = require "sinon"
|
|
chai = require("chai")
|
|
chai.should()
|
|
{ObjectId} = require "mongojs"
|
|
|
|
DocstoreClient = require "./helpers/DocstoreClient"
|
|
|
|
describe "Applying updates to a doc", ->
|
|
beforeEach (done) ->
|
|
@project_id = ObjectId()
|
|
@doc_id = ObjectId()
|
|
@originalLines = ["original", "lines"]
|
|
@newLines = ["new", "lines"]
|
|
DocstoreClient.createProject @project_id, (error) =>
|
|
throw error if error?
|
|
DocstoreClient.createDoc @project_id, @doc_id, @lines, (error) =>
|
|
throw error if error?
|
|
done()
|
|
|
|
afterEach (done) ->
|
|
DocstoreClient.deleteProject @project_id, done
|
|
|
|
describe "when the content has changed", ->
|
|
beforeEach (done) ->
|
|
DocstoreClient.updateDoc @project_id, @doc_id, @newLines, (error, res, @body) =>
|
|
done()
|
|
|
|
it "should return modified = true", ->
|
|
@body.modified.should.equal true
|
|
|
|
it "should update the doc in the API", (done) ->
|
|
DocstoreClient.getDoc @project_id, @doc_id, (error, res, doc) =>
|
|
doc.lines.should.deep.equal @newLines
|
|
done()
|
|
|
|
describe "when the content has not been updated", ->
|
|
beforeEach (done) ->
|
|
DocstoreClient.updateDoc @project_id, @doc_id, @originalLines, (error, res, @body) =>
|
|
done()
|
|
|
|
it "should return modified = false", ->
|
|
@body.modified.should.equal false
|
|
|
|
it "should not update the doc in the API", (done) ->
|
|
DocstoreClient.getDoc @project_id, @doc_id, (error, res, doc) =>
|
|
doc.lines.should.deep.equal @originalLines
|
|
done()
|
|
|
|
describe "when the doc does not exist", ->
|
|
beforeEach (done) ->
|
|
missing_doc_id = ObjectId()
|
|
DocstoreClient.updateDoc @project_id, missing_doc_id, @originalLines, (error, @res, @body) =>
|
|
done()
|
|
|
|
it "should return a 404", ->
|
|
@res.statusCode.should.equal 404
|
|
|
|
describe "when the project does not exist", ->
|
|
beforeEach (done) ->
|
|
missing_project_id = ObjectId()
|
|
DocstoreClient.updateDoc missing_project_id, @doc_id, @originalLines, (error, @res, @body) =>
|
|
done()
|
|
|
|
it "should return a 404", ->
|
|
@res.statusCode.should.equal 404
|
|
|
|
describe "when malformed doc lines are provided", ->
|
|
describe "when the lines are not an array", ->
|
|
beforeEach (done) ->
|
|
DocstoreClient.updateDoc @project_id, @doc_id, { foo: "bar" }, (error, @res, @body) =>
|
|
done()
|
|
|
|
it "should return 400", ->
|
|
@res.statusCode.should.equal 400
|
|
|
|
it "should not update the doc in the API", (done) ->
|
|
DocstoreClient.getDoc @project_id, @doc_id, (error, res, doc) =>
|
|
doc.lines.should.deep.equal @originalLines
|
|
done()
|
|
|
|
describe "when the lines are not present", ->
|
|
beforeEach (done) ->
|
|
DocstoreClient.updateDoc @project_id, @doc_id, null, (error, @res, @body) =>
|
|
done()
|
|
|
|
it "should return 400", ->
|
|
@res.statusCode.should.equal 400
|
|
|
|
it "should not update the doc in the API", (done) ->
|
|
DocstoreClient.getDoc @project_id, @doc_id, (error, res, doc) =>
|
|
doc.lines.should.deep.equal @originalLines
|
|
done()
|
|
|
|
describe "when the content is large", ->
|
|
beforeEach (done) ->
|
|
line = new Array(1025).join("x") # 1kb
|
|
@largeLines = Array.apply(null, Array(1024)).map(() -> line) # 1mb
|
|
DocstoreClient.updateDoc @project_id, @doc_id, @largeLines, (error, res, @body) =>
|
|
done()
|
|
|
|
it "should return modified = true", ->
|
|
@body.modified.should.equal true
|
|
|
|
it "should update the doc in the API", (done) ->
|
|
DocstoreClient.getDoc @project_id, @doc_id, (error, res, doc) =>
|
|
doc.lines.should.deep.equal @largeLines
|
|
done()
|
|
|