mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
3b7f13c58e
* gomebrew: Move repeated logic from homebrew modules into module_utils Fixes #8323. * ghangelog + unit test improvement * Update changelogs/fragments/8323-refactor-homebrew-logic-module-utils.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
29 lines
968 B
Python
29 lines
968 B
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 absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
from ansible_collections.community.general.tests.unit.compat import unittest
|
|
from ansible_collections.community.general.plugins.module_utils.homebrew import HomebrewValidate
|
|
|
|
|
|
class TestHomebrewModule(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.brew_app_names = ["git-ssh", "awscli@1", "bash"]
|
|
|
|
self.invalid_names = [
|
|
"git ssh",
|
|
"git*",
|
|
]
|
|
|
|
def test_valid_package_names(self):
|
|
for name in self.brew_app_names:
|
|
self.assertTrue(HomebrewValidate.valid_package(name))
|
|
|
|
def test_invalid_package_names(self):
|
|
for name in self.invalid_names:
|
|
self.assertFalse(HomebrewValidate.valid_package(name))
|