
Functional tests have been failing since a chance went into nova that removed the cloudpipe functionality. This change removes the sole functional test that depended on that API, and ensures that all the cloudpipe interfaces are marked deprecated and emit proper warnings. Change-Id: I329ee0e5fcf068ea7e54b99fbaf94a524647f660
131 lines
4.0 KiB
Python
131 lines
4.0 KiB
Python
# 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.lib import decorators
|
|
from tempest.lib import exceptions
|
|
|
|
from novaclient.tests.functional import base
|
|
|
|
|
|
class SimpleReadOnlyNovaClientTest(base.ClientTestBase):
|
|
|
|
"""Read only functional python-novaclient tests.
|
|
|
|
This only exercises client commands that are read only.
|
|
"""
|
|
|
|
COMPUTE_API_VERSION = "2.1"
|
|
|
|
def test_admin_fake_action(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.nova,
|
|
'this-does-nova-exist')
|
|
|
|
# NOTE(jogo): Commands in order listed in 'nova help'
|
|
|
|
def test_admin_aggregate_list(self):
|
|
self.nova('aggregate-list')
|
|
|
|
def test_admin_availability_zone_list(self):
|
|
self.assertIn("internal", self.nova('availability-zone-list'))
|
|
|
|
def test_admin_flavor_acces_list(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.nova,
|
|
'flavor-access-list')
|
|
# Failed to get access list for public flavor type
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.nova,
|
|
'flavor-access-list',
|
|
params='--flavor m1.tiny')
|
|
|
|
def test_admin_flavor_list(self):
|
|
self.assertIn("Memory_MB", self.nova('flavor-list'))
|
|
|
|
def test_admin_host_list(self):
|
|
self.nova('host-list')
|
|
|
|
def test_admin_hypervisor_list(self):
|
|
self.nova('hypervisor-list')
|
|
|
|
@decorators.skip_because(bug="1157349")
|
|
def test_admin_interface_list(self):
|
|
self.nova('interface-list')
|
|
|
|
def test_admin_keypair_list(self):
|
|
self.nova('keypair-list')
|
|
|
|
def test_admin_list(self):
|
|
self.nova('list')
|
|
self.nova('list', params='--all-tenants 1')
|
|
self.nova('list', params='--all-tenants 0')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.nova,
|
|
'list',
|
|
params='--all-tenants bad')
|
|
|
|
def test_admin_server_group_list(self):
|
|
self.nova('server-group-list')
|
|
|
|
def test_admin_servce_list(self):
|
|
self.nova('service-list')
|
|
|
|
def test_admin_usage(self):
|
|
self.nova('usage')
|
|
|
|
def test_admin_usage_list(self):
|
|
self.nova('usage-list')
|
|
|
|
def test_admin_help(self):
|
|
self.nova('help')
|
|
|
|
def test_admin_list_extensions(self):
|
|
self.nova('list-extensions')
|
|
|
|
def test_agent_list(self):
|
|
self.nova('agent-list')
|
|
self.nova('agent-list', flags='--debug')
|
|
|
|
def test_migration_list(self):
|
|
self.nova('migration-list')
|
|
self.nova('migration-list', flags='--debug')
|
|
|
|
def test_version_list(self):
|
|
self.nova('version-list')
|
|
|
|
def test_quota_defaults(self):
|
|
self.nova('quota-defaults')
|
|
self.nova('quota-defaults', flags='--debug')
|
|
|
|
def test_bash_completion(self):
|
|
self.nova('bash-completion')
|
|
|
|
# Optional arguments:
|
|
|
|
def test_admin_version(self):
|
|
self.nova('', flags='--version')
|
|
|
|
def test_admin_debug_list(self):
|
|
self.nova('list', flags='--debug')
|
|
|
|
def test_admin_timeout(self):
|
|
self.nova('list', flags='--timeout %d' % 60)
|
|
|
|
def test_admin_timing(self):
|
|
self.nova('list', flags='--timing')
|
|
|
|
def test_admin_invalid_bypass_url(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.nova,
|
|
'list',
|
|
flags='--endpoint-override badurl')
|