Start nova-manage simple read only test Change-Id: I4f52e804220b0b9d1357ee6b8b034e48d82f0aee
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# 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.
|
|
|
|
import logging
|
|
import subprocess
|
|
|
|
import testtools
|
|
|
|
import cli
|
|
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
def test_admin_fake_action(self):
|
|
self.assertRaises(subprocess.CalledProcessError,
|
|
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')
|
|
|
|
@testtools.skip("version is empty, bug 1138844")
|
|
def test_version_flag(self):
|
|
self.assertNotEqual("", self.nova_manage('', '--version'))
|
|
|
|
# test actions
|
|
def test_version(self):
|
|
self.assertNotEqual("", self.nova_manage('version'))
|
|
|
|
def test_flavor_list(self):
|
|
self.assertNotEqual("", self.nova_manage('flavor list'))
|