
We need to do things to protect against local environment leaking into the test fixtures when we create the cloud objects. Those things are all done in the base unittest TestCase class, but for reasons that are hard to fathom, we ignore that and create our own clouds in many of the unitttest classes. This leads to problems if a user running the unittests has cache config information in their local clouds.yaml. Fix it. Change-Id: I022d541d8e98bf4b6691bf0a91e3b7d20b2b7456
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# 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 mock
|
|
import munch
|
|
|
|
import shade
|
|
from shade.tests.unit import base
|
|
|
|
|
|
magnum_service_obj = munch.Munch(
|
|
binary='fake-service',
|
|
state='up',
|
|
report_count=1,
|
|
human_id=None,
|
|
host='fake-host',
|
|
id=1,
|
|
disabled_reason=None
|
|
)
|
|
|
|
|
|
class TestMagnumServices(base.TestCase):
|
|
|
|
@mock.patch.object(shade.OpenStackCloud, 'magnum_client')
|
|
def test_list_magnum_services(self, mock_magnum):
|
|
mock_magnum.mservices.list.return_value = [magnum_service_obj, ]
|
|
mservices_list = self.op_cloud.list_magnum_services()
|
|
mock_magnum.mservices.list.assert_called_with(detail=False)
|
|
self.assertEqual(mservices_list[0], magnum_service_obj)
|