diff options
-rw-r--r-- | src/pybind/mgr/dashboard/tests/test_erasure_code_profile.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/pybind/mgr/dashboard/tests/test_erasure_code_profile.py b/src/pybind/mgr/dashboard/tests/test_erasure_code_profile.py new file mode 100644 index 00000000000..804a5314d52 --- /dev/null +++ b/src/pybind/mgr/dashboard/tests/test_erasure_code_profile.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- + +from .. import mgr +from .helper import ControllerTestCase +from ..controllers.erasure_code_profile import ErasureCodeProfile + + +class ErasureCodeProfileTest(ControllerTestCase): + @classmethod + def setup_server(cls): + mgr.get.side_effect = lambda key: { + 'osd_map': { + 'erasure_code_profiles': { + 'test': { + 'k': '2', + 'm': '1' + } + } + }, + 'health': {'json': '{"status": 1}'}, + 'fs_map': {'filesystems': []}, + + }[key] + # pylint: disable=protected-access + ErasureCodeProfile._cp_config['tools.authenticate.on'] = False + cls.setup_controllers([ErasureCodeProfile]) + + def test_list(self): + self._get('/api/erasure_code_profile') + self.assertStatus(200) + self.assertJsonBody([{'k': 2, 'm': 1, 'name': 'test'}]) + + def test_get(self): + self._get('/api/erasure_code_profile/test') + self.assertStatus(200) + self.assertJsonBody({'k': 2, 'm': 1, 'name': 'test'}) |