-
Notifications
You must be signed in to change notification settings - Fork 433
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 #452 from stripe/ob-invoice-line-item
Add InvoiceLineItem class
- Loading branch information
Showing
5 changed files
with
92 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
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 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
from stripe.stripe_object import StripeObject | ||
|
||
|
||
class InvoiceLineItem(StripeObject): | ||
OBJECT_NAME = 'line_item' |
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,69 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import stripe | ||
|
||
|
||
TEST_RESOURCE_ID = 'ii_123' | ||
|
||
|
||
class TestInvoiceItem(object): | ||
def test_is_listable(self, request_mock): | ||
resources = stripe.InvoiceItem.list() | ||
request_mock.assert_requested( | ||
'get', | ||
'/v1/invoiceitems' | ||
) | ||
assert isinstance(resources.data, list) | ||
assert isinstance(resources.data[0], stripe.InvoiceItem) | ||
|
||
def test_is_retrievable(self, request_mock): | ||
resource = stripe.InvoiceItem.retrieve(TEST_RESOURCE_ID) | ||
request_mock.assert_requested( | ||
'get', | ||
'/v1/invoiceitems/%s' % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.InvoiceItem) | ||
|
||
def test_is_creatable(self, request_mock): | ||
resource = stripe.InvoiceItem.create( | ||
customer='cus_123', | ||
amount=123, | ||
currency='usd' | ||
) | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/invoiceitems' | ||
) | ||
assert isinstance(resource, stripe.InvoiceItem) | ||
|
||
def test_is_saveable(self, request_mock): | ||
resource = stripe.InvoiceItem.retrieve(TEST_RESOURCE_ID) | ||
resource.metadata['key'] = 'value' | ||
resource.save() | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/invoiceitems/%s' % resource.id | ||
) | ||
|
||
def test_is_modifiable(self, request_mock): | ||
resource = stripe.InvoiceItem.modify( | ||
TEST_RESOURCE_ID, | ||
metadata={'key': 'value'} | ||
) | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/invoiceitems/%s' % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.InvoiceItem) | ||
|
||
def test_is_deletable(self, request_mock): | ||
resource = stripe.InvoiceItem.retrieve(TEST_RESOURCE_ID) | ||
# Unfortunately stripe-mock will return a resource with a different | ||
# ID, so we need to store the original ID for the request assertion | ||
resource_id = resource.id | ||
resource.delete() | ||
request_mock.assert_requested( | ||
'delete', | ||
'/v1/invoiceitems/%s' % resource_id | ||
) | ||
assert resource.deleted is True |
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,13 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import stripe | ||
|
||
|
||
TEST_INVOICE_ID = 'in_123' | ||
|
||
|
||
class TestInvoiceLineItem(object): | ||
def test_deserialize(self, request_mock): | ||
invoice = stripe.Invoice.retrieve(TEST_INVOICE_ID) | ||
assert isinstance(invoice.lines.data, list) | ||
assert isinstance(invoice.lines.data[0], stripe.InvoiceLineItem) |