Example #1
0
    def test_failure(self, mocker):
        get_mock = mocker.patch.object(utils, "get")
        get_mock.side_effect = errors.Error("Bad error")
        set_module_args(name="demo")

        with pytest.raises(AnsibleFailJson):
            secret_info.main()
Example #2
0
    def test_get_all_secrets(self, mocker):
        get_mock = mocker.patch.object(utils, "get")
        get_mock.return_value = [
            {
                "spec": {
                    "k1": "v1"
                }
            },
            {
                "spec": {
                    "k2": "v2"
                }
            },
        ]
        set_module_args()

        with pytest.raises(AnsibleExitJson) as context:
            secret_info.main()

        _client, path = get_mock.call_args[0]
        assert path == "/api/enterprise/secrets/v1/namespaces/default/secrets"
        assert context.value.args[0]["objects"] == [
            {
                "k1": "v1"
            },
            {
                "k2": "v2"
            },
        ]
Example #3
0
    def test_missing_single_secret(self, mocker):
        get_mock = mocker.patch.object(utils, "get")
        get_mock.return_value = None
        set_module_args(name="demo")

        with pytest.raises(AnsibleExitJson) as context:
            secret_info.main()

        assert context.value.args[0]["objects"] == []
Example #4
0
    def test_get_single_secret(self, mocker):
        get_mock = mocker.patch.object(utils, "get")
        get_mock.return_value = {"spec": {"k3": "v3"}}
        set_module_args(name="demo", namespace="my")

        with pytest.raises(AnsibleExitJson) as context:
            secret_info.main()

        _client, path = get_mock.call_args[0]
        assert path == "/api/enterprise/secrets/v1/namespaces/my/secrets/demo"
        assert context.value.args[0]["objects"] == [{"k3": "v3"}]
Example #5
0
    def test_all_parameters(self, mocker):
        get_mock = mocker.patch.object(utils, "get")
        get_mock.return_value = {"spec": {"k1": "v1"}}
        set_module_args(
            auth=dict(
                user="******",
                password="******",
                url="http://127.0.0.1:1234",
                api_key="123-key",
                verify=False,
                ca_path="/tmp/ca.bundle",
            ),
            name="demo",
            namespace="ns",
        )

        with pytest.raises(AnsibleExitJson):
            secret_info.main()