1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-18 22:31:32 +03:00
leon/test/unit/server/stt/stt.spec.js
2019-02-10 20:26:50 +08:00

53 lines
1.3 KiB
JavaScript

'use strict'
import Stt from '@/stt/stt'
describe('STT', () => {
describe('constructor()', () => {
test('creates a new instance of Stt', () => {
const stt = new Stt({ }, 'deepspeech')
expect(stt).toBeInstanceOf(Stt)
})
})
describe('init()', () => {
test('returns error provider does not exist or not yet supported', () => {
const stt = new Stt({ }, 'fake-provider')
expect(stt.init()).toBeFalsy()
})
test('initializes the STT parser', () => {
const stt = new Stt({ }, 'deepspeech')
expect(stt.init()).toBeTruthy()
})
})
describe('forward()', () => {
test('forwards string output to the client', () => {
const stt = new Stt({ }, '')
stt.socket = { emit: jest.fn() }
stt.forward('Hello')
expect(stt.socket.emit.mock.calls[0][0]).toBe('recognized')
expect(stt.socket.emit.mock.calls[0][1]).toBe('Hello')
})
})
describe('parse()', () => {
test('returns error file does not exist', () => {
const stt = new Stt({ }, '')
expect(stt.parse('fake-file.wav')).toBeFalsy()
})
test('parses WAVE file via the chosen parser', () => {
const stt = new Stt({ }, '')
expect(stt.parse(global.paths.wave_speech)).toBeTruthy()
})
})
})