ceph/qa/tasks/mgr/dashboard/test_summary.py
Kefu Chai b0bdbc3414 qa/tasks/mgr: partial revert of 'import with full path'
this change partially reverts #34139

using relative import helps with readability and ease the pain to write
down the full parent module name

in #34139, all relative imports were replaced with full path, because we
were using following code to verify if the code is python3 compatible:

```
  mod_spec = importlib.util.spec_from_file_location(mod_name, path)
  mod = importlib.util.module_from_spec(mod_spec)
  mod_spec.loader.exec_module(mod)
```

but this does not work with submodule which can import using relative
import without specifying the name of the package and its parent module.

Signed-off-by: Kefu Chai <kchai@redhat.com>
2020-03-26 14:37:06 +08:00

40 lines
1.4 KiB
Python

from __future__ import absolute_import
from .helper import DashboardTestCase
class SummaryTest(DashboardTestCase):
CEPHFS = True
def test_summary(self):
data = self._get("/api/summary")
self.assertStatus(200)
self.assertIn('health_status', data)
self.assertIn('mgr_id', data)
self.assertIn('have_mon_connection', data)
self.assertIn('rbd_mirroring', data)
self.assertIn('executing_tasks', data)
self.assertIn('finished_tasks', data)
self.assertIn('version', data)
self.assertIsNotNone(data['health_status'])
self.assertIsNotNone(data['mgr_id'])
self.assertIsNotNone(data['have_mon_connection'])
self.assertEqual(data['rbd_mirroring'], {'errors': 0, 'warnings': 0})
@DashboardTestCase.RunAs('test', 'test', ['pool-manager'])
def test_summary_permissions(self):
data = self._get("/api/summary")
self.assertStatus(200)
self.assertIn('health_status', data)
self.assertIn('mgr_id', data)
self.assertIn('have_mon_connection', data)
self.assertNotIn('rbd_mirroring', data)
self.assertIn('executing_tasks', data)
self.assertIn('finished_tasks', data)
self.assertIn('version', data)
self.assertIsNotNone(data['health_status'])
self.assertIsNotNone(data['mgr_id'])
self.assertIsNotNone(data['have_mon_connection'])