Child: [b398ba] (diff)

Download this file

test_gravatar.py    28 lines (21 with data), 851 Bytes

 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
from urlparse import urlparse, parse_qs
from allura.tests import TestController
import allura.lib.gravatar as gravatar
class TestGravatar(TestController):
def test_id(self):
email = 'Wolf@example.com'
expected_id = 'd3514940ac1b2051c8aa42970d17e3fe'
actual_id = gravatar.id(email)
assert expected_id == actual_id
def test_url(self):
email = 'Wolf@example.com'
expected_id = 'd3514940ac1b2051c8aa42970d17e3fe'
url = urlparse(gravatar.url(email=email))
assert url.netloc == 'gravatar.com'
assert url.path == '/avatar/' + expected_id
def test_defaults(self):
email = 'Wolf@example.com'
url = urlparse(gravatar.url(email=email, rating='x'))
query = parse_qs(url.query)
assert 'r' not in query
assert query['rating'] == ['x']