Hongbin Lu 1118d8052a Remove unused 'detail' parameter
This parameter is not used in server. This patch removes it from
client side.

Change-Id: Iec5479bd8f6b72f13292e9de9c9001ea495ef3ad
2018-06-16 19:23:42 +00:00

163 lines
4.5 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.
import testtools
from testtools import matchers
from zunclient.tests.unit import utils
from zunclient.v1 import services
SERVICE1 = {'id': 123,
'host': 'fake-host1',
'binary': 'fake-bin1',
'state': 'up',
'availability_zone': 'nova',
}
SERVICE2 = {'id': 124,
'host': 'fake-host2',
'binary': 'fake-bin2',
'state': 'down',
'availability_zone': 'nova',
}
fake_responses = {
'/v1/services':
{
'GET': (
{},
{'services': [SERVICE1, SERVICE2]},
),
},
'/v1/services/?limit=2':
{
'GET': (
{},
{'services': [SERVICE1, SERVICE2]},
),
},
'/v1/services/?marker=%s' % SERVICE2['id']:
{
'GET': (
{},
{'services': [SERVICE1, SERVICE2]},
),
},
'/v1/services/?limit=2&marker=%s' % SERVICE2['id']:
{
'GET': (
{},
{'services': [SERVICE2, SERVICE1]},
),
},
'/v1/services/?sort_dir=asc':
{
'GET': (
{},
{'services': [SERVICE1, SERVICE2]},
),
},
'/v1/services/?sort_key=id':
{
'GET': (
{},
{'services': [SERVICE1, SERVICE2]},
),
},
'/v1/services/?sort_key=id&sort_dir=desc':
{
'GET': (
{},
{'services': [SERVICE2, SERVICE1]},
),
},
}
class ServiceManagerTest(testtools.TestCase):
def setUp(self):
super(ServiceManagerTest, self).setUp()
self.api = utils.FakeAPI(fake_responses)
self.mgr = services.ServiceManager(self.api)
def test_service_list(self):
services = self.mgr.list()
expect = [
('GET', '/v1/services', {}, None),
]
self.assertEqual(expect, self.api.calls)
self.assertThat(services, matchers.HasLength(2))
def _test_service_list_with_filters(
self, limit=None, marker=None,
sort_key=None, sort_dir=None,
expect=[]):
services_filter = self.mgr.list(limit=limit, marker=marker,
sort_key=sort_key,
sort_dir=sort_dir)
self.assertEqual(expect, self.api.calls)
self.assertThat(services_filter, matchers.HasLength(2))
def test_service_list_with_limit(self):
expect = [
('GET', '/v1/services/?limit=2', {}, None),
]
self._test_service_list_with_filters(
limit=2,
expect=expect)
def test_service_list_with_marker(self):
expect = [
('GET', '/v1/services/?marker=%s' % SERVICE2['id'],
{}, None),
]
self._test_service_list_with_filters(
marker=SERVICE2['id'],
expect=expect)
def test_service_list_with_marker_limit(self):
expect = [
('GET', '/v1/services/?limit=2&marker=%s' % SERVICE2['id'],
{}, None),
]
self._test_service_list_with_filters(
limit=2, marker=SERVICE2['id'],
expect=expect)
def test_service_list_with_sort_dir(self):
expect = [
('GET', '/v1/services/?sort_dir=asc',
{}, None),
]
self._test_service_list_with_filters(
sort_dir='asc',
expect=expect)
def test_service_list_with_sort_key(self):
expect = [
('GET', '/v1/services/?sort_key=id',
{}, None),
]
self._test_service_list_with_filters(
sort_key='id',
expect=expect)
def test_service_list_with_sort_key_dir(self):
expect = [
('GET', '/v1/services/?sort_key=id&sort_dir=desc',
{}, None),
]
self._test_service_list_with_filters(
sort_key='id', sort_dir='desc',
expect=expect)