mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
|
# (c) 2016, Adrian Likins <alikins@redhat.com>
|
||
|
#
|
||
|
# This file is part of Ansible
|
||
|
#
|
||
|
# Ansible is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# Ansible is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
# Make coding more python3-ish
|
||
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
from ansible.compat.six import PY3
|
||
|
from ansible.compat.tests import unittest
|
||
|
|
||
|
from nose.plugins.skip import SkipTest
|
||
|
|
||
|
if PY3:
|
||
|
raise SkipTest('galaxy is not ported to be py3 compatible yet')
|
||
|
|
||
|
from ansible.cli.galaxy import GalaxyCLI
|
||
|
|
||
|
class TestGalaxy(unittest.TestCase):
|
||
|
def setUp(self):
|
||
|
self.default_args = []
|
||
|
|
||
|
def test_init(self):
|
||
|
galaxy_cli = GalaxyCLI(args=self.default_args)
|
||
|
self.assertTrue(isinstance(galaxy_cli, GalaxyCLI))
|
||
|
|
||
|
def test_display_min(self):
|
||
|
gc = GalaxyCLI(args=self.default_args)
|
||
|
role_info = {'name': 'some_role_name'}
|
||
|
display_result = gc._display_role_info(role_info)
|
||
|
self.assertTrue(display_result.find('some_role_name') >-1)
|
||
|
|
||
|
def test_display_galaxy_info(self):
|
||
|
gc = GalaxyCLI(args=self.default_args)
|
||
|
galaxy_info = {}
|
||
|
role_info = {'name': 'some_role_name',
|
||
|
'galaxy_info': galaxy_info}
|
||
|
display_result = gc._display_role_info(role_info)
|
||
|
if display_result.find('\t\tgalaxy_tags:') > -1:
|
||
|
self.fail('Expected galaxy_tags to be indented twice')
|