-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Radar ValueList and ValueListItem resources
- Loading branch information
1 parent
0f1c82b
commit 7463aac
Showing
9 changed files
with
144 additions
and
2 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
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,6 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
# flake8: noqa | ||
|
||
from stripe.api_resources.radar.value_list import ValueList | ||
from stripe.api_resources.radar.value_list_item import ValueListItem |
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,11 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
from stripe.api_resources.abstract import CreateableAPIResource | ||
from stripe.api_resources.abstract import DeletableAPIResource | ||
from stripe.api_resources.abstract import UpdateableAPIResource | ||
from stripe.api_resources.abstract import ListableAPIResource | ||
|
||
|
||
class ValueList(CreateableAPIResource, UpdateableAPIResource, | ||
DeletableAPIResource, ListableAPIResource): | ||
OBJECT_NAME = 'radar.value_list' |
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,10 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
from stripe.api_resources.abstract import CreateableAPIResource | ||
from stripe.api_resources.abstract import DeletableAPIResource | ||
from stripe.api_resources.abstract import ListableAPIResource | ||
|
||
|
||
class ValueListItem(CreateableAPIResource, DeletableAPIResource, | ||
ListableAPIResource): | ||
OBJECT_NAME = 'radar.value_list_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,65 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import stripe | ||
|
||
|
||
TEST_RESOURCE_ID = 'rsl_123' | ||
|
||
|
||
class TestValueList(object): | ||
def test_is_listable(self, request_mock): | ||
resources = stripe.radar.ValueList.list() | ||
request_mock.assert_requested( | ||
'get', | ||
'/v1/radar/value_lists' | ||
) | ||
assert isinstance(resources.data, list) | ||
assert isinstance(resources.data[0], stripe.radar.ValueList) | ||
|
||
def test_is_retrievable(self, request_mock): | ||
resource = stripe.radar.ValueList.retrieve(TEST_RESOURCE_ID) | ||
request_mock.assert_requested( | ||
'get', | ||
'/v1/radar/value_lists/%s' % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.radar.ValueList) | ||
|
||
def test_is_creatable(self, request_mock): | ||
resource = stripe.radar.ValueList.create( | ||
alias='alias', | ||
name='name' | ||
) | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/radar/value_lists' | ||
) | ||
assert isinstance(resource, stripe.radar.ValueList) | ||
|
||
def test_is_saveable(self, request_mock): | ||
resource = stripe.radar.ValueList.retrieve(TEST_RESOURCE_ID) | ||
resource.metadata['key'] = 'value' | ||
resource.save() | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/radar/value_lists/%s' % TEST_RESOURCE_ID | ||
) | ||
|
||
def test_is_modifiable(self, request_mock): | ||
resource = stripe.radar.ValueList.modify( | ||
TEST_RESOURCE_ID, | ||
metadata={'key': 'value'} | ||
) | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/radar/value_lists/%s' % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.radar.ValueList) | ||
|
||
def test_is_deletable(self, request_mock): | ||
resource = stripe.radar.ValueList.retrieve(TEST_RESOURCE_ID) | ||
resource.delete() | ||
request_mock.assert_requested( | ||
'delete', | ||
'/v1/radar/value_lists/%s' % TEST_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,45 @@ | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import stripe | ||
|
||
|
||
TEST_RESOURCE_ID = 'rsli_123' | ||
|
||
|
||
class TestValueListItem(object): | ||
def test_is_listable(self, request_mock): | ||
resources = stripe.radar.ValueListItem.list(value_list='rsl_123') | ||
request_mock.assert_requested( | ||
'get', | ||
'/v1/radar/value_list_items' | ||
) | ||
assert isinstance(resources.data, list) | ||
assert isinstance(resources.data[0], stripe.radar.ValueListItem) | ||
|
||
def test_is_retrievable(self, request_mock): | ||
resource = stripe.radar.ValueListItem.retrieve(TEST_RESOURCE_ID) | ||
request_mock.assert_requested( | ||
'get', | ||
'/v1/radar/value_list_items/%s' % TEST_RESOURCE_ID | ||
) | ||
assert isinstance(resource, stripe.radar.ValueListItem) | ||
|
||
def test_is_creatable(self, request_mock): | ||
resource = stripe.radar.ValueListItem.create( | ||
value_list='rsl_123', | ||
value='value' | ||
) | ||
request_mock.assert_requested( | ||
'post', | ||
'/v1/radar/value_list_items' | ||
) | ||
assert isinstance(resource, stripe.radar.ValueListItem) | ||
|
||
def test_is_deletable(self, request_mock): | ||
resource = stripe.radar.ValueListItem.retrieve(TEST_RESOURCE_ID) | ||
resource.delete() | ||
request_mock.assert_requested( | ||
'delete', | ||
'/v1/radar/value_list_items/%s' % TEST_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