1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
# Copyright 2015: Mirantis Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import io
from unittest import mock
import ddt
from rally.cli import cliutils
from rally.cli.commands import plugin as plugin_cmd
from rally.common.plugin import plugin
from rally.common import utils
from tests.unit import test
@ddt.ddt
class PluginCommandsTestCase(test.TestCase):
def setUp(self):
super(PluginCommandsTestCase, self).setUp()
self.plugin_cmd = plugin_cmd.PluginCommands()
@plugin.configure("p1", "p1_ns")
class Plugin1(plugin.Plugin):
"""T1.
Description of T1
:param x: x arg
:param y: y arg
"""
pass
self.Plugin1 = Plugin1
@plugin.configure("p2", "p2_ns")
class Plugin2(plugin.Plugin):
"""T2."""
pass
self.Plugin2 = Plugin2
@plugin.configure("p3", "p2_ns")
class Plugin3(plugin.Plugin):
"""T3."""
pass
self.Plugin3 = Plugin3
def tearDown(self):
super(PluginCommandsTestCase, self).tearDown()
self.Plugin1.unregister()
self.Plugin2.unregister()
self.Plugin3.unregister()
def test__print_plugins_list(self):
out = io.StringIO()
original_print_list = cliutils.print_list
def print_list(*args, **kwargs):
kwargs["out"] = out
original_print_list(*args, **kwargs)
with mock.patch.object(plugin_cmd.cliutils, "print_list",
new=print_list):
plugin_cmd.PluginCommands._print_plugins_list(
[self.Plugin1, self.Plugin2])
self.assertEqual(
"+-------------+------+----------+-------+\n"
"| Plugin base | Name | Platform | Title |\n"
"+-------------+------+----------+-------+\n"
"| Plugin | p1 | p1_ns | T1. |\n"
"| Plugin | p2 | p2_ns | T2. |\n"
"+-------------+------+----------+-------+\n", out.getvalue())
def test_show(self):
with utils.StdOutCapture() as out:
plugin_cmd.PluginCommands().show(None, "p1", "p1_ns")
output = out.getvalue()
self.assertIn("NAME\n\tp1", output)
self.assertIn("PLATFORM\n\tp1_ns", output)
self.assertIn("cli.commands.test_plugin", output)
self.assertIn("DESCRIPTION\n\tDescription of T1", output)
self.assertIn("PARAMETERS", output)
@ddt.data(
{
"name": "nonex",
"platform": None,
"text": "Plugin nonex not found at any platform\n"
},
{
"name": "nonexplugin",
"platform": "nonex",
"text": "Plugin nonexplugin@nonex not found\n"
}
)
@ddt.unpack
def test_show_not_found(self, name, platform, text):
with utils.StdOutCapture() as out:
plugin_cmd.PluginCommands().show(None, name, platform)
self.assertEqual(out.getvalue(), text)
@mock.patch("rally.cli.commands.plugin.PluginCommands._print_plugins_list")
def test_show_many(self, mock_plugin_commands__print_plugins_list):
with utils.StdOutCapture() as out:
with mock.patch("rally.cli.commands.plugin.plugin.Plugin."
"get_all") as mock_plugin_get_all:
mock_plugin_get_all.return_value = [self.Plugin2, self.Plugin3]
plugin_cmd.PluginCommands().show(None, "p", "p2_ns")
self.assertEqual("Multiple plugins found:\n", out.getvalue())
mock_plugin_get_all.assert_called_once_with(platform="p2_ns")
mock_plugin_commands__print_plugins_list.assert_called_once_with([
self.Plugin2, self.Plugin3])
@ddt.data(
{
"name": None,
"platform": "nonex",
"text": "Platform nonex not found\n"
},
{
"name": "p2",
"platform": "p1_ns",
"text": "Plugin p2 not found\n"
}
)
@ddt.unpack
def test_list_not_found(self, name, platform, text):
with utils.StdOutCapture() as out:
plugin_cmd.PluginCommands().list(None, name, platform)
self.assertEqual(text, out.getvalue())
@mock.patch("rally.cli.commands.plugin.PluginCommands._print_plugins_list")
def test_list(self, mock_plugin_commands__print_plugins_list):
plugin_cmd.PluginCommands().list(None, None, "p1_ns")
plugin_cmd.PluginCommands().list(None, "p1", "p1_ns")
plugin_cmd.PluginCommands().list(None, "p2", None)
mock_plugin_commands__print_plugins_list.assert_has_calls([
mock.call([self.Plugin1]),
mock.call([self.Plugin1]),
mock.call([self.Plugin2])
])
|