Also test avatar_url profile field

This commit is contained in:
Paul "LeoNerd" Evans 2014-09-10 16:49:34 +01:00
parent 6081f4947e
commit 53d0f69dc3

View file

@ -76,3 +76,17 @@ class ProfileStoreTestCase(unittest.TestCase):
name = yield self.store.get_profile_displayname(self.u_frank.localpart)
self.assertEquals("Frank", name)
@defer.inlineCallbacks
def test_avatar_url(self):
yield self.store.create_profile(
self.u_frank.localpart
)
yield self.store.set_profile_avatar_url(
self.u_frank.localpart, "http://my.site/here"
)
name = yield self.store.get_profile_avatar_url(self.u_frank.localpart)
self.assertEquals("http://my.site/here", name)