From 1fb39dbe6f44a1f7c6c43019c165aa2b24fb8b99 Mon Sep 17 00:00:00 2001 From: Ranjitha G Date: Sat, 27 Oct 2018 21:57:03 +0530 Subject: [PATCH] mgr/dashboard: Add unit test case for controller/erasure_code_profile.py Signed-off-by: Ranjitha G --- .../tests/test_erasure_code_profile.py | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/pybind/mgr/dashboard/tests/test_erasure_code_profile.py 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 000000000000..804a5314d521 --- /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'}) -- 2.47.3