| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- import { expect, vi } from 'vitest'
- import sinon from 'sinon'
- const modulePath = '../../../../app/src/Features/Metadata/MetaHandler.mjs'
- describe('MetaHandler', function () {
- beforeEach(async function (ctx) {
- ctx.projectId = 'someprojectid'
- ctx.docId = 'somedocid'
- ctx.lines = [
- '\\usepackage{ foo, bar }',
- '\\usepackage{baz}',
- 'one',
- '\\label{aaa}',
- 'two',
- 'commented label % \\label{bbb}', // bbb should not be in the returned labels
- '\\label{ccc}%bar', // ccc should be in the returned labels
- '\\label{ddd} % bar', // ddd should be in the returned labels
- '\\label{ e,f,g }', // e,f,g should be in the returned labels
- '\\begin{lstlisting}[label=foo, caption={Test}]', // foo should be in the returned labels
- '\\begin{lstlisting}[label={lst:foo},caption={Test}]', // lst:foo should be in the returned labels
- ]
- ctx.docs = {
- [ctx.docId]: {
- _id: ctx.docId,
- lines: ctx.lines,
- },
- }
- ctx.ProjectEntityHandler = {
- promises: {
- getAllDocs: sinon.stub().resolves(ctx.docs),
- getDoc: sinon.stub().resolves(ctx.docs[ctx.docId]),
- },
- }
- ctx.DocumentUpdaterHandler = {
- promises: {
- flushDocToMongo: sinon.stub().resolves(),
- flushProjectToMongo: sinon.stub().resolves(),
- },
- }
- ctx.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,
- },
- ],
- }
- vi.doMock(
- '../../../../app/src/Features/Project/ProjectEntityHandler',
- () => ({
- default: ctx.ProjectEntityHandler,
- })
- )
- vi.doMock(
- '../../../../app/src/Features/DocumentUpdater/DocumentUpdaterHandler',
- () => ({
- default: ctx.DocumentUpdaterHandler,
- })
- )
- vi.doMock('../../../../app/src/Features/Metadata/packageMapping', () => ({
- default: ctx.packageMapping,
- }))
- ctx.MetaHandler = (await import(modulePath)).default
- })
- describe('getMetaForDoc', function () {
- it('should extract all the labels and packages', async function (ctx) {
- const result = await ctx.MetaHandler.promises.getMetaForDoc(
- ctx.projectId,
- ctx.docId
- )
- expect(result).to.deep.equal({
- labels: ['aaa', 'ccc', 'ddd', 'e,f,g', 'foo', 'lst:foo'],
- packages: {
- foo: ctx.packageMapping.foo,
- baz: ctx.packageMapping.baz,
- },
- packageNames: ['foo', 'bar', 'baz'],
- documentClass: null,
- })
- ctx.DocumentUpdaterHandler.promises.flushDocToMongo.should.be.calledWith(
- ctx.projectId,
- ctx.docId
- )
- ctx.ProjectEntityHandler.promises.getDoc.should.be.calledWith(
- ctx.projectId,
- ctx.docId
- )
- })
- })
- describe('getAllMetaForProject', function () {
- it('should extract all metadata', async function (ctx) {
- ctx.ProjectEntityHandler.promises.getAllDocs = sinon.stub().resolves({
- 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',
- ],
- },
- })
- const result = await ctx.MetaHandler.promises.getAllMetaForProject(
- ctx.projectId
- )
- expect(result).to.deep.equal({
- id_one: {
- labels: ['aaa'],
- packages: {},
- packageNames: [],
- documentClass: null,
- },
- id_two: {
- labels: [],
- packages: {},
- packageNames: [],
- documentClass: null,
- },
- id_three: {
- labels: ['bbb', 'ccc'],
- packages: {},
- packageNames: [],
- documentClass: null,
- },
- id_four: {
- labels: [],
- packages: {
- baz: [
- {
- caption: '\\longercommandtest{}',
- snippet: '\\longercommandtest{$1}',
- meta: 'baz-cmd',
- score: 50,
- },
- ],
- },
- packageNames: ['baz', 'amsmath'],
- documentClass: null,
- },
- 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,
- },
- ],
- },
- packageNames: ['foo', 'baz', 'hello'],
- documentClass: null,
- },
- })
- ctx.DocumentUpdaterHandler.promises.flushProjectToMongo.should.be.calledWith(
- ctx.projectId
- )
- ctx.ProjectEntityHandler.promises.getAllDocs.should.be.calledWith(
- ctx.projectId
- )
- })
- })
- })
|