-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
'use strict'; | ||
|
||
var TelnyxResource = require('../TelnyxResource'); | ||
var utils = require('../utils'); | ||
var telnyxMethod = TelnyxResource.method; | ||
|
||
function transformResponseData(response, telnyx) { | ||
return utils.addResourceToResponseData( | ||
response, | ||
telnyx, | ||
'callControlApplications', | ||
{ | ||
del: telnyxMethod({ | ||
method: 'DELETE', | ||
path: '/{callControlId}', | ||
urlParams: ['callControlId'], | ||
paramsValues: [response.data.id], | ||
paramsNames: ['id'], | ||
}), | ||
|
||
update: telnyxMethod({ | ||
method: 'PATCH', | ||
path: '/{callControlId}', | ||
urlParams: ['callControlId'], | ||
paramsValues: [response.data.id], | ||
paramsNames: ['id'], | ||
}), | ||
} | ||
); | ||
} | ||
|
||
module.exports = require('../TelnyxResource').extend({ | ||
path: 'call_control_applications', | ||
|
||
list: telnyxMethod({ | ||
method: 'GET', | ||
methodType: 'list', | ||
|
||
transformResponseData: transformResponseData, | ||
}), | ||
|
||
create: telnyxMethod({ | ||
method: 'POST', | ||
transformResponseData: transformResponseData, | ||
}), | ||
|
||
retrieve: telnyxMethod({ | ||
method: 'GET', | ||
path: '/{id}', | ||
urlParams: ['id'], | ||
|
||
transformResponseData: transformResponseData, | ||
}), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
'use strict'; | ||
|
||
|
||
var utils = require('../../testUtils'); | ||
var telnyx = utils.getTelnyxMock(); | ||
var expect = require('chai').expect; | ||
|
||
var TEST_AUTH_KEY = utils.getUserTelnyxKey(); | ||
|
||
describe('Call Control List list', function() { | ||
describe('retrieve', function() { | ||
function responseFn(response) { | ||
expect(response.data).to.include({id: '123'}); | ||
} | ||
|
||
it('Sends the correct request', function() { | ||
return telnyx.callControlApplications.retrieve('123').then((response) => { | ||
responseFn(response) | ||
}); | ||
}) | ||
|
||
it('Sends the correct request [with specified auth]', function() { | ||
return telnyx.callControlApplications.retrieve('123', TEST_AUTH_KEY) | ||
.then(responseFn); | ||
}); | ||
}); | ||
|
||
describe('create', function() { | ||
function responseFn(response) { | ||
expect(response.data).to.have.property('id'); | ||
expect(response.data).to.include({record_type: 'call_control_application'}); | ||
} | ||
|
||
it('Sends the correct request', function() { | ||
return telnyx.callControlApplications.create({'application_name': 'test', 'webhook_event_url': '123123'}) | ||
.then(responseFn); | ||
}) | ||
|
||
it('Sends the correct request [with specified auth]', function() { | ||
return telnyx.callControlApplications.create({'application_name': 'test', 'webhook_event_url': '123123'}, TEST_AUTH_KEY) | ||
.then(responseFn); | ||
}); | ||
|
||
it('Sends the correct request [with specified auth in options]', function() { | ||
return telnyx.callControlApplications.create({'application_name': 'test', 'webhook_event_url': '123123'}, {api_key: TEST_AUTH_KEY}) | ||
.then(responseFn); | ||
}); | ||
}); | ||
|
||
describe('list', function() { | ||
function responseFn(response) { | ||
expect(response.data[0]).to.have.property('id'); | ||
expect(response.data[0]).to.include({record_type: 'call_control_application'}); | ||
} | ||
|
||
it('Sends the correct request', function() { | ||
return telnyx.callControlApplications.list() | ||
.then(responseFn); | ||
}); | ||
|
||
it('Sends the correct request [with specified auth]', function() { | ||
return telnyx.callControlApplications.list(TEST_AUTH_KEY) | ||
.then(responseFn); | ||
}); | ||
}); | ||
|
||
describe('del', function() { | ||
|
||
function responseFn(response) { | ||
if (response.data) { | ||
expect(response.data).to.have.property('id'); | ||
expect(response.data).to.include({record_type: 'call_control_application'}); | ||
} | ||
} | ||
|
||
it('Sends the correct request', function() { | ||
return telnyx.callControlApplications.create({'application_name': 'test', 'webhook_event_url': '123123'}) | ||
.then(function(response) { | ||
const callControlApplications = response.data; | ||
return callControlApplications.del() | ||
.then(responseFn); | ||
}) | ||
}); | ||
it('Sends the correct request [with specified auth]', function() { | ||
return telnyx.callControlApplications.retrieve('123') | ||
.then(function(response) { | ||
const callControlApplications = response.data; | ||
return callControlApplications.del(TEST_AUTH_KEY) | ||
.then(responseFn); | ||
}) | ||
}); | ||
}); | ||
|
||
describe('update', function() { | ||
function responseFn(response) { | ||
if (response.data) { | ||
expect(response.data).to.have.property('id'); | ||
expect(response.data).to.include({application_name: 'test updated'}); | ||
} | ||
} | ||
|
||
it('Sends the correct request', function() { | ||
return telnyx.callControlApplications.create({'application_name': 'test', 'webhook_event_url': '123123'}) | ||
.then(function(response) { | ||
const ip = response.data; | ||
return ip.update({'application_name': 'test updated', 'webhook_event_url': '123123'}) | ||
.then(responseFn); | ||
}) | ||
}); | ||
it('Sends the correct request [with specified auth]', function() { | ||
return telnyx.callControlApplications.retrieve('123') | ||
.then(function(response) { | ||
const ip = response.data; | ||
return ip.update({'application_name': 'test updated', 'webhook_event_url': '123123'}, TEST_AUTH_KEY) | ||
.then(responseFn); | ||
}) | ||
}); | ||
}); | ||
}); |