blob: 5cc2fabaf49b6ba9e2f8fb689ace1e4d869971b7 (
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
|
import pytest
from cephadm.services.osd import RemoveUtil, OSD
from mock import mock
from .fixtures import with_cephadm_module
from cephadm import CephadmOrchestrator
from typing import Generator
@pytest.fixture()
def cephadm_module() -> Generator[CephadmOrchestrator, None, None]:
with with_cephadm_module({}) as m:
yield m
@pytest.fixture()
def rm_util():
with with_cephadm_module({}) as m:
r = RemoveUtil.__new__(RemoveUtil)
r.__init__(m)
yield r
@pytest.fixture()
def osd_obj():
with mock.patch("cephadm.services.osd.RemoveUtil"):
o = OSD(0, mock.MagicMock())
yield o
|