3f8a49e873
CLI, Verifier, Docs and Tests are updated Change-Id: I382bd1e1899b809743fad3250d66a036e7bac5f5
73 lines
2.5 KiB
Python
73 lines
2.5 KiB
Python
# 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 unittest
|
|
|
|
from tests.functional import utils
|
|
|
|
|
|
class PluginTestCase(unittest.TestCase):
|
|
|
|
def test_show_one(self):
|
|
rally = utils.Rally()
|
|
result = rally("plugin show Dummy.dummy")
|
|
self.assertIn("NAME", result)
|
|
self.assertIn("PLATFORM", result)
|
|
self.assertIn("Dummy.dummy", result)
|
|
self.assertIn("MODULE", result)
|
|
|
|
def test_show_multiple(self):
|
|
rally = utils.Rally()
|
|
result = rally("plugin show Dummy")
|
|
self.assertIn("Multiple plugins found:", result)
|
|
self.assertIn("Dummy.dummy", result)
|
|
self.assertIn("Dummy.dummy_exception", result)
|
|
self.assertIn("Dummy.dummy_random_fail_in_atomic", result)
|
|
|
|
def test_show_not_found(self):
|
|
rally = utils.Rally()
|
|
name = "Dummy666666"
|
|
result = rally("plugin show %s" % name)
|
|
self.assertIn("Plugin %s not found" % name, result)
|
|
|
|
def test_show_not_found_in_specific_platform(self):
|
|
rally = utils.Rally()
|
|
name = "Dummy"
|
|
platform = "non_existing"
|
|
result = rally(
|
|
"plugin show --name %(name)s --platform %(platform)s"
|
|
% {"name": name, "platform": platform})
|
|
self.assertIn(
|
|
"Plugin %(name)s@%(platform)s not found"
|
|
% {"name": name, "platform": platform},
|
|
result)
|
|
|
|
def test_list(self):
|
|
rally = utils.Rally()
|
|
result = rally("plugin list Dummy")
|
|
self.assertIn("Dummy.dummy", result)
|
|
self.assertIn("Dummy.dummy_exception", result)
|
|
self.assertIn("Dummy.dummy_random_fail_in_atomic", result)
|
|
|
|
def test_list_not_found_platform(self):
|
|
rally = utils.Rally()
|
|
result = rally("plugin list --platform some")
|
|
self.assertIn("Platform some not found", result)
|
|
|
|
def test_list_not_found_name(self):
|
|
rally = utils.Rally()
|
|
result = rally("plugin list Dummy2222")
|
|
self.assertIn("Plugin Dummy2222 not found", result)
|