overleaf/services/spelling/test/unit/js/SpellingAPIManagerTests.js
Eric Mc Sween f6c1e2738d Merge pull request #10938 from overleaf/em-esm-spelling
Migrate spelling to ES modules

GitOrigin-RevId: 4a200c8d1c28be44027cc8a3097e42575ab6593f
2022-12-21 09:03:55 +00:00

114 lines
3.2 KiB
JavaScript

/* eslint-disable
handle-callback-err
*/
import sinon from 'sinon'
import { expect } from 'chai'
import esmock from 'esmock'
const MODULE_PATH = '../../../app/js/SpellingAPIManager'
const promiseStub = val => new Promise(resolve => resolve(val))
describe('SpellingAPIManager', function () {
beforeEach(async function () {
this.token = 'user-id-123'
this.nonLearnedWords = ['some', 'words', 'htat', 'are', 'speled', 'rong']
this.allWords = this.nonLearnedWords
this.misspellings = [
{ index: 2, suggestions: ['that'] },
{ index: 4, suggestions: ['spelled'] },
{ index: 5, suggestions: ['wrong', 'ring'] },
]
this.misspellingsWithoutLearnedWords = this.misspellings.slice(0, 3)
this.ASpell = {
checkWords: sinon.stub().yields(null, this.misspellings),
promises: {
checkWords: sinon.stub().returns(promiseStub(this.misspellings)),
},
}
this.SpellingAPIManager = await esmock(MODULE_PATH, {
'../../../app/js/ASpell.js': this.ASpell,
'@overleaf/settings': { ignoredMisspellings: ['ShareLaTeX'] },
})
})
describe('runRequest', function () {
describe('with sensible JSON', function () {
beforeEach(function (done) {
this.SpellingAPIManager.runRequest(
this.token,
{ words: this.allWords },
(error, result) => {
if (error) return done(error)
this.result = result
done()
}
)
})
it('should return the words that are spelled incorrectly and not learned', function () {
expect(this.result.misspellings).to.deep.equal(
this.misspellingsWithoutLearnedWords
)
})
})
describe('with a missing words array', function () {
beforeEach(function (done) {
this.SpellingAPIManager.runRequest(this.token, {}, (error, result) => {
this.error = error
this.result = result
done()
})
})
it('should return an error', function () {
expect(this.error).to.exist
expect(this.error).to.be.instanceof(Error)
expect(this.error.message).to.equal('malformed JSON')
})
})
describe('without a language', function () {
beforeEach(function (done) {
this.SpellingAPIManager.runRequest(
this.token,
{ words: this.allWords },
(error, result) => {
if (error) return done(error)
this.result = result
done()
}
)
})
it('should use en as the default', function () {
this.ASpell.promises.checkWords.calledWith('en').should.equal(true)
})
})
describe('with a language', function () {
beforeEach(function (done) {
this.language = 'fr'
this.SpellingAPIManager.runRequest(
this.token,
{
words: this.allWords,
language: this.language,
},
(error, result) => {
if (error) return done(error)
this.result = result
done()
}
)
})
it('should use the language', function () {
this.ASpell.promises.checkWords
.calledWith(this.language)
.should.equal(true)
})
})
})
})