def test_failure(self, mocker): get_mock = mocker.patch.object(utils, "get") get_mock.side_effect = errors.Error("Bad error") set_module_args(name="sample-mutator") with pytest.raises(AnsibleFailJson): mutator_info.main()
def test_missing_single_mutator(self, mocker): get_mock = mocker.patch.object(utils, "get") get_mock.return_value = None set_module_args(name="sample-mutator") with pytest.raises(AnsibleExitJson) as context: mutator_info.main() assert context.value.args[0]["objects"] == []
def test_get_single_mutator(self, mocker): get_mock = mocker.patch.object(utils, "get") get_mock.return_value = 4 set_module_args(name="sample-mutator") with pytest.raises(AnsibleExitJson) as context: mutator_info.main() _client, path = get_mock.call_args[0] assert path == "/api/core/v2/namespaces/default/mutators/sample-mutator" assert context.value.args[0]["objects"] == [4]
def test_get_all_mutators(self, mocker): get_mock = mocker.patch.object(utils, "get") get_mock.return_value = [1, 2, 3] set_module_args(namespace="my") with pytest.raises(AnsibleExitJson) as context: mutator_info.main() _client, path = get_mock.call_args[0] assert path == "/api/core/v2/namespaces/my/mutators" assert context.value.args[0]["objects"] == [1, 2, 3]