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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
import base64
import json
import os
import tempfile
import pytest
from sparkpost.tornado import SparkPost, SparkPostAPIException
from tornado import ioloop
from .utils import AsyncClientMock
responses = AsyncClientMock()
@responses.activate
def test_success_send():
responses.add(
responses.POST,
'https://api.sparkpost.com/api/v1/transmissions',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
results = ioloop.IOLoop().run_sync(sp.transmission.send)
assert results == 'yay'
@responses.activate
def test_success_send_with_attachments():
try:
# Let's compare unicode for Python 2 / 3 compatibility
test_content = "Hello \nWorld\n"
(_, temp_file_path) = tempfile.mkstemp()
with open(temp_file_path, "w") as temp_file:
temp_file.write(test_content)
responses.add(
responses.POST,
'https://api.sparkpost.com/api/v1/transmissions',
status=200,
content_type='application/json',
body='{"results": "yay"}'
)
sp = SparkPost('fake-key')
attachment = {
"name": "test.txt",
"type": "text/plain",
"filename": temp_file_path
}
def send():
return sp.transmission.send(attachments=[attachment])
results = ioloop.IOLoop().run_sync(send)
request_params = json.loads(responses.calls[0].request.body)
content = base64.b64decode(
request_params["content"]["attachments"][0]["data"])
# Let's compare unicode for Python 2 / 3 compatibility
assert test_content == content.decode("ascii")
assert results == 'yay'
attachment = {
"name": "test.txt",
"type": "text/plain",
"data": base64.b64encode(
test_content.encode("ascii")).decode("ascii")
}
def send():
return sp.transmission.send(attachments=[attachment])
results = ioloop.IOLoop().run_sync(send)
request_params = json.loads(responses.calls[1].request.body)
content = base64.b64decode(
request_params["content"]["attachments"][0]["data"])
# Let's compare unicode for Python 2 / 3 compatibility
assert test_content == content.decode("ascii")
assert results == 'yay'
finally:
os.unlink(temp_file_path)
@responses.activate
def test_fail_send():
responses.add(
responses.POST,
'https://api.sparkpost.com/api/v1/transmissions',
status=500,
content_type='application/json',
body="""
{"errors": [{"message": "You failed", "description": "More Info"}]}
"""
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
ioloop.IOLoop().run_sync(sp.transmission.send)
@responses.activate
def test_success_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/transmissions/foobar',
status=200,
content_type='application/json',
body='{"results": {"transmission": {}}}'
)
sp = SparkPost('fake-key')
def send():
return sp.transmission.get('foobar')
results = ioloop.IOLoop().run_sync(send, timeout=3)
assert results == {}
@responses.activate
def test_fail_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/transmissions/foobar',
status=404,
content_type='application/json',
body="""
{"errors": [{"message": "cant find", "description": "where you go"}]}
"""
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
def send():
return sp.transmission.get('foobar')
ioloop.IOLoop().run_sync(send, timeout=3)
@responses.activate
def test_nocontent_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/transmissions',
status=204,
content_type='application/json',
body=''
)
sp = SparkPost('fake-key')
response = ioloop.IOLoop().run_sync(sp.transmission.list)
assert response is True
@responses.activate
def test_brokenjson_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/transmissions',
status=200,
content_type='application/json',
body='{"results":'
)
with pytest.raises(SparkPostAPIException):
sp = SparkPost('fake-key')
ioloop.IOLoop().run_sync(sp.transmission.list)
@responses.activate
def test_noresults_get():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/transmissions',
status=200,
content_type='application/json',
body='{"ok": false}'
)
sp = SparkPost('fake-key')
response = ioloop.IOLoop().run_sync(sp.transmission.list)
assert response == {"ok": False}
@responses.activate
def test_success_list():
responses.add(
responses.GET,
'https://api.sparkpost.com/api/v1/transmissions',
status=200,
content_type='application/json',
body='{"results": []}'
)
sp = SparkPost('fake-key')
response = ioloop.IOLoop().run_sync(sp.transmission.list)
assert response == []
|