
More things than shade need consistent Session creation, so we moved a copy of the shade code into os-client-config to allow python-*client to consume the same logic. Now that it's there, consume it in shade and remove the need for shade to know/duplicate the logic. Depends-On: Ide4c613cc143a0b8a3f36130989b57e808b2530f Change-Id: I86cdb3cdd2710ef302520184ccfcb1605384f706
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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 ironicclient
|
|
from os_client_config import cloud_config
|
|
import shade
|
|
from shade.tests import base
|
|
|
|
|
|
class TestShadeOperatorNoAuth(base.TestCase):
|
|
def setUp(self):
|
|
"""Setup Noauth OperatorCloud tests
|
|
|
|
Setup the test to utilize no authentication and an endpoint
|
|
URL in the auth data. This is permits testing of the basic
|
|
mechanism that enables Ironic noauth mode to be utilized with
|
|
Shade.
|
|
"""
|
|
super(TestShadeOperatorNoAuth, self).setUp()
|
|
self.cloud_noauth = shade.operator_cloud(
|
|
auth_type='admin_token',
|
|
auth=dict(endpoint="http://localhost:6385"),
|
|
validate=False,
|
|
)
|
|
|
|
@mock.patch.object(cloud_config.CloudConfig, 'get_session')
|
|
@mock.patch.object(ironicclient.client, 'Client')
|
|
def test_ironic_noauth_selection_using_a_task(
|
|
self, mock_client, get_session_mock):
|
|
"""Test noauth selection for Ironic in OperatorCloud
|
|
|
|
Utilize a task to trigger the client connection attempt
|
|
and evaluate if get_session_endpoint was called while the client
|
|
was still called.
|
|
|
|
We want session_endpoint to be called because we're storing the
|
|
endpoint in a noauth token Session object now.
|
|
"""
|
|
session_mock = mock.Mock()
|
|
session_mock.get_endpoint.return_value = None
|
|
session_mock.get_token.return_value = 'yankee'
|
|
get_session_mock.return_value = session_mock
|
|
|
|
self.cloud_noauth.patch_machine('name', {})
|
|
self.assertTrue(get_session_mock.called)
|
|
self.assertTrue(mock_client.called)
|