mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-21 15:51:49 +03:00
107 lines
3.3 KiB
JavaScript
107 lines
3.3 KiB
JavaScript
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 () => {
|
|
const nlu = new Nlu()
|
|
|
|
try {
|
|
await nlu.loadModel('ghost-model.nlp')
|
|
} 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 () => {
|
|
const nlu = new Nlu()
|
|
|
|
await nlu.loadModel(global.paths.nlp_model)
|
|
expect(nlu.nlp.nluManager.domainManagers).not.toBeEmpty()
|
|
})
|
|
})
|
|
|
|
describe('process()', () => {
|
|
const nluFallbackTmp = Nlu.fallback
|
|
|
|
test('returns false because the NLP model is empty', async () => {
|
|
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()
|
|
expect(nlu.brain.talk).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
test('executes brain with the fallback value (object)', async () => {
|
|
const query = 'Thisisaqueryexampletotestfallbacks'
|
|
const fallbackObj = {
|
|
query,
|
|
entities: [],
|
|
classification: { package: 'leon', module: 'randomnumber', action: 'run' }
|
|
}
|
|
const nlu = new Nlu()
|
|
nlu.brain = { execute: jest.fn() }
|
|
Nlu.fallback = jest.fn(() => fallbackObj)
|
|
|
|
await nlu.loadModel(global.paths.nlp_model)
|
|
expect(await nlu.process(query)).toBeTruthy()
|
|
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()
|
|
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, [
|
|
{
|
|
words: ['query', 'example', 'test', 'fallbacks'], package: 'fake-pkg', module: 'fake-module', action: 'fake-action'
|
|
}
|
|
]).classification).toContainEntries([['package', 'fake-pkg'], ['module', 'fake-module'], ['action', 'fake-action'], ['confidence', 1]])
|
|
})
|
|
})
|
|
})
|