mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
88 lines
2.5 KiB
CoffeeScript
88 lines
2.5 KiB
CoffeeScript
should = require('chai').should()
|
|
SandboxedModule = require('sandboxed-module')
|
|
assert = require('assert')
|
|
path = require('path')
|
|
modulePath = path.join __dirname, '../../../../app/js/Features/Analytics/AnalyticsController'
|
|
sinon = require("sinon")
|
|
expect = require("chai").expect
|
|
|
|
|
|
describe 'AnalyticsController', ->
|
|
|
|
beforeEach ->
|
|
@AuthenticationController =
|
|
getLoggedInUserId: sinon.stub()
|
|
|
|
@AnalyticsManager =
|
|
updateEditingSession: sinon.stub().callsArgWith(3)
|
|
recordEvent: sinon.stub().callsArgWith(3)
|
|
|
|
@InstitutionsAPI =
|
|
getInstitutionLicences: sinon.stub().callsArgWith(4)
|
|
|
|
@controller = SandboxedModule.require modulePath, requires:
|
|
"./AnalyticsManager":@AnalyticsManager
|
|
"../Authentication/AuthenticationController":@AuthenticationController
|
|
"../Institutions/InstitutionsAPI":@InstitutionsAPI
|
|
"logger-sharelatex":
|
|
log:->
|
|
'../../infrastructure/GeoIpLookup': @GeoIpLookup =
|
|
getDetails: sinon.stub()
|
|
|
|
@res =
|
|
send:->
|
|
|
|
describe "updateEditingSession", ->
|
|
beforeEach ->
|
|
@req =
|
|
params:
|
|
projectId: "a project id"
|
|
@GeoIpLookup.getDetails = sinon.stub()
|
|
.callsArgWith(1, null, {country_code: 'XY'})
|
|
|
|
it "delegates to the AnalyticsManager", (done) ->
|
|
@AuthenticationController.getLoggedInUserId.returns("1234")
|
|
@controller.updateEditingSession @req, @res
|
|
|
|
@AnalyticsManager.updateEditingSession.calledWith(
|
|
"1234",
|
|
"a project id",
|
|
'XY'
|
|
).should.equal true
|
|
done()
|
|
|
|
describe "recordEvent", ->
|
|
beforeEach ->
|
|
@req =
|
|
params:
|
|
event:"i_did_something"
|
|
body:"stuff"
|
|
sessionID: "sessionIDHere"
|
|
session: {}
|
|
|
|
it "should use the user_id", (done)->
|
|
@AuthenticationController.getLoggedInUserId.returns("1234")
|
|
@controller.recordEvent @req, @res
|
|
@AnalyticsManager.recordEvent.calledWith("1234", @req.params["event"], @req.body).should.equal true
|
|
done()
|
|
|
|
it "should use the session id", (done)->
|
|
@controller.recordEvent @req, @res
|
|
@AnalyticsManager.recordEvent.calledWith(@req.sessionID, @req.params["event"], @req.body).should.equal true
|
|
done()
|
|
|
|
describe "licences", ->
|
|
beforeEach ->
|
|
@req =
|
|
query:
|
|
resource_id:1
|
|
start_date:'1514764800'
|
|
end_date:'1530662400'
|
|
resource_type:'institution'
|
|
sessionID: "sessionIDHere"
|
|
session: {}
|
|
|
|
it "should trigger institutions api to fetch licences graph data", (done)->
|
|
@controller.licences @req, @res
|
|
@InstitutionsAPI.getInstitutionLicences.calledWith(@req.query["resource_id"], @req.query["start_date"], @req.query["end_date"], @req.query["lag"]).should.equal true
|
|
done()
|