2020-07-21 22:37:01 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2020 Orion Poplawski <orion@nwra.com>
|
2022-08-07 13:37:23 +02:00
|
|
|
# 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
|
2020-07-21 22:37:01 +02:00
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from ansible_collections.community.general.plugins.inventory.cobbler import InventoryModule
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def inventory():
|
|
|
|
return InventoryModule()
|
|
|
|
|
|
|
|
|
|
|
|
def test_init_cache(inventory):
|
|
|
|
inventory._init_cache()
|
|
|
|
assert inventory._cache[inventory.cache_key] == {}
|
|
|
|
|
|
|
|
|
2021-06-10 22:05:04 +02:00
|
|
|
def test_verify_file(tmp_path, inventory):
|
|
|
|
file = tmp_path / "foobar.cobbler.yml"
|
|
|
|
file.touch()
|
|
|
|
assert inventory.verify_file(str(file)) is True
|
|
|
|
|
|
|
|
|
2020-07-21 22:37:01 +02:00
|
|
|
def test_verify_file_bad_config(inventory):
|
2021-06-10 22:05:04 +02:00
|
|
|
assert inventory.verify_file('foobar.cobbler.yml') is False
|