test_description.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. from yandex_music import Description
  2. class TestDescription:
  3. text = (
  4. 'Американский певец и актёр, один из самых коммерчески успешных исполнителей популярной музыки XX века. '
  5. 'Также известен как «король рок-н-ролла». Пресли популяризовал рок-н-ролл, хотя и не был первым '
  6. 'исполнителем этого жанра. '
  7. )
  8. uri = 'http://ru.wikipedia.org/wiki/Пресли, Элвис'
  9. def test_expected_values(self, description):
  10. assert description.text == self.text
  11. assert description.uri == self.uri
  12. def test_de_json_none(self, client):
  13. assert Description.de_json({}, client) is None
  14. def test_de_json_required(self, client):
  15. json_dict = {'text': self.text}
  16. description = Description.de_json(json_dict, client)
  17. assert description.text == self.text
  18. def test_de_json_all(self, client):
  19. json_dict = {'text': self.text, 'uri': self.uri}
  20. description = Description.de_json(json_dict, client)
  21. assert description.text == self.text
  22. assert description.uri == self.uri
  23. def test_equality(self):
  24. a = Description(self.text, self.uri)
  25. b = Description('', self.uri)
  26. c = Description(self.text, '')
  27. d = Description(self.text, self.uri)
  28. assert a != b != c
  29. assert hash(a) != hash(b) != hash(c)
  30. assert a is not b is not c
  31. assert a == d