mirror of
https://github.com/ceph/ceph
synced 2025-01-06 03:01:24 +00:00
01a1a1ff84
Signed-off-by: Ricardo Dias <rdias@suse.com>
26 lines
730 B
Python
26 lines
730 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
|
|
from .helper import DashboardTestCase
|
|
|
|
|
|
class MonitorTest(DashboardTestCase):
|
|
AUTH_ROLES = ['cluster-manager']
|
|
|
|
@DashboardTestCase.RunAs('test', 'test', ['block-manager'])
|
|
def test_access_permissions(self):
|
|
self._get('/api/monitor')
|
|
self.assertStatus(403)
|
|
|
|
|
|
def test_monitor_default(self):
|
|
data = self._get("/api/monitor")
|
|
self.assertStatus(200)
|
|
|
|
self.assertIn('mon_status', data)
|
|
self.assertIn('in_quorum', data)
|
|
self.assertIn('out_quorum', data)
|
|
self.assertIsNotNone(data['mon_status'])
|
|
self.assertIsNotNone(data['in_quorum'])
|
|
self.assertIsNotNone(data['out_quorum'])
|