mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
return pathname from PersistenceManager
This commit is contained in:
parent
02d3d1bd17
commit
05b93a629a
2 changed files with 10 additions and 8 deletions
|
@ -13,7 +13,7 @@ request = (require("requestretry")).defaults({
|
|||
MAX_HTTP_REQUEST_LENGTH = 5000 # 5 seconds
|
||||
|
||||
module.exports = PersistenceManager =
|
||||
getDoc: (project_id, doc_id, _callback = (error, lines, version, ranges) ->) ->
|
||||
getDoc: (project_id, doc_id, _callback = (error, lines, version, ranges, pathname) ->) ->
|
||||
timer = new Metrics.Timer("persistenceManager.getDoc")
|
||||
callback = (args...) ->
|
||||
timer.done()
|
||||
|
@ -42,7 +42,7 @@ module.exports = PersistenceManager =
|
|||
return callback(new Error("web API response had no doc lines"))
|
||||
if !body.version? or not body.version instanceof Number
|
||||
return callback(new Error("web API response had no valid doc version"))
|
||||
return callback null, body.lines, body.version, body.ranges
|
||||
return callback null, body.lines, body.version, body.ranges, body.pathname
|
||||
else if res.statusCode == 404
|
||||
return callback(new Errors.NotFoundError("doc not not found: #{url}"))
|
||||
else
|
||||
|
|
|
@ -22,6 +22,7 @@ describe "PersistenceManager", ->
|
|||
@version = 42
|
||||
@callback = sinon.stub()
|
||||
@ranges = { comments: "mock", entries: "mock" }
|
||||
@pathname = '/a/b/c.tex'
|
||||
@Settings.apis =
|
||||
web:
|
||||
url: @url = "www.example.com"
|
||||
|
@ -36,6 +37,7 @@ describe "PersistenceManager", ->
|
|||
lines: @lines,
|
||||
version: @version,
|
||||
ranges: @ranges
|
||||
pathname: @pathname,
|
||||
}))
|
||||
@PersistenceManager.getDoc(@project_id, @doc_id, @callback)
|
||||
|
||||
|
@ -56,7 +58,7 @@ describe "PersistenceManager", ->
|
|||
.should.equal true
|
||||
|
||||
it "should call the callback with the doc lines, version and ranges", ->
|
||||
@callback.calledWith(null, @lines, @version, @ranges).should.equal true
|
||||
@callback.calledWith(null, @lines, @version, @ranges, @pathname).should.equal true
|
||||
|
||||
it "should time the execution", ->
|
||||
@Metrics.Timer::done.called.should.equal true
|
||||
|
|
Loading…
Reference in a new issue