test_profile.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2016 OpenMarket Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. from tests import unittest
  16. from twisted.internet import defer
  17. from synapse.storage.profile import ProfileStore
  18. from synapse.types import UserID
  19. from tests.utils import setup_test_homeserver
  20. class ProfileStoreTestCase(unittest.TestCase):
  21. @defer.inlineCallbacks
  22. def setUp(self):
  23. hs = yield setup_test_homeserver()
  24. self.store = ProfileStore(None, hs)
  25. self.u_frank = UserID.from_string("@frank:test")
  26. @defer.inlineCallbacks
  27. def test_displayname(self):
  28. yield self.store.create_profile(
  29. self.u_frank.localpart
  30. )
  31. yield self.store.set_profile_displayname(
  32. self.u_frank.localpart, "Frank"
  33. )
  34. self.assertEquals(
  35. "Frank",
  36. (yield self.store.get_profile_displayname(self.u_frank.localpart))
  37. )
  38. @defer.inlineCallbacks
  39. def test_avatar_url(self):
  40. yield self.store.create_profile(
  41. self.u_frank.localpart
  42. )
  43. yield self.store.set_profile_avatar_url(
  44. self.u_frank.localpart, "http://my.site/here"
  45. )
  46. self.assertEquals(
  47. "http://my.site/here",
  48. (yield self.store.get_profile_avatar_url(self.u_frank.localpart))
  49. )