mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-19 04:17:44 +00:00
448 lines
12 KiB
JavaScript
448 lines
12 KiB
JavaScript
const test = require('tape');
|
|
const { sippUac } = require('./sipp')('test_fs');
|
|
const bent = require('bent');
|
|
const getJSON = bent('json')
|
|
const clearModule = require('clear-module');
|
|
const {provisionCallHook} = require('./utils')
|
|
const {
|
|
GCP_JSON_KEY,
|
|
AWS_ACCESS_KEY_ID,
|
|
AWS_SECRET_ACCESS_KEY,
|
|
MICROSOFT_REGION,
|
|
MICROSOFT_API_KEY,
|
|
SONIOX_API_KEY,
|
|
DEEPGRAM_API_KEY,
|
|
} = require('../lib/config');
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
|
|
});
|
|
|
|
function connect(connectable) {
|
|
return new Promise((resolve, reject) => {
|
|
connectable.on('connect', () => {
|
|
return resolve();
|
|
});
|
|
});
|
|
}
|
|
|
|
test('\'transcribe\' test - google', async(t) => {
|
|
if (!GCP_JSON_KEY) {
|
|
t.pass('skipping google tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "transcribe",
|
|
"recognizer": {
|
|
"vendor": "google",
|
|
"hints": ["customer support", "sales", "human resources", "HR"]
|
|
},
|
|
"transcriptionHook": "/transcriptionHook"
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().startsWith('i\'d like to speak to customer support'),
|
|
'transcribe: succeeds when using google credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - microsoft', async(t) => {
|
|
if (!MICROSOFT_REGION || !MICROSOFT_API_KEY) {
|
|
t.pass('skipping microsoft tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "transcribe",
|
|
"recognizer": {
|
|
"vendor": "microsoft",
|
|
"hints": ["customer support", "sales", "human resources", "HR"]
|
|
},
|
|
"transcriptionHook": "/transcriptionHook"
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().startsWith('i\'d like to speak to customer support'),
|
|
'transcribe: succeeds when using microsoft credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - aws', async(t) => {
|
|
if (!AWS_ACCESS_KEY_ID || !AWS_SECRET_ACCESS_KEY) {
|
|
t.pass('skipping aws tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "transcribe",
|
|
"recognizer": {
|
|
"vendor": "aws",
|
|
"hints": ["customer support", "sales", "human resources", "HR"]
|
|
},
|
|
"transcriptionHook": "/transcriptionHook"
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().startsWith('i\'d like to speak to customer support'),
|
|
'transcribe: succeeds when using aws credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
|
|
test('\'transcribe\' test - deepgram config options', async(t) => {
|
|
if (!DEEPGRAM_API_KEY ) {
|
|
t.pass('skipping deepgram tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "config",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"language": "en-US",
|
|
"altLanguages": [
|
|
"en-US"
|
|
],
|
|
"deepgramOptions": {
|
|
"model": "2-ea",
|
|
"tier": "nova",
|
|
"numerals": true,
|
|
"ner": true,
|
|
"vadTurnoff": 10,
|
|
"keywords": [
|
|
"CPT"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"verb": "transcribe",
|
|
"transcriptionHook": "/transcriptionHook",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"altLanguages": [
|
|
"en-AU"
|
|
],
|
|
"hints": ["customer support", "sales", "human resources", "HR"],
|
|
"deepgramOptions": {
|
|
"apiKey": DEEPGRAM_API_KEY,
|
|
}
|
|
}
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().includes('like to speak to customer support'),
|
|
'transcribe: succeeds when using deepgram credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - deepgram', async(t) => {
|
|
if (!DEEPGRAM_API_KEY ) {
|
|
t.pass('skipping deepgram tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "transcribe",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"hints": ["customer support", "sales", "human resources", "HR"],
|
|
"deepgramOptions": {
|
|
"apiKey": DEEPGRAM_API_KEY
|
|
}
|
|
},
|
|
"transcriptionHook": "/transcriptionHook"
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().includes('like to speak to customer support'),
|
|
'transcribe: succeeds when using deepgram credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - soniox', async(t) => {
|
|
if (!SONIOX_API_KEY ) {
|
|
t.pass('skipping soniox tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "transcribe",
|
|
"recognizer": {
|
|
"vendor": "soniox",
|
|
"hints": ["customer support", "sales", "human resources", "HR"],
|
|
"deepgramOptions": {
|
|
"apiKey": SONIOX_API_KEY
|
|
}
|
|
},
|
|
"transcriptionHook": "/transcriptionHook"
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().startsWith('i\'d like to speak to customer support'),
|
|
'transcribe: succeeds when using soniox credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - google with asrTimeout', async(t) => {
|
|
if (!GCP_JSON_KEY) {
|
|
t.pass('skipping google tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "transcribe",
|
|
"recognizer": {
|
|
"vendor": "google",
|
|
"hints": ["customer support", "sales", "human resources", "HR"],
|
|
"asrTimeout": 4
|
|
},
|
|
"transcriptionHook": "/transcriptionHook"
|
|
}
|
|
];
|
|
let from = "gather_success";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().startsWith('i\'d like to speak to customer support'),
|
|
'transcribe: succeeds when using google credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - deepgram config options altLanguages', async(t) => {
|
|
if (!DEEPGRAM_API_KEY ) {
|
|
t.pass('skipping deepgram tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "config",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"language": "en-US",
|
|
"altLanguages": [
|
|
"en-US"
|
|
],
|
|
"deepgramOptions": {
|
|
"model": "nova-2",
|
|
"numerals": true,
|
|
"ner": true,
|
|
"vadTurnoff": 10,
|
|
"keywords": [
|
|
"CPT"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"verb": "transcribe",
|
|
"transcriptionHook": "/transcriptionHook",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"hints": ["customer support", "sales", "human resources", "HR"],
|
|
"deepgramOptions": {
|
|
"apiKey": DEEPGRAM_API_KEY,
|
|
}
|
|
}
|
|
}
|
|
];
|
|
let from = "gather_success_no_altLanguages";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().includes('like to speak to customer support'),
|
|
'transcribe: succeeds when using deepgram credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
});
|
|
|
|
test('\'transcribe\' test - deepgram config options altLanguages', async(t) => {
|
|
if (!DEEPGRAM_API_KEY ) {
|
|
t.pass('skipping deepgram tests');
|
|
return t.end();
|
|
}
|
|
clearModule.all();
|
|
const {srf, disconnect} = require('../app');
|
|
|
|
try {
|
|
await connect(srf);
|
|
// GIVEN
|
|
let verbs = [
|
|
{
|
|
"verb": "config",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"language": "en-US",
|
|
"altLanguages": [
|
|
"en-US"
|
|
],
|
|
"deepgramOptions": {
|
|
"model": "nova-2",
|
|
"numerals": true,
|
|
"ner": true,
|
|
"vadTurnoff": 10,
|
|
"keywords": [
|
|
"CPT"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"verb": "transcribe",
|
|
"transcriptionHook": "/transcriptionHook",
|
|
"recognizer": {
|
|
"vendor": "deepgram",
|
|
"hints": ["customer support", "sales", "human resources", "HR"],
|
|
"altLanguages": [],
|
|
"deepgramOptions": {
|
|
"apiKey": DEEPGRAM_API_KEY,
|
|
}
|
|
}
|
|
}
|
|
];
|
|
let from = "gather_success_has_altLanguages";
|
|
await provisionCallHook(from, verbs);
|
|
// THEN
|
|
await sippUac('uac-gather-account-creds-success.xml', '172.38.0.10', from);
|
|
let obj = await getJSON(`http://127.0.0.1:3100/lastRequest/${from}_actionHook`);
|
|
//console.log(JSON.stringify(obj));
|
|
t.ok(obj.body.speech.alternatives[0].transcript.toLowerCase().includes('like to speak to customer support'),
|
|
'transcribe: succeeds when using deepgram credentials');
|
|
|
|
disconnect();
|
|
} catch (err) {
|
|
console.log(`error received: ${err}`);
|
|
disconnect();
|
|
t.error(err);
|
|
}
|
|
}); |