12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import pytest
- from yandex_music import Dashboard
- @pytest.fixture(scope='class')
- def dashboard(station_result):
- return Dashboard(TestDashboard.dashboard_id, [station_result], TestDashboard.pumpkin)
- class TestDashboard:
- dashboard_id = '1573229923780896-4168369461406125948'
- pumpkin = False
- def test_expected_values(self, dashboard, station_result):
- assert dashboard.dashboard_id == self.dashboard_id
- assert dashboard.stations == [station_result]
- assert dashboard.pumpkin == self.pumpkin
- def test_de_json_none(self, client):
- assert Dashboard.de_json({}, client) is None
- def test_de_json_required(self, client, station_result):
- json_dict = {'dashboard_id': self.dashboard_id, 'stations': [station_result.to_dict()], 'pumpkin': self.pumpkin}
- dashboard = Dashboard.de_json(json_dict, client)
- assert dashboard.dashboard_id == self.dashboard_id
- assert dashboard.stations == [station_result]
- assert dashboard.pumpkin == self.pumpkin
- def test_de_json_all(self, client, station_result):
- json_dict = {'dashboard_id': self.dashboard_id, 'stations': [station_result.to_dict()], 'pumpkin': self.pumpkin}
- dashboard = Dashboard.de_json(json_dict, client)
- assert dashboard.dashboard_id == self.dashboard_id
- assert dashboard.stations == [station_result]
- assert dashboard.pumpkin == self.pumpkin
- def test_equality(self, station):
- a = Dashboard(self.dashboard_id, [station], self.pumpkin)
- b = Dashboard('', [station], True)
- c = Dashboard(self.dashboard_id, [station], self.pumpkin)
- assert a != b
- assert hash(a) != hash(b)
- assert a is not b
- assert a == c
|