mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
243 lines
6.1 KiB
CoffeeScript
243 lines
6.1 KiB
CoffeeScript
chai = require('chai')
|
|
chai.should()
|
|
expect = chai.expect
|
|
sinon = require("sinon")
|
|
modulePath = "../../../../app/js/Features/Metadata/MetaHandler"
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
|
|
describe 'MetaHandler', ->
|
|
beforeEach ->
|
|
@projectId = 'someprojectid'
|
|
@docId = 'somedocid'
|
|
@ProjectEntityHandler = {
|
|
getAllDocs: sinon.stub()
|
|
getDoc: sinon.stub()
|
|
}
|
|
@DocumentUpdaterHandler = {
|
|
flushDocToMongo: sinon.stub()
|
|
}
|
|
@packageMapping =
|
|
foo: [
|
|
{
|
|
caption: '\\bar'
|
|
snippet: '\\bar'
|
|
meta: 'foo-cmd'
|
|
score: 12
|
|
}, {
|
|
caption: '\\bat[]{}'
|
|
snippet: '\\bar[$1]{$2}'
|
|
meta: 'foo-cmd'
|
|
score: 10
|
|
}
|
|
],
|
|
baz: [
|
|
{
|
|
caption: '\\longercommandtest{}'
|
|
snippet: '\\longercommandtest{$1}'
|
|
meta: 'baz-cmd'
|
|
score: 50
|
|
}
|
|
]
|
|
|
|
@MetaHandler = SandboxedModule.require modulePath, requires:
|
|
'../Project/ProjectEntityHandler': @ProjectEntityHandler
|
|
'../DocumentUpdater/DocumentUpdaterHandler': @DocumentUpdaterHandler
|
|
'./packageMapping': @packageMapping
|
|
|
|
describe 'extractMetaFromDoc', ->
|
|
beforeEach ->
|
|
@lines = [
|
|
'\\usepackage{foo}'
|
|
'\\usepackage{amsmath, booktabs}'
|
|
'one'
|
|
'two'
|
|
'three \\label{aaa}'
|
|
'four five'
|
|
'\\label{bbb}'
|
|
'six seven'
|
|
]
|
|
|
|
it 'should extract all the labels and packages', ->
|
|
docMeta = @MetaHandler.extractMetaFromDoc @lines
|
|
expect(docMeta).to.deep.equal {
|
|
labels: ['aaa', 'bbb']
|
|
packages:
|
|
foo: [
|
|
{
|
|
caption: '\\bar'
|
|
snippet: '\\bar'
|
|
meta: 'foo-cmd'
|
|
score: 12
|
|
}, {
|
|
caption: '\\bat[]{}'
|
|
snippet: '\\bar[$1]{$2}'
|
|
meta: 'foo-cmd'
|
|
score: 10
|
|
}
|
|
]
|
|
}
|
|
|
|
describe 'extractMetaFromProjectDocs', ->
|
|
beforeEach ->
|
|
@docs =
|
|
'doc_one':
|
|
_id: 'id_one'
|
|
lines: ['one', '\\label{aaa} two', 'three']
|
|
'doc_two':
|
|
_id: 'id_two'
|
|
lines: ['four']
|
|
'doc_three':
|
|
_id: 'id_three'
|
|
lines: [
|
|
'\\label{bbb}'
|
|
'five six'
|
|
'seven eight \\label{ccc} nine'
|
|
]
|
|
'doc_four':
|
|
_id: 'id_four'
|
|
lines: [
|
|
'\\usepackage[width=\\textwidth]{baz}'
|
|
'\\usepackage{amsmath}'
|
|
]
|
|
'doc_five':
|
|
_id: 'id_five'
|
|
lines: [
|
|
'\\usepackage{foo,baz}'
|
|
'\\usepackage[options=foo]{hello}'
|
|
'some text'
|
|
'\\section{this}\\label{sec:intro}'
|
|
'In Section \\ref{sec:intro} we saw'
|
|
'nothing'
|
|
]
|
|
|
|
it 'should extract all metadata', ->
|
|
projectMeta = @MetaHandler.extractMetaFromProjectDocs @docs
|
|
expect(projectMeta).to.deep.equal {
|
|
'id_one': {labels: ['aaa'], packages: {}}
|
|
'id_two': {labels: [], packages: {}}
|
|
'id_three': {labels: ['bbb', 'ccc'], packages: {}}
|
|
'id_four':
|
|
labels: []
|
|
packages:
|
|
baz: [{
|
|
caption: '\\longercommandtest{}'
|
|
snippet: '\\longercommandtest{$1}'
|
|
meta: 'baz-cmd'
|
|
score: 50}]
|
|
'id_five':
|
|
labels: ['sec:intro']
|
|
packages:
|
|
foo: [
|
|
{
|
|
caption: '\\bar'
|
|
snippet: '\\bar'
|
|
meta: 'foo-cmd'
|
|
score: 12
|
|
}, {
|
|
caption: '\\bat[]{}'
|
|
snippet: '\\bar[$1]{$2}'
|
|
meta: 'foo-cmd'
|
|
score: 10
|
|
}
|
|
]
|
|
baz: [
|
|
{
|
|
caption: '\\longercommandtest{}'
|
|
snippet: '\\longercommandtest{$1}'
|
|
meta: 'baz-cmd'
|
|
score: 50
|
|
}
|
|
]
|
|
}
|
|
|
|
describe 'getMetaForDoc', ->
|
|
beforeEach ->
|
|
@fakeLines = ['\\usepackage{abc}', 'one', '\\label{aaa}', 'two']
|
|
@fakeMeta = {labels: ['aaa'], packages: ['abc']}
|
|
@DocumentUpdaterHandler.flushDocToMongo = sinon.stub().callsArgWith 2, null
|
|
@ProjectEntityHandler.getDoc = sinon.stub().callsArgWith 2, null, @fakeLines
|
|
@MetaHandler.extractMetaFromDoc = sinon.stub().returns @fakeMeta
|
|
@call = (callback) =>
|
|
@MetaHandler.getMetaForDoc @projectId, @docId, callback
|
|
|
|
it 'should not produce an error', (done) ->
|
|
@call (err, docMeta) =>
|
|
expect(err).to.equal null
|
|
done()
|
|
|
|
it 'should produce docMeta', (done) ->
|
|
@call (err, docMeta) =>
|
|
expect(docMeta).to.equal @fakeMeta
|
|
done()
|
|
|
|
it 'should call flushDocToMongo', (done) ->
|
|
@call (err, docMeta) =>
|
|
@DocumentUpdaterHandler.flushDocToMongo.callCount.should.equal 1
|
|
@DocumentUpdaterHandler.flushDocToMongo.calledWith(@projectId, @docId).should.equal true
|
|
done()
|
|
|
|
it 'should call getDoc', (done) ->
|
|
@call (err, docMeta) =>
|
|
@ProjectEntityHandler.getDoc.callCount.should.equal 1
|
|
@ProjectEntityHandler.getDoc.calledWith(@projectId, @docId).should.equal true
|
|
done()
|
|
|
|
it 'should call extractMetaFromDoc', (done) ->
|
|
@call (err, docMeta) =>
|
|
@MetaHandler.extractMetaFromDoc.callCount.should.equal 1
|
|
@MetaHandler.extractMetaFromDoc.calledWith(@fakeLines).should.equal true
|
|
done()
|
|
|
|
describe 'getAllMetaForProject', ->
|
|
beforeEach ->
|
|
@fakeDocs =
|
|
'doc_one':
|
|
lines: [
|
|
'\\usepackage[some-options,more=foo]{foo}'
|
|
'\\label{aaa}'
|
|
]
|
|
|
|
@fakeMeta =
|
|
labels: ['aaa']
|
|
packages:
|
|
foo: [
|
|
{
|
|
caption: '\\bar'
|
|
snippet: '\\bar'
|
|
meta: 'foo-cmd'
|
|
score: 12
|
|
}, {
|
|
caption: '\\bat[]{}'
|
|
snippet: '\\bar[$1]{$2}'
|
|
meta: 'foo-cmd'
|
|
score: 10
|
|
}
|
|
]
|
|
@DocumentUpdaterHandler.flushProjectToMongo = sinon.stub().callsArgWith 1, null
|
|
@ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith 1, null, @fakeDocs
|
|
@MetaHandler.extractMetaFromProjectDocs = sinon.stub().returns @fakeMeta
|
|
@call = (callback) =>
|
|
@MetaHandler.getAllMetaForProject @projectId, callback
|
|
|
|
it 'should not produce an error', (done) ->
|
|
@call (err, projectMeta) =>
|
|
expect(err).to.equal null
|
|
done()
|
|
|
|
it 'should produce projectMeta', (done) ->
|
|
@call (err, projectMeta) =>
|
|
expect(projectMeta).to.equal @fakeMeta
|
|
done()
|
|
|
|
it 'should call getAllDocs', (done) ->
|
|
@call (err, projectMeta) =>
|
|
@ProjectEntityHandler.getAllDocs.callCount.should.equal 1
|
|
@ProjectEntityHandler.getAllDocs.calledWith(@projectId).should.equal true
|
|
done()
|
|
|
|
it 'should call extractMetaFromDoc', (done) ->
|
|
@call (err, docMeta) =>
|
|
@MetaHandler.extractMetaFromProjectDocs.callCount.should.equal 1
|
|
@MetaHandler.extractMetaFromProjectDocs.calledWith(@fakeDocs).should.equal true
|
|
done()
|