summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/tests/test_erasure_code_profile.py
blob: d1b032a514f30cdd33b773803d6b241495705214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-

from .. import mgr
from ..controllers.erasure_code_profile import ErasureCodeProfile
from ..tests import ControllerTestCase


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]
        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'}])