summaryrefslogtreecommitdiff
path: root/test/units/module_utils/common/validation/test_check_missing_parameters.py
blob: 364f9439f4335af94bb2f3fb6e207b10b03e1ff1 (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 -*-
# Copyright: (c) 2021, Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from __future__ import absolute_import, division, print_function

__metaclass__ = type

import pytest

from ansible.module_utils.common.text.converters import to_native
from ansible.module_utils.common.validation import check_missing_parameters


def test_check_missing_parameters():
    assert check_missing_parameters([], {}) == []


def test_check_missing_parameters_list():
    expected = "missing required arguments: path"

    with pytest.raises(TypeError) as e:
        check_missing_parameters({}, ["path"])

    assert to_native(e.value) == expected


def test_check_missing_parameters_positive():
    assert check_missing_parameters({"path": "/foo"}, ["path"]) == []