mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
100 lines
3.7 KiB
Python
100 lines
3.7 KiB
Python
# Copyright (c) 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 annotations
|
|
|
|
from ansible_collections.community.internal_test_tools.tests.unit.plugins.modules.utils import (
|
|
AnsibleExitJson,
|
|
AnsibleFailJson,
|
|
ModuleTestCase,
|
|
set_module_args,
|
|
)
|
|
from httmock import response, urlmatch, with_httmock
|
|
|
|
from ansible_collections.community.general.plugins.modules import dnsimple_info
|
|
|
|
|
|
@urlmatch(netloc="(.)*dnsimple.com(.)*", path="/v2/[0-9]*/zones/")
|
|
def zones_resp(url, request):
|
|
"""return domains"""
|
|
headers = {"content-type": "application/json"}
|
|
data_content = {
|
|
"data": [
|
|
{
|
|
"account_id": "1234",
|
|
},
|
|
],
|
|
"pagination": {"total_pages": 1},
|
|
}
|
|
content = data_content
|
|
return response(200, content, headers, None, 5, request)
|
|
|
|
|
|
@urlmatch(netloc="(.)*dnsimple.com(.)*", path="/v2/[0-9]*/zones/(.)*/records(.*)")
|
|
def records_resp(url, request):
|
|
"""return record(s)"""
|
|
headers = {"content-type": "application/json"}
|
|
data_content = {"data": [{"content": "example", "name": "example.com"}], "pagination": {"total_pages": 1}}
|
|
content = data_content
|
|
return response(200, content, headers, None, 5, request)
|
|
|
|
|
|
class TestDNSimple_Info(ModuleTestCase):
|
|
"""Main class for testing dnsimple module."""
|
|
|
|
def setUp(self):
|
|
"""Setup."""
|
|
super().setUp()
|
|
self.module = dnsimple_info
|
|
|
|
def tearDown(self):
|
|
"""Teardown."""
|
|
super().tearDown()
|
|
|
|
def test_with_no_parameters(self):
|
|
"""Failure must occurs when all parameters are missing"""
|
|
with self.assertRaises(AnsibleFailJson):
|
|
with set_module_args({}):
|
|
self.module.main()
|
|
|
|
@with_httmock(zones_resp)
|
|
def test_only_key_and_account(self):
|
|
"""key and account will pass, returns domains"""
|
|
account_id = "1234"
|
|
with self.assertRaises(AnsibleExitJson) as exc_info:
|
|
with set_module_args({"api_key": "abcd1324", "account_id": account_id}):
|
|
self.module.main()
|
|
result = exc_info.exception.args[0]
|
|
# nothing should change
|
|
self.assertFalse(result["changed"])
|
|
# we should return at least one item with the matching account ID
|
|
assert result["dnsimple_domain_info"][0]["account_id"] == account_id
|
|
|
|
@with_httmock(records_resp)
|
|
def test_only_name_without_record(self):
|
|
"""name and no record should not fail, returns the record"""
|
|
name = "example.com"
|
|
with self.assertRaises(AnsibleExitJson) as exc_info:
|
|
with set_module_args({"api_key": "abcd1324", "name": "example.com", "account_id": "1234"}):
|
|
self.module.main()
|
|
result = exc_info.exception.args[0]
|
|
# nothing should change
|
|
self.assertFalse(result["changed"])
|
|
# we should return at least one item with matching domain
|
|
assert result["dnsimple_records_info"][0]["name"] == name
|
|
|
|
@with_httmock(records_resp)
|
|
def test_name_and_record(self):
|
|
"""name and record should not fail, returns the record"""
|
|
record = "example"
|
|
with self.assertRaises(AnsibleExitJson) as exc_info:
|
|
with set_module_args(
|
|
{"api_key": "abcd1324", "account_id": "1234", "name": "example.com", "record": "example"}
|
|
):
|
|
self.module.main()
|
|
result = exc_info.exception.args[0]
|
|
# nothing should change
|
|
self.assertFalse(result["changed"])
|
|
# we should return at least one item and content should match
|
|
assert result["dnsimple_record_info"][0]["content"] == record
|