Пример #1
0
def test_chaosansible_probe_default():
    result = chaosansible_probe()

    jsonresult = json.loads(result)

    assert type(jsonresult['localhost']
                ['facts']) is dict and not jsonresult['localhost']['facts']
Пример #2
0
def test_chaosansible_probe_factsonly():
    result = chaosansible_probe(facts=True)

    jsonresult = json.loads(result)

    assert type(jsonresult['localhost']
                ['facts']) is dict and jsonresult['localhost']['facts']
def test_chaosansible_probe_default():
    result = chaosansible_probe()

    jsonresult = json.loads(result)

    assert (
        type(jsonresult["localhost"]["facts"]) is dict
        and not jsonresult["localhost"]["facts"]
    )
def test_chaosansible_probe_factsonly():
    result = chaosansible_probe(facts=True)

    jsonresult = json.loads(result)

    assert (
        type(jsonresult["localhost"]["facts"]) is dict
        and jsonresult["localhost"]["facts"]
    )
Пример #5
0
def test_chaosansible_probe_become_id():
    result = chaosansible_probe(become=True,
                                ansible={
                                    'module': 'shell',
                                    'args': 'id'
                                })

    jsonresult = json.loads(result)

    assert jsonresult['localhost'][
        'task'] == 'uid=0(root) gid=0(root) groups=0(root)'
def test_chaosansible_probe_become_id():
    result = chaosansible_probe(become=True, ansible={"module": "shell", "args": "id"})

    jsonresult = json.loads(result)

    assert jsonresult["localhost"]["task"] == "uid=0(root) gid=0(root) groups=0(root)"