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
30
31
32
33
34
35
36
37
38
39
40
|
import pytest
from ..module import forall_hosts
class TestCompletion(object):
@pytest.mark.parametrize("input,expected", [
([], []),
([1], ["(1,)"]),
(["hallo"], ["('hallo',)"]),
("hi", ["('h',)", "('i',)"]),
(list(range(5)), [str((x, )) for x in range(5)]),
([(1, 2), (3, 4)], ["(1, 2)", "(3, 4)"]),
])
def test_async_map(self, input, expected, cephadm_module):
@forall_hosts
def run_forall(*args):
return str(args)
assert run_forall(input) == expected
@pytest.mark.parametrize("input,expected", [
([], []),
([1], ["(1,)"]),
(["hallo"], ["('hallo',)"]),
("hi", ["('h',)", "('i',)"]),
(list(range(5)), [str((x, )) for x in range(5)]),
([(1, 2), (3, 4)], ["(1, 2)", "(3, 4)"]),
])
def test_async_map_self(self, input, expected, cephadm_module):
class Run(object):
def __init__(self):
self.attr = 1
@forall_hosts
def run_forall(self, *args):
assert self.attr == 1
return str(args)
assert Run().run_forall(input) == expected
|