1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-22 00:01:31 +03:00
leon/test/unit/server/core/nlu.spec.js

107 lines
3.3 KiB
JavaScript
Raw Normal View History

2019-02-10 15:26:50 +03:00
import Nlu from '@/core/nlu'
describe('NLU', () => {
describe('constructor()', () => {
test('creates a new instance of Nlu', () => {
const nlu = new Nlu()
expect(nlu).toBeInstanceOf(Nlu)
})
})
describe('loadModel()', () => {
test('returns warning NLP model does not exist', async () => {
2019-02-10 15:26:50 +03:00
const nlu = new Nlu()
try {
await nlu.loadModel('ghost-model.nlp')
2019-02-10 15:26:50 +03:00
} catch (e) {
expect(e.type).toBe('warning')
}
})
test('rejects because of a broken NLP model', async () => {
const nlu = new Nlu()
nlu.brain = { talk: jest.fn(), wernicke: jest.fn(), socket: { emit: jest.fn() } }
try {
await nlu.loadModel(global.paths.broken_nlp_model)
} catch (e) {
expect(e.type).toBe('error')
}
})
test('loads the NLP model', async () => {
2019-02-10 15:26:50 +03:00
const nlu = new Nlu()
await nlu.loadModel(global.paths.nlp_model)
expect(nlu.nlp.nluManager.domainManagers).not.toBeEmpty()
2019-02-10 15:26:50 +03:00
})
})
describe('process()', () => {
const nluFallbackTmp = Nlu.fallback
test('returns false because the NLP model is empty', async () => {
2019-02-10 15:26:50 +03:00
const nlu = new Nlu()
nlu.brain = { talk: jest.fn(), wernicke: jest.fn(), socket: { emit: jest.fn() } }
expect(await nlu.process('Hello')).toBeFalsy()
})
test('returns false because of query not found', async () => {
const nlu = new Nlu()
nlu.brain = { talk: jest.fn(), wernicke: jest.fn(), socket: { emit: jest.fn() } }
await nlu.loadModel(global.paths.nlp_model)
expect(await nlu.process('Unknown query')).toBeFalsy()
2019-02-10 15:26:50 +03:00
expect(nlu.brain.talk).toHaveBeenCalledTimes(1)
})
test('executes brain with the fallback value (object)', async () => {
2019-05-11 14:31:35 +03:00
const query = 'Thisisaqueryexampletotestfallbacks'
const fallbackObj = {
query,
entities: [],
classification: { package: 'leon', module: 'randomnumber', action: 'run' }
}
2019-02-10 15:26:50 +03:00
const nlu = new Nlu()
nlu.brain = { execute: jest.fn() }
Nlu.fallback = jest.fn(() => fallbackObj)
await nlu.loadModel(global.paths.nlp_model)
2019-05-11 14:31:35 +03:00
expect(await nlu.process(query)).toBeTruthy()
2019-02-10 15:26:50 +03:00
expect(nlu.brain.execute.mock.calls[0][0]).toBe(fallbackObj)
Nlu.fallback = nluFallbackTmp // Need to give back the real fallback method
})
test('returns true thanks to query found', async () => {
const nlu = new Nlu()
nlu.brain = { execute: jest.fn() }
await nlu.loadModel(global.paths.nlp_model)
expect(await nlu.process('Hello')).toBeTruthy()
2019-02-10 15:26:50 +03:00
expect(nlu.brain.execute).toHaveBeenCalledTimes(1)
})
})
describe('fallback()', () => {
test('returns false because there is no fallback matching the query', () => {
expect(Nlu.fallback({ query: 'This is a query example to test fallbacks' }, [])).toBeFalsy()
})
test('returns fallback injected object', () => {
const obj = {
query: 'This is a query example to test fallbacks',
classification: { }
}
expect(Nlu.fallback(obj, [
2021-03-15 20:39:52 +03:00
{
words: ['query', 'example', 'test', 'fallbacks'], package: 'fake-pkg', module: 'fake-module', action: 'fake-action'
}
2019-05-04 06:20:35 +03:00
]).classification).toContainEntries([['package', 'fake-pkg'], ['module', 'fake-module'], ['action', 'fake-action'], ['confidence', 1]])
2019-02-10 15:26:50 +03:00
})
})
})