-
Notifications
You must be signed in to change notification settings - Fork 755
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #510 from stripe/remi-add-webhook-endpoint
Add support for the Webhook Endpoint resource
- Loading branch information
Showing
3 changed files
with
85 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,7 @@ | ||
'use strict'; | ||
|
||
module.exports = require('../StripeResource').extend({ | ||
path: 'webhook_endpoints', | ||
includeBasic: ['create', 'list', 'update', 'retrieve', 'del'], | ||
}); | ||
|
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,77 @@ | ||
'use strict'; | ||
|
||
var stripe = require('../../testUtils').getSpyableStripe(); | ||
var expect = require('chai').expect; | ||
|
||
describe('WebhookEndpoints Resource', function() { | ||
describe('retrieve', function() { | ||
it('Sends the correct request', function() { | ||
stripe.webhookEndpoints.retrieve('we_123'); | ||
expect(stripe.LAST_REQUEST).to.deep.equal({ | ||
method: 'GET', | ||
url: '/v1/webhook_endpoints/we_123', | ||
headers: {}, | ||
data: {}, | ||
}); | ||
}); | ||
}); | ||
|
||
describe('del', function() { | ||
it('Sends the correct request', function() { | ||
stripe.webhookEndpoints.del('we_123'); | ||
expect(stripe.LAST_REQUEST).to.deep.equal({ | ||
method: 'DELETE', | ||
url: '/v1/webhook_endpoints/we_123', | ||
headers: {}, | ||
data: {}, | ||
}); | ||
}); | ||
}); | ||
|
||
describe('update', function() { | ||
it('Sends the correct request', function() { | ||
stripe.webhookEndpoints.update('we_123', { | ||
enabled_events: ['charge.succeeded'], | ||
}); | ||
expect(stripe.LAST_REQUEST).to.deep.equal({ | ||
method: 'POST', | ||
url: '/v1/webhook_endpoints/we_123', | ||
headers: {}, | ||
data: { | ||
enabled_events: ['charge.succeeded'], | ||
}, | ||
}); | ||
}); | ||
}); | ||
|
||
describe('create', function() { | ||
it('Sends the correct request', function() { | ||
stripe.webhookEndpoints.create({ | ||
enabled_events: ['charge.succeeded'], | ||
url: 'https://stripe.com', | ||
}); | ||
|
||
expect(stripe.LAST_REQUEST).to.deep.equal({ | ||
method: 'POST', | ||
url: '/v1/webhook_endpoints', | ||
headers: {}, | ||
data: { | ||
enabled_events: ['charge.succeeded'], | ||
url: 'https://stripe.com', | ||
}, | ||
}); | ||
}); | ||
}); | ||
|
||
describe('list', function() { | ||
it('Sends the correct request', function() { | ||
stripe.webhookEndpoints.list(); | ||
expect(stripe.LAST_REQUEST).to.deep.equal({ | ||
method: 'GET', | ||
url: '/v1/webhook_endpoints', | ||
headers: {}, | ||
data: {}, | ||
}); | ||
}); | ||
}); | ||
}); |