2014-04-28 11:45:59 -04:00
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
sinon = require('sinon')
|
|
|
|
require('chai').should()
|
|
|
|
modulePath = require('path').join __dirname, '../../../app/js/MongoManager'
|
|
|
|
ObjectId = require("mongojs").ObjectId
|
2015-01-20 12:09:51 -05:00
|
|
|
assert = require("chai").assert
|
2014-04-28 11:45:59 -04:00
|
|
|
|
|
|
|
describe "MongoManager", ->
|
|
|
|
beforeEach ->
|
|
|
|
@MongoManager = SandboxedModule.require modulePath, requires:
|
|
|
|
"./mongojs":
|
2015-02-20 09:28:16 -05:00
|
|
|
db: @db = { docs: {} }
|
2014-04-28 11:45:59 -04:00
|
|
|
ObjectId: ObjectId
|
|
|
|
@project_id = ObjectId().toString()
|
2014-06-05 08:29:50 -04:00
|
|
|
@doc_id = ObjectId().toString()
|
2014-04-28 11:45:59 -04:00
|
|
|
@callback = sinon.stub()
|
2015-01-20 12:09:51 -05:00
|
|
|
@stubbedErr = new Error("hello world")
|
2014-04-28 11:45:59 -04:00
|
|
|
|
2014-06-05 08:29:50 -04:00
|
|
|
describe "findDoc", ->
|
|
|
|
beforeEach ->
|
|
|
|
@doc = { name: "mock-doc" }
|
|
|
|
@db.docs.find = sinon.stub().callsArgWith(2, null, [@doc])
|
|
|
|
@MongoManager.findDoc @doc_id, @callback
|
|
|
|
|
|
|
|
it "should find the doc", ->
|
|
|
|
@db.docs.find
|
|
|
|
.calledWith({
|
|
|
|
_id: ObjectId(@doc_id)
|
|
|
|
}, {})
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should call the callback with the doc", ->
|
|
|
|
@callback.calledWith(null, @doc).should.equal true
|
|
|
|
|
2015-02-20 09:28:16 -05:00
|
|
|
describe "getProjectsDocs", ->
|
2014-04-28 12:43:19 -04:00
|
|
|
beforeEach ->
|
2015-02-20 09:28:16 -05:00
|
|
|
@doc1 = { name: "mock-doc1" }
|
|
|
|
@doc2 = { name: "mock-doc2" }
|
|
|
|
@doc3 = { name: "mock-doc3" }
|
|
|
|
@doc4 = { name: "mock-doc4" }
|
|
|
|
@db.docs.find = sinon.stub().callsArgWith(2, null, [@doc, @doc3, @doc4])
|
|
|
|
@MongoManager.getProjectsDocs @project_id, @callback
|
|
|
|
|
|
|
|
it "should find the docs via the project_id", ->
|
|
|
|
@db.docs.find
|
2014-04-28 12:43:19 -04:00
|
|
|
.calledWith({
|
2015-02-20 09:28:16 -05:00
|
|
|
project_id: ObjectId(@project_id)
|
|
|
|
}, {})
|
2014-04-28 12:43:19 -04:00
|
|
|
.should.equal true
|
|
|
|
|
2015-02-20 09:28:16 -05:00
|
|
|
it "should call the callback with the docs", ->
|
|
|
|
@callback.calledWith(null, [@doc, @doc3, @doc4]).should.equal true
|
2015-01-20 12:09:51 -05:00
|
|
|
|
|
|
|
describe "upsertIntoDocCollection", ->
|
2014-04-29 10:07:22 -04:00
|
|
|
beforeEach ->
|
2015-01-20 12:09:51 -05:00
|
|
|
@db.docs.update = sinon.stub().callsArgWith(3, @stubbedErr)
|
|
|
|
@oldRev = 77
|
2014-04-29 10:07:22 -04:00
|
|
|
|
2015-01-20 12:09:51 -05:00
|
|
|
it "should upsert the document", (done)->
|
2015-02-27 09:06:06 -05:00
|
|
|
@MongoManager.upsertIntoDocCollection @project_id, @doc_id, @lines, (err)=>
|
2015-01-20 12:09:51 -05:00
|
|
|
args = @db.docs.update.args[0]
|
|
|
|
assert.deepEqual args[0], {_id: ObjectId(@doc_id)}
|
|
|
|
assert.equal args[1]["$set"]["lines"], @lines
|
2015-02-26 11:01:10 -05:00
|
|
|
assert.equal args[1]["$inc"]["rev"], 1
|
2015-01-20 12:09:51 -05:00
|
|
|
assert.deepEqual args[1]["$set"]["project_id"], ObjectId(@project_id)
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should return the error", (done)->
|
2015-02-27 09:06:06 -05:00
|
|
|
@MongoManager.upsertIntoDocCollection @project_id, @doc_id, @lines, (err)=>
|
2015-01-20 12:09:51 -05:00
|
|
|
err.should.equal @stubbedErr
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "markDocAsDeleted", ->
|
|
|
|
beforeEach ->
|
|
|
|
@db.docs.update = sinon.stub().callsArgWith(2, @stubbedErr)
|
|
|
|
@oldRev = 77
|
|
|
|
|
|
|
|
it "should process the update", (done)->
|
|
|
|
@MongoManager.markDocAsDeleted @doc_id, (err)=>
|
|
|
|
args = @db.docs.update.args[0]
|
|
|
|
assert.deepEqual args[0], {_id: ObjectId(@doc_id)}
|
|
|
|
assert.equal args[1]["$set"]["deleted"], true
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should return the error", (done)->
|
|
|
|
@MongoManager.markDocAsDeleted @doc_id, (err)=>
|
|
|
|
err.should.equal @stubbedErr
|
|
|
|
done()
|
2014-04-29 10:07:22 -04:00
|
|
|
|
2015-01-20 12:09:51 -05:00
|
|
|
|