summaryrefslogtreecommitdiff
path: root/tempest/cli/simple_read_only/compute/test_nova_manage.py
blob: c27b12e30be4da34fe892cb6b09fdec9371baa79 (plain)
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
# Copyright 2013 OpenStack Foundation
# 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.

from tempest import cli
from tempest import config
from tempest import exceptions
from tempest.openstack.common import log as logging


CONF = config.CONF
LOG = logging.getLogger(__name__)


class SimpleReadOnlyNovaManageTest(cli.ClientTestBase):

    """
    This is a first pass at a simple read only nova-manage test. This
    only exercises client commands that are read only.

    This should test commands:
    * with and without optional parameters
    * initially just check return codes, and later test command outputs

    """

    @classmethod
    def setUpClass(cls):
        if not CONF.service_available.nova:
            msg = ("%s skipped as Nova is not available" % cls.__name__)
            raise cls.skipException(msg)
        if not CONF.cli.has_manage:
            msg = ("%s skipped as *-manage commands not available"
                   % cls.__name__)
            raise cls.skipException(msg)
        super(SimpleReadOnlyNovaManageTest, cls).setUpClass()

    def test_admin_fake_action(self):
        self.assertRaises(exceptions.CommandFailed,
                          self.nova_manage,
                          'this-does-nova-exist')

    # NOTE(jogo): Commands in order listed in 'nova-manage -h'

    # test flags
    def test_help_flag(self):
        self.nova_manage('', '-h')

    def test_version_flag(self):
        # Bug 1159957: nova-manage --version writes to stderr
        self.assertNotEqual("", self.nova_manage('', '--version',
                                                 merge_stderr=True))
        self.assertEqual(self.nova_manage('version'),
                         self.nova_manage('', '--version', merge_stderr=True))

    def test_debug_flag(self):
        self.assertNotEqual("", self.nova_manage('flavor list',
                            '--debug'))

    def test_verbose_flag(self):
        self.assertNotEqual("", self.nova_manage('flavor list',
                            '--verbose'))

    # test actions
    def test_version(self):
        self.assertNotEqual("", self.nova_manage('version'))

    def test_flavor_list(self):
        self.assertNotEqual("", self.nova_manage('flavor list'))

    def test_db_sync(self):
        # make sure command doesn't error out
        self.nova_manage('db sync')

    def test_db_version(self):
        self.assertNotEqual("", self.nova_manage('db version'))

    def test_cell_list(self):
        # make sure command doesn't error out
        self.nova_manage('cell list')

    def test_host_list(self):
        # make sure command doesn't error out
        self.nova_manage('host list')