1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
import pytest
import responses
from sparkpost import SparkPost
from sparkpost import RecipientLists
from sparkpost.exceptions import SparkPostAPIException
def test_translate_keys_with_id():
t = RecipientLists('uri', 'key')
results = t._translate_keys(id='test_id')
assert results['id'] == 'test_id'
@responses.activate
def test_success_create():
responses.add(
responses.POST,
'https://api.sparkpost.com/api/v1/recipient-lists',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
results = sp.recipient_lists.create()
assert results == 'yay'
@responses.activate
def test_fail_create():
responses.add(
responses.POST,
'https://api.sparkpost.com/api/v1/recipient-lists',
status=500,
content_type='application/json',
body="""
{"errors": [{"message": "You failed", "description": "More Info"}]}
"""
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
sp.recipient_lists.create()
@responses.activate
def test_success_update():
responses.add(
responses.PUT,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
results = sp.recipient_lists.update('foobar', name='foobar')
assert results == 'yay'
@responses.activate
def test_fail_update():
responses.add(
responses.PUT,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=500,
content_type='application/json',
body="""
{"errors": [{"message": "You failed", "description": "More Info"}]}
"""
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
sp.recipient_lists.update('foobar', name='foobar')
@responses.activate
def test_success_delete():
responses.add(
responses.DELETE,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
results = sp.recipient_lists.delete('foobar')
assert results == 'yay'
@responses.activate
def test_fail_delete():
responses.add(
responses.DELETE,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=500,
content_type='application/json',
body="""
{"errors": [{"message": "You failed", "description": "More Info"}]}
"""
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
sp.recipient_lists.delete('foobar')
@responses.activate
def test_success_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
results = sp.recipient_lists.get('foobar')
assert results == "yay"
@responses.activate
def test_success_get_with_recipients():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
results = sp.recipient_lists.get('foobar', True)
assert results == "yay"
@responses.activate
def test_fail_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/recipient-lists/foobar',
status=404,
content_type='application/json',
body="""
{"errors": [{"message": "cant find", "description": "where you go"}]}
"""
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
sp.recipient_lists.get('foobar')
@responses.activate
def test_success_list():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/recipient-lists',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
response = sp.recipient_lists.list()
assert response == "yay"
|