Merge "Add network availability zones client"

This commit is contained in:
Zuul 2018-11-05 20:28:12 +00:00 committed by Gerrit Code Review
commit 13f216cc63
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
# Copyright 2018 AT&T Corporation.
# 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.common import utils
from tempest.lib import decorators
from neutron_tempest_plugin.api import base
class ListAvailableZonesTest(base.BaseNetworkTest):
@decorators.idempotent_id('5a8a8a1a-c265-11e8-a611-080027758b73')
@utils.requires_ext(extension="availability_zone",
service="network")
def test_list_available_zones(self):
resource = 'availability_zones'
body = getattr(self.client, 'list_%s' % resource)()
self.assertIsNotNone(body)
self.assertIsInstance(body['availability_zones'], list)