mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Some checks failed
EOL CI / EOL Sanity (Ⓐ2.13) (push) Has been cancelled
EOL CI / EOL Sanity (Ⓐ2.14) (push) Has been cancelled
EOL CI / EOL Sanity (Ⓐ2.15) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.13+py2.7) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.13+py3.8) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.14+py3.9) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+fedora35+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+fedora35+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+fedora35+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+opensuse15py2+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+opensuse15py2+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.13+opensuse15py2+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.14+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.14+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.14+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Has been cancelled
import-galaxy / Test to import built collection artifact with Galaxy importer (push) Has been cancelled
Verify REUSE / check (push) Has been cancelled
* Unit tests: replace mock and compat with code from community.internal_test_tools (#9921) * Replace compat with equivalent from community.internal_test_tools. * Replace mock with equivalent from community.internal_test_tools. * Remove ignore.txt entries. * Add test that's no longer present in later versions.
64 lines
2.4 KiB
Python
64 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# 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 absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
from ansible_collections.community.general.plugins.modules import dnsimple as dnsimple_module
|
|
from ansible_collections.community.internal_test_tools.tests.unit.plugins.modules.utils import AnsibleFailJson, ModuleTestCase, set_module_args
|
|
from ansible_collections.community.internal_test_tools.tests.unit.compat.mock import patch
|
|
import pytest
|
|
import sys
|
|
|
|
dnsimple = pytest.importorskip('dnsimple')
|
|
mandatory_py_version = pytest.mark.skipif(
|
|
sys.version_info < (3, 6),
|
|
reason='The dnsimple dependency requires python3.6 or higher'
|
|
)
|
|
|
|
from dnsimple import DNSimpleException
|
|
|
|
|
|
class TestDNSimple(ModuleTestCase):
|
|
"""Main class for testing dnsimple module."""
|
|
|
|
def setUp(self):
|
|
"""Setup."""
|
|
super(TestDNSimple, self).setUp()
|
|
self.module = dnsimple_module
|
|
|
|
def tearDown(self):
|
|
"""Teardown."""
|
|
super(TestDNSimple, self).tearDown()
|
|
|
|
def test_without_required_parameters(self):
|
|
"""Failure must occurs when all parameters are missing"""
|
|
with self.assertRaises(AnsibleFailJson):
|
|
with set_module_args({}):
|
|
self.module.main()
|
|
|
|
@patch('dnsimple.service.Identity.whoami')
|
|
def test_account_token(self, mock_whoami):
|
|
mock_whoami.return_value.data.account = 42
|
|
ds = self.module.DNSimpleV2('fake', 'fake', True, self.module)
|
|
self.assertEqual(ds.account, 42)
|
|
|
|
@patch('dnsimple.service.Accounts.list_accounts')
|
|
@patch('dnsimple.service.Identity.whoami')
|
|
def test_user_token_multiple_accounts(self, mock_whoami, mock_accounts):
|
|
mock_accounts.return_value.data = [1, 2, 3]
|
|
mock_whoami.return_value.data.account = None
|
|
with self.assertRaises(DNSimpleException):
|
|
self.module.DNSimpleV2('fake', 'fake', True, self.module)
|
|
|
|
@patch('dnsimple.service.Accounts.list_accounts')
|
|
@patch('dnsimple.service.Identity.whoami')
|
|
def test_user_token_single_account(self, mock_whoami, mock_accounts):
|
|
mock_accounts.return_value.data = [42]
|
|
mock_whoami.return_value.data.account = None
|
|
ds = self.module.DNSimpleV2('fake', 'fake', True, self.module)
|
|
self.assertEqual(ds.account, 42)
|