Merge pull request #1717 from overleaf/as-decaffeinate-backend

Decaffeinate backend

GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
This commit is contained in:
Alasdair Smith
2019-05-29 09:32:21 +00:00
committed by sharelatex
parent d4eb71b525
commit 0ca81de78c
863 changed files with 177442 additions and 58929 deletions
@@ -0,0 +1,135 @@
/* eslint-disable
max-len,
no-return-assign,
no-unused-vars,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
const should = require('chai').should()
const SandboxedModule = require('sandboxed-module')
const assert = require('assert')
const path = require('path')
const modulePath = path.join(
__dirname,
'../../../../app/src/Features/Analytics/AnalyticsController'
)
const sinon = require('sinon')
const { expect } = require('chai')
describe('AnalyticsController', function() {
beforeEach(function() {
this.AuthenticationController = { getLoggedInUserId: sinon.stub() }
this.AnalyticsManager = {
updateEditingSession: sinon.stub().callsArgWith(3),
recordEvent: sinon.stub().callsArgWith(3)
}
this.InstitutionsAPI = {
getInstitutionLicences: sinon.stub().callsArgWith(4)
}
this.controller = SandboxedModule.require(modulePath, {
requires: {
'./AnalyticsManager': this.AnalyticsManager,
'../Authentication/AuthenticationController': this
.AuthenticationController,
'../Institutions/InstitutionsAPI': this.InstitutionsAPI,
'logger-sharelatex': {
log() {}
},
'../../infrastructure/GeoIpLookup': (this.GeoIpLookup = {
getDetails: sinon.stub()
})
}
})
return (this.res = { send() {} })
})
describe('updateEditingSession', function() {
beforeEach(function() {
this.req = {
params: {
projectId: 'a project id'
}
}
return (this.GeoIpLookup.getDetails = sinon
.stub()
.callsArgWith(1, null, { country_code: 'XY' }))
})
return it('delegates to the AnalyticsManager', function(done) {
this.AuthenticationController.getLoggedInUserId.returns('1234')
this.controller.updateEditingSession(this.req, this.res)
this.AnalyticsManager.updateEditingSession
.calledWith('1234', 'a project id', 'XY')
.should.equal(true)
return done()
})
})
describe('recordEvent', function() {
beforeEach(function() {
return (this.req = {
params: {
event: 'i_did_something'
},
body: 'stuff',
sessionID: 'sessionIDHere',
session: {}
})
})
it('should use the user_id', function(done) {
this.AuthenticationController.getLoggedInUserId.returns('1234')
this.controller.recordEvent(this.req, this.res)
this.AnalyticsManager.recordEvent
.calledWith('1234', this.req.params['event'], this.req.body)
.should.equal(true)
return done()
})
return it('should use the session id', function(done) {
this.controller.recordEvent(this.req, this.res)
this.AnalyticsManager.recordEvent
.calledWith(this.req.sessionID, this.req.params['event'], this.req.body)
.should.equal(true)
return done()
})
})
return describe('licences', function() {
beforeEach(function() {
return (this.req = {
query: {
resource_id: 1,
start_date: '1514764800',
end_date: '1530662400',
resource_type: 'institution'
},
sessionID: 'sessionIDHere',
session: {}
})
})
return it('should trigger institutions api to fetch licences graph data', function(done) {
this.controller.licences(this.req, this.res)
this.InstitutionsAPI.getInstitutionLicences
.calledWith(
this.req.query['resource_id'],
this.req.query['start_date'],
this.req.query['end_date'],
this.req.query['lag']
)
.should.equal(true)
return done()
})
})
})