mirror of
https://github.com/jambonz/jambonz-api-server.git
synced 2026-02-09 02:29:59 +00:00
* feat: schema change * feat: record all calls * add bucket test for S3 * wip: add S3 upload stream implementation * wip * wip: add ws server * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip: modify sub folder * wip: add record endpoint * wip: add record endpoint * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * fix: failing testcase * bucket credentials with tags * add tagging * wip * wip * wip * wip * wip * wip * fixed phone number is not in order * feat: schema change * feat: record all calls * add bucket test for S3 * wip: add S3 upload stream implementation * wip * wip: add ws server * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip: modify sub folder * wip: add record endpoint * wip: add record endpoint * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * fix: failing testcase * bucket credentials with tags * add tagging * wip * wip * wip * wip * wip * fixed phone number is not in order * add schema changes to upgrade script * use aws-sdk v3 * jambonz lamejs * jambonz lamejs * add back wav encoder * wip: add record format to schema * add record_format * fix: record file ext * fix: record file ext * fix: record file ext * fix: record file ext * fix download audio * bug fix: dtmf metadata is causing closure of websocket * fix: add extra data to S3 metadata * upgrade db script * bugfix: region was being ignored in test s3 upload --------- Co-authored-by: Dave Horton <daveh@beachdognet.com>
236 lines
7.0 KiB
JavaScript
236 lines
7.0 KiB
JavaScript
const test = require('tape') ;
|
|
const ADMIN_TOKEN = '38700987-c7a4-4685-a5bb-af378f9734de';
|
|
const authAdmin = {bearer: ADMIN_TOKEN};
|
|
const request = require('request-promise-native').defaults({
|
|
baseUrl: 'http://127.0.0.1:3000/v1'
|
|
});
|
|
const {createVoipCarrier, createServiceProvider,
|
|
createPhoneNumber, createAccount, deleteObjectBySid
|
|
} = require('./utils');
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
|
|
});
|
|
|
|
test('application tests', async(t) => {
|
|
const app = require('../app');
|
|
let sid;
|
|
try {
|
|
let result;
|
|
|
|
/* add service provider, phone number, and voip carrier */
|
|
const voip_carrier_sid = await createVoipCarrier(request);
|
|
const service_provider_sid = await createServiceProvider(request);
|
|
const phone_number_sid = await createPhoneNumber(request, voip_carrier_sid);
|
|
const account_sid = await createAccount(request, service_provider_sid);
|
|
|
|
/* add an invalid application app_json */
|
|
result = await request.post('/Applications', {
|
|
resolveWithFullResponse: true,
|
|
simple: false,
|
|
auth: authAdmin,
|
|
json: true,
|
|
body: {
|
|
name: 'daveh',
|
|
account_sid,
|
|
call_hook: {
|
|
url: 'http://example.com'
|
|
},
|
|
call_status_hook: {
|
|
url: 'http://example.com/status',
|
|
method: 'POST'
|
|
},
|
|
messaging_hook: {
|
|
url: 'http://example.com/sms'
|
|
},
|
|
app_json : '[\
|
|
{\
|
|
"verb": "play",\
|
|
"timeoutSecs": 10,\
|
|
"seekOffset": 8000,\
|
|
"actionHook": "/play/action"\
|
|
}\
|
|
]'
|
|
}
|
|
});
|
|
t.ok(result.statusCode === 400, 'Cant create application with invalid app_josn');
|
|
|
|
/* add an application */
|
|
result = await request.post('/Applications', {
|
|
resolveWithFullResponse: true,
|
|
auth: authAdmin,
|
|
json: true,
|
|
body: {
|
|
name: 'daveh',
|
|
account_sid,
|
|
call_hook: {
|
|
url: 'http://example.com'
|
|
},
|
|
call_status_hook: {
|
|
url: 'http://example.com/status',
|
|
method: 'POST'
|
|
},
|
|
messaging_hook: {
|
|
url: 'http://example.com/sms'
|
|
},
|
|
app_json : '[\
|
|
{\
|
|
"verb": "play",\
|
|
"url": "https://example.com/example.mp3",\
|
|
"timeoutSecs": 10,\
|
|
"seekOffset": 8000,\
|
|
"actionHook": "/play/action"\
|
|
}\
|
|
]'
|
|
}
|
|
});
|
|
t.ok(result.statusCode === 201, 'successfully created application');
|
|
const sid = result.body.sid;
|
|
|
|
/* query all applications */
|
|
result = await request.get('/Applications', {
|
|
auth: authAdmin,
|
|
json: true,
|
|
});
|
|
//console.log(`result: ${JSON.stringify(result)}`);
|
|
t.ok(result.length === 1 , 'successfully queried all applications');
|
|
|
|
/* query one applications */
|
|
result = await request.get(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
});
|
|
t.ok(result.name === 'daveh' , 'successfully retrieved application by sid');
|
|
t.ok(result.messaging_hook.url === 'http://example.com/sms' , 'successfully retrieved messaging_hook from application');
|
|
let app_json = JSON.parse(result.app_json);
|
|
t.ok(app_json[0].verb === 'play', 'successfully retrieved app_json from application')
|
|
|
|
|
|
/* update applications */
|
|
result = await request.put(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
resolveWithFullResponse: true,
|
|
body: {
|
|
call_hook: {
|
|
url: 'http://example2.com'
|
|
},
|
|
messaging_hook: {
|
|
url: 'http://example2.com/mms'
|
|
},
|
|
app_json : '[\
|
|
{\
|
|
"verb": "hangup",\
|
|
"headers": {\
|
|
"X-Reason" : "maximum call duration exceeded"\
|
|
}\
|
|
}\
|
|
]',
|
|
record_all_calls: true
|
|
}
|
|
});
|
|
t.ok(result.statusCode === 204, 'successfully updated application');
|
|
|
|
/* validate messaging hook was updated */
|
|
result = await request.get(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
});
|
|
t.ok(result.messaging_hook.url === 'http://example2.com/mms' , 'successfully updated messaging_hook');
|
|
app_json = JSON.parse(result.app_json);
|
|
t.ok(app_json[0].verb === 'hangup', 'successfully updated app_json from application')
|
|
t.ok(result.record_all_calls === 1, 'successfully updated record_all_calls from application')
|
|
|
|
/* remove applications app_json*/
|
|
result = await request.put(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
resolveWithFullResponse: true,
|
|
body: {
|
|
call_hook: {
|
|
url: 'http://example2.com'
|
|
},
|
|
messaging_hook: {
|
|
url: 'http://example2.com/mms'
|
|
},
|
|
app_json : null
|
|
}
|
|
});
|
|
t.ok(result.statusCode === 204, 'successfully updated application');
|
|
|
|
/* validate messaging hook was updated */
|
|
result = await request.get(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
});
|
|
t.ok(result.app_json == undefined, 'successfully removed app_json from application')
|
|
|
|
/* Update invalid applications app_json*/
|
|
result = await request.put(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
resolveWithFullResponse: true,
|
|
simple: false,
|
|
body: {
|
|
call_hook: {
|
|
url: 'http://example2.com'
|
|
},
|
|
messaging_hook: {
|
|
url: 'http://example2.com/mms'
|
|
},
|
|
app_json : '[\
|
|
{\
|
|
"verb": "play",\
|
|
"timeoutSecs": 10,\
|
|
"seekOffset": 8000,\
|
|
"actionHook": "/play/action"\
|
|
}\
|
|
]'
|
|
}
|
|
});
|
|
t.ok(result.statusCode === 400, 'Cant update invalid application app_json');
|
|
|
|
/* assign phone number to application */
|
|
result = await request.put(`/PhoneNumbers/${phone_number_sid}`, {
|
|
auth: authAdmin,
|
|
json: true,
|
|
resolveWithFullResponse: true,
|
|
body: {
|
|
application_sid: sid,
|
|
account_sid
|
|
}
|
|
});
|
|
t.ok(result.statusCode === 204, 'successfully assigned phone number to application');
|
|
|
|
/* delete application */
|
|
result = await request.delete(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
resolveWithFullResponse: true,
|
|
simple: false,
|
|
json: true
|
|
});
|
|
//console.log(results);
|
|
t.ok(result.statusCode === 422, 'cannot delete application with phone numbers');
|
|
|
|
/* delete application */
|
|
await request.delete(`/PhoneNumbers/${phone_number_sid}`, {auth: authAdmin});
|
|
result = await request.delete(`/Applications/${sid}`, {
|
|
auth: authAdmin,
|
|
resolveWithFullResponse: true,
|
|
});
|
|
//console.log(result);
|
|
t.ok(result.statusCode === 204, 'successfully deleted application after removing phone number');
|
|
|
|
await deleteObjectBySid(request, '/Accounts', account_sid);
|
|
await deleteObjectBySid(request, '/VoipCarriers', voip_carrier_sid);
|
|
await deleteObjectBySid(request, '/ServiceProviders', service_provider_sid);
|
|
|
|
//t.end();
|
|
}
|
|
catch (err) {
|
|
//console.error(err);
|
|
t.end(err);
|
|
}
|
|
});
|
|
|