mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
114 lines
3.8 KiB
CoffeeScript
114 lines
3.8 KiB
CoffeeScript
should = require('chai').should()
|
|
modulePath = "../../../../app/js/Features/Project/ProjectDetailsHandler"
|
|
SandboxedModule = require('sandboxed-module')
|
|
sinon = require('sinon')
|
|
assert = require("chai").assert
|
|
require('chai').should()
|
|
|
|
describe 'Project details handler', ->
|
|
|
|
beforeEach ->
|
|
@project_id = "321l3j1kjkjl"
|
|
@user_id = "user-id-123"
|
|
@project =
|
|
name: "project"
|
|
description: "this is a great project"
|
|
something:"should not exist"
|
|
compiler: "latexxxxxx"
|
|
owner_ref: @user_id
|
|
@user =
|
|
features: "mock-features"
|
|
@ProjectGetter =
|
|
getProjectWithoutDocLines: sinon.stub().callsArgWith(1, null, @project)
|
|
getProject: sinon.stub().callsArgWith(2, null, @project)
|
|
@ProjectModel =
|
|
update: sinon.stub()
|
|
findOne: sinon.stub()
|
|
@UserGetter =
|
|
getUser: sinon.stub().callsArgWith(1, null, @user)
|
|
@tpdsUpdateSender =
|
|
moveEntity:sinon.stub().callsArgWith 1
|
|
@handler = SandboxedModule.require modulePath, requires:
|
|
"./ProjectGetter":@ProjectGetter
|
|
'../../models/Project': Project:@ProjectModel
|
|
"../User/UserGetter": @UserGetter
|
|
'../ThirdPartyDataStore/TpdsUpdateSender':@tpdsUpdateSender
|
|
'logger-sharelatex':
|
|
log:->
|
|
err:->
|
|
|
|
describe "getDetails", ->
|
|
|
|
it "should find the project and owner", (done)->
|
|
@handler.getDetails @project_id, (err, details)=>
|
|
details.name.should.equal @project.name
|
|
details.description.should.equal @project.description
|
|
details.compiler.should.equal @project.compiler
|
|
details.features.should.equal @user.features
|
|
assert.equal(details.something, undefined)
|
|
done()
|
|
|
|
it "should return the error", (done)->
|
|
error = "some error"
|
|
@ProjectGetter.getProjectWithoutDocLines.callsArgWith(1, error)
|
|
@handler.getDetails @project_id, (err)=>
|
|
err.should.equal error
|
|
done()
|
|
|
|
describe "getProjectDescription", ->
|
|
|
|
it "should make a call to mongo just for the description", (done)->
|
|
@ProjectModel.findOne.callsArgWith(2)
|
|
@handler.getProjectDescription @project_id, (err, description)=>
|
|
@ProjectModel.findOne.calledWith({_id:@project_id}, "description").should.equal true
|
|
done()
|
|
|
|
it "should return what the mongo call returns", (done)->
|
|
err = "error"
|
|
description = "cool project"
|
|
@ProjectModel.findOne.callsArgWith(2, err, {description:description})
|
|
@handler.getProjectDescription @project_id, (returnedErr, returnedDescription)=>
|
|
err.should.equal returnedErr
|
|
description.should.equal returnedDescription
|
|
done()
|
|
|
|
describe "setProjectDescription", ->
|
|
|
|
beforeEach ->
|
|
@description = "updated teh description"
|
|
|
|
it "should update the project detials", (done)->
|
|
@ProjectModel.update.callsArgWith(2)
|
|
@handler.setProjectDescription @project_id, @description, =>
|
|
@ProjectModel.update.calledWith({_id:@project_id}, {description:@description}).should.equal true
|
|
done()
|
|
|
|
|
|
|
|
describe "renameProject", ->
|
|
beforeEach ->
|
|
@ProjectModel.update.callsArgWith(2)
|
|
@newName = "new name here"
|
|
|
|
it "should update the project with the new name", (done)->
|
|
newName = "new name here"
|
|
@handler.renameProject @project_id, @newName, =>
|
|
@ProjectModel.update.calledWith({_id: @project_id}, {name: @newName}).should.equal true
|
|
done()
|
|
|
|
it "should tell the tpdsUpdateSender", (done)->
|
|
@handler.renameProject @project_id, @newName, =>
|
|
@tpdsUpdateSender.moveEntity.calledWith({project_id:@project_id, project_name:@project.name, newProjectName:@newName}).should.equal true
|
|
done()
|
|
|
|
|
|
describe "setPublicAccessLevel", ->
|
|
beforeEach ->
|
|
@ProjectModel.update.callsArgWith(2)
|
|
@accessLevel = "readOnly"
|
|
|
|
it "should update the project with the new level", (done)->
|
|
@handler.setPublicAccessLevel @project_id, @accessLevel, =>
|
|
@ProjectModel.update.calledWith({_id: @project_id}, {publicAccesLevel: @accessLevel}).should.equal true
|
|
done()
|
|
|