2013-09-20 03:31:42 +08:00
|
|
|
# Copyright (c) 2013 OpenStack Foundation
|
2013-07-14 23:18:22 +08:00
|
|
|
# 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 cinderclient.tests import utils
|
|
|
|
from cinderclient.tests.v1 import fakes
|
|
|
|
from cinderclient.v1 import services
|
|
|
|
|
|
|
|
|
|
|
|
cs = fakes.FakeClient()
|
|
|
|
|
|
|
|
|
|
|
|
class ServicesTest(utils.TestCase):
|
|
|
|
|
|
|
|
def test_list_services(self):
|
|
|
|
svs = cs.services.list()
|
|
|
|
cs.assert_called('GET', '/os-services')
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual(3, len(svs))
|
2014-01-18 15:16:24 +08:00
|
|
|
[self.assertIsInstance(s, services.Service) for s in svs]
|
2013-07-14 23:18:22 +08:00
|
|
|
|
|
|
|
def test_list_services_with_hostname(self):
|
|
|
|
svs = cs.services.list(host='host2')
|
|
|
|
cs.assert_called('GET', '/os-services?host=host2')
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual(2, len(svs))
|
2014-01-18 15:16:24 +08:00
|
|
|
[self.assertIsInstance(s, services.Service) for s in svs]
|
2014-02-26 15:59:14 +09:00
|
|
|
[self.assertEqual('host2', s.host) for s in svs]
|
2013-07-14 23:18:22 +08:00
|
|
|
|
|
|
|
def test_list_services_with_binary(self):
|
|
|
|
svs = cs.services.list(binary='cinder-volume')
|
|
|
|
cs.assert_called('GET', '/os-services?binary=cinder-volume')
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual(2, len(svs))
|
2014-01-18 15:16:24 +08:00
|
|
|
[self.assertIsInstance(s, services.Service) for s in svs]
|
2014-02-26 15:59:14 +09:00
|
|
|
[self.assertEqual('cinder-volume', s.binary) for s in svs]
|
2013-07-14 23:18:22 +08:00
|
|
|
|
|
|
|
def test_list_services_with_host_binary(self):
|
|
|
|
svs = cs.services.list('host2', 'cinder-volume')
|
|
|
|
cs.assert_called('GET', '/os-services?host=host2&binary=cinder-volume')
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual(1, len(svs))
|
2014-01-18 15:16:24 +08:00
|
|
|
[self.assertIsInstance(s, services.Service) for s in svs]
|
2014-02-26 15:59:14 +09:00
|
|
|
[self.assertEqual('host2', s.host) for s in svs]
|
|
|
|
[self.assertEqual('cinder-volume', s.binary) for s in svs]
|
2013-07-14 23:18:22 +08:00
|
|
|
|
|
|
|
def test_services_enable(self):
|
2014-01-21 22:55:34 +08:00
|
|
|
s = cs.services.enable('host1', 'cinder-volume')
|
2013-07-14 23:18:22 +08:00
|
|
|
values = {"host": "host1", 'binary': 'cinder-volume'}
|
|
|
|
cs.assert_called('PUT', '/os-services/enable', values)
|
2014-01-18 15:16:24 +08:00
|
|
|
self.assertIsInstance(s, services.Service)
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual('enabled', s.status)
|
2013-07-14 23:18:22 +08:00
|
|
|
|
|
|
|
def test_services_disable(self):
|
2014-01-21 22:55:34 +08:00
|
|
|
s = cs.services.disable('host1', 'cinder-volume')
|
2013-07-14 23:18:22 +08:00
|
|
|
values = {"host": "host1", 'binary': 'cinder-volume'}
|
|
|
|
cs.assert_called('PUT', '/os-services/disable', values)
|
2014-01-18 15:16:24 +08:00
|
|
|
self.assertIsInstance(s, services.Service)
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual('disabled', s.status)
|
2014-03-16 09:32:52 +08:00
|
|
|
|
|
|
|
def test_services_disable_log_reason(self):
|
|
|
|
s = cs.services.disable_log_reason(
|
|
|
|
'host1', 'cinder-volume', 'disable bad host')
|
|
|
|
values = {"host": "host1", 'binary': 'cinder-volume',
|
|
|
|
"disabled_reason": "disable bad host"}
|
|
|
|
cs.assert_called('PUT', '/os-services/disable-log-reason', values)
|
2014-07-09 00:07:48 +08:00
|
|
|
self.assertIsInstance(s, services.Service)
|
2014-02-26 15:59:14 +09:00
|
|
|
self.assertEqual('disabled', s.status)
|