This commit is contained in:
Henry Oswald 2015-06-07 11:43:51 +01:00
commit d0b6a4157f
5 changed files with 26 additions and 7 deletions

View file

@ -31,6 +31,8 @@ module.exports = (grunt) ->
unit:
options:
reporter: grunt.option('reporter') or 'spec'
grep: grunt.option("grep")
timeout: grunt.option("timeout")
src: ["test/unit/js/**/*.js"]
grunt.loadNpmTasks 'grunt-contrib-coffee'

View file

@ -1,5 +1,4 @@
async = require "async"
_ = require "underscore"
ASpellWorkerPool = require "./ASpellWorkerPool"
LRU = require "lru-cache"
logger = require 'logger-sharelatex'
@ -87,7 +86,6 @@ module.exports = ASpell =
# http://aspell.net/man-html/Through-A-Pipe.html
checkWords: (language, words, callback = (error, result) ->) ->
runner = new ASpellRunner()
callback = _.once callback
runner.checkWords language, words, callback
ASPELL_TIMEOUT : 4000

View file

@ -1,6 +1,7 @@
child_process = require("child_process")
logger = require 'logger-sharelatex'
metrics = require('metrics-sharelatex')
_ = require "underscore"
BATCH_SIZE = 100
@ -15,16 +16,24 @@ class ASpellWorker
@state = 'killed'
logger.log process: @pipe.pid, lang: @language, "aspell worker has exited"
metrics.inc "aspellWorker-exit-" + @language
@pipe.on 'close', () =>
@state = 'closed' unless @state == 'killed'
if @callback?
logger.err process: @pipe.pid, lang: @language, "aspell worker closed output streams with uncalled callback"
@callback new Error("aspell worker closed output streams with uncalled callback"), []
@callback = null
@pipe.on 'error', (err) =>
@state = 'error' unless @state == 'killed'
logger.log process: @pipe.pid, error: err, stdout: output.slice(-1024), stderr: error.slice(-1024), lang: @language, "aspell worker error"
if @callback?
@callback err, []
@callback = null
@pipe.stdin.on 'error', (err) =>
@state = 'error' unless @state == 'killed'
logger.log process: @pipe.pid, error: err, stdout: output.slice(-1024), stderr: error.slice(-1024), lang: @language, "aspell worker error on stdin"
if @callback?
@callback err, []
@callback = null
output = ""
endMarker = new RegExp("^[a-z][a-z]", "m")
@ -33,6 +42,7 @@ class ASpellWorker
# We receive the language code from Aspell as the end of data marker
if chunk.toString().match(endMarker)
@callback(null, output.slice())
@callback = null # only allow one callback in use
@state = 'ready'
output = ""
error = ""
@ -52,7 +62,10 @@ class ASpellWorker
# we will now send data to aspell, and be ready again when we
# receive the end of data marker
@state = 'busy'
@callback = callback
if @callback? # only allow one callback in use
logger.err process: @pipe.pid, lang: @language, "CALLBACK ALREADY IN USE"
return @callback new Error("Aspell callback already in use - SHOULD NOT HAPPEN")
@callback = _.once callback # extra defence against double callback
@setTerseMode()
@write(words)
@flush()

View file

@ -6,7 +6,10 @@ assert = require("chai").assert
describe "ASpell", ->
beforeEach ->
@ASpell = SandboxedModule.require "../../../app/js/ASpell", requires:{}
@ASpell = SandboxedModule.require "../../../app/js/ASpell", requires:
"logger-sharelatex":
log:->
err:->
describe "a correctly spelled word", ->
beforeEach (done) ->
@ -58,7 +61,6 @@ describe "ASpell", ->
# Note that this test fails on OS X, due to differing pipe behaviour
# on killing the child process. It can be tested successfully on Travis
# or the CI server.
it "should return in reasonable time", (done) ->
it "should return in reasonable time", () ->
delta = Date.now()-@start
delta.should.be.below(@ASpell.ASPELL_TIMEOUT + 100)
done()
delta.should.be.below(@ASpell.ASPELL_TIMEOUT + 1000)

View file

@ -19,6 +19,10 @@ describe "LearnedWordsManager", ->
@LearnedWordsManager = SandboxedModule.require modulePath, requires:
"./DB" : @db
"./MongoCache":@cache
"logger-sharelatex":
log:->
err:->
info:->
describe "learnWord", ->
beforeEach ->