mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fix RestoreManager unit tests
This commit is contained in:
parent
f7a3231b42
commit
d1b68ddf7c
1 changed files with 13 additions and 21 deletions
|
@ -30,7 +30,7 @@ describe 'RestoreManager', ->
|
||||||
describe 'restoreFileFromV2', ->
|
describe 'restoreFileFromV2', ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@RestoreManager._writeFileVersionToDisk = sinon.stub().yields(null, @fsPath = "/tmp/path/on/disk")
|
@RestoreManager._writeFileVersionToDisk = sinon.stub().yields(null, @fsPath = "/tmp/path/on/disk")
|
||||||
@RestoreManager._findFolderOrRootFolderId = sinon.stub().yields(null, @folder_id = 'mock-folder-id')
|
@RestoreManager._findOrCreateFolder = sinon.stub().yields(null, @folder_id = 'mock-folder-id')
|
||||||
@FileSystemImportManager.addEntity = sinon.stub().yields(null, @entity = 'mock-entity')
|
@FileSystemImportManager.addEntity = sinon.stub().yields(null, @entity = 'mock-entity')
|
||||||
|
|
||||||
describe "with a file not in a folder", ->
|
describe "with a file not in a folder", ->
|
||||||
|
@ -44,7 +44,7 @@ describe 'RestoreManager', ->
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
it 'should find the root folder', ->
|
it 'should find the root folder', ->
|
||||||
@RestoreManager._findFolderOrRootFolderId
|
@RestoreManager._findOrCreateFolder
|
||||||
.calledWith(@project_id, "")
|
.calledWith(@project_id, "")
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ describe 'RestoreManager', ->
|
||||||
@RestoreManager.restoreFileFromV2 @user_id, @project_id, @version, @pathname, @callback
|
@RestoreManager.restoreFileFromV2 @user_id, @project_id, @version, @pathname, @callback
|
||||||
|
|
||||||
it 'should find the folder', ->
|
it 'should find the folder', ->
|
||||||
@RestoreManager._findFolderOrRootFolderId
|
@RestoreManager._findOrCreateFolder
|
||||||
.calledWith(@project_id, "foo")
|
.calledWith(@project_id, "foo")
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
|
@ -71,27 +71,19 @@ describe 'RestoreManager', ->
|
||||||
.calledWith(@user_id, @project_id, @folder_id, 'bar.tex', @fsPath, false)
|
.calledWith(@user_id, @project_id, @folder_id, 'bar.tex', @fsPath, false)
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
describe '_findFolderOrRootFolderId', ->
|
describe '_findOrCreateFolder', ->
|
||||||
describe 'with a folder that exists', ->
|
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@ProjectLocator.findElementByPath = sinon.stub().yields(null, {_id: @folder_id = 'mock-folder-id'}, 'folder')
|
@EditorController.mkdirp = sinon.stub().yields(null, [], {_id: @folder_id = 'mock-folder-id'})
|
||||||
@RestoreManager._findFolderOrRootFolderId @project_id, 'folder_name', @callback
|
@RestoreManager._findOrCreateFolder @project_id, 'folder/name', @callback
|
||||||
|
|
||||||
it 'should look up the folder', ->
|
it 'should look up or create the folder', ->
|
||||||
@ProjectLocator.findElementByPath
|
@EditorController.mkdirp
|
||||||
.calledWith({project_id: @project_id, path: 'folder_name'})
|
.calledWith(@project_id, 'folder/name')
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
it 'should return the folder_id', ->
|
it 'should return the folder_id', ->
|
||||||
@callback.calledWith(null, @folder_id).should.equal true
|
@callback.calledWith(null, @folder_id).should.equal true
|
||||||
|
|
||||||
describe "with a folder that doesn't exist", ->
|
|
||||||
beforeEach ->
|
|
||||||
@ProjectLocator.findElementByPath = sinon.stub().yields(new Errors.NotFoundError())
|
|
||||||
@RestoreManager._findFolderOrRootFolderId @project_id, 'folder_name', @callback
|
|
||||||
|
|
||||||
it 'should return null', ->
|
|
||||||
@callback.calledWith(null, null).should.equal true
|
|
||||||
|
|
||||||
describe '_addEntityWithUniqueName', ->
|
describe '_addEntityWithUniqueName', ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
|
|
Loading…
Reference in a new issue