mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
* add 1password_ssh_key lookup
* refactor
* Delete onepassword_ssh_key.py
* Revert "Delete onepassword_ssh_key.py"
This reverts commit e17ff7e232
.
* Delete onepassword_ssh_key.py
* add tests
* add test license
* cleanup
* refactor
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* fix indentation
* fix RETURN indentation
* use get_option to get ssh_format
* linting
* update project year in copyright
* add plugin to BOTMETA.yml
* use OnePassCLIv2's get_raw and use OnePass's token
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
# Copyright (c) 2025 Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import json
|
|
import pytest
|
|
|
|
from .onepassword_common import SSH_KEY_MOCK_ENTRIES
|
|
|
|
from ansible.plugins.loader import lookup_loader
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("vault", "queries", "kwargs", "output", "expected"),
|
|
(
|
|
(item["vault_name"], item["queries"], item.get("kwargs", {}), item["output"], item["expected"])
|
|
for item in SSH_KEY_MOCK_ENTRIES
|
|
)
|
|
)
|
|
def test_ssh_key(mocker, vault, queries, kwargs, output, expected):
|
|
mocker.patch("ansible_collections.community.general.plugins.lookup.onepassword.OnePass.assert_logged_in", return_value=True)
|
|
mocker.patch("ansible_collections.community.general.plugins.lookup.onepassword.OnePassCLIBase._run", return_value=(0, json.dumps(output), ""))
|
|
|
|
op_lookup = lookup_loader.get("community.general.onepassword_ssh_key")
|
|
result = op_lookup.run(queries, vault=vault, **kwargs)
|
|
|
|
assert result == expected
|