Source code for ironic.tests.unit.common.test_keystone

# -*- encoding: 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.

from keystoneauth1 import exceptions as ksexception
from keystoneauth1 import loading as kaloading
import mock
from oslo_config import cfg
from oslo_config import fixture

from ironic.common import exception
from ironic.common import keystone
from ironic.conf import auth as ironic_auth
from ironic.tests import base


[docs]class KeystoneTestCase(base.TestCase):
[docs] def setUp(self): super(KeystoneTestCase, self).setUp() self.config(region_name='fake_region', group='keystone') self.test_group = 'test_group' self.cfg_fixture.conf.register_group(cfg.OptGroup(self.test_group)) ironic_auth.register_auth_opts(self.cfg_fixture.conf, self.test_group) self.config(auth_type='password', group=self.test_group) # NOTE(pas-ha) this is due to auth_plugin options # being dynamically registered on first load, # but we need to set the config before plugin = kaloading.get_plugin_loader('password') opts = kaloading.get_auth_plugin_conf_options(plugin) self.cfg_fixture.register_opts(opts, group=self.test_group) self.config(auth_url='http://127.0.0.1:9898', username='fake_user', password='fake_pass', project_name='fake_tenant', group=self.test_group)
def _set_config(self): self.cfg_fixture = self.useFixture(fixture.Config()) self.addCleanup(cfg.CONF.reset)
[docs] def test_get_url(self): fake_url = 'http://127.0.0.1:6385' mock_sess = mock.Mock() mock_sess.get_endpoint.return_value = fake_url res = keystone.get_service_url(mock_sess) mock_sess.get_endpoint.assert_called_with( interface='internal', region='fake_region', service_type='baremetal') self.assertEqual(fake_url, res)
[docs] def test_get_url_failure(self): exc_map = ( (ksexception.Unauthorized, exception.KeystoneUnauthorized), (ksexception.EndpointNotFound, exception.CatalogNotFound), (ksexception.EmptyCatalog, exception.CatalogNotFound), (ksexception.Unauthorized, exception.KeystoneUnauthorized), ) for kexc, irexc in exc_map: mock_sess = mock.Mock() mock_sess.get_endpoint.side_effect = kexc self.assertRaises(irexc, keystone.get_service_url, mock_sess)
[docs] def test_get_admin_auth_token(self): mock_sess = mock.Mock() mock_sess.get_token.return_value = 'fake_token' self.assertEqual('fake_token', keystone.get_admin_auth_token(mock_sess))
[docs] def test_get_admin_auth_token_failure(self): mock_sess = mock.Mock() mock_sess.get_token.side_effect = ksexception.Unauthorized self.assertRaises(exception.KeystoneUnauthorized, keystone.get_admin_auth_token, mock_sess)
@mock.patch.object(ironic_auth, 'load_auth')
[docs] def test_get_session(self, auth_get_mock): auth_mock = mock.Mock() auth_get_mock.return_value = auth_mock session = keystone.get_session(self.test_group) self.assertEqual(auth_mock, session.auth)
@mock.patch.object(keystone, '_get_legacy_auth', return_value=None) @mock.patch.object(ironic_auth, 'load_auth', return_value=None)
[docs] def test_get_session_fail(self, auth_get_mock, legacy_get_mock): self.assertRaisesRegexp( exception.KeystoneFailure, "Failed to load auth from either", keystone.get_session, self.test_group)
@mock.patch('keystoneauth1.loading.load_auth_from_conf_options') @mock.patch('ironic.common.keystone._get_legacy_auth')
[docs] def test_get_session_failed_new_auth(self, legacy_get_mock, load_mock): legacy_mock = mock.Mock() legacy_get_mock.return_value = legacy_mock load_mock.side_effect = [None, ksexception.MissingRequiredOptions] self.assertEqual(legacy_mock, keystone.get_session(self.test_group).auth)
@mock.patch('keystoneauth1.loading._plugins.identity.generic.Password.' 'load_from_options')
[docs]class KeystoneLegacyTestCase(base.TestCase):
[docs] def setUp(self): super(KeystoneLegacyTestCase, self).setUp() self.test_group = 'test_group' self.cfg_fixture.conf.register_group(cfg.OptGroup(self.test_group)) self.config(group=ironic_auth.LEGACY_SECTION, auth_uri='http://127.0.0.1:9898', admin_user='fake_user', admin_password='fake_pass', admin_tenant_name='fake_tenant') ironic_auth.register_auth_opts(self.cfg_fixture.conf, self.test_group) self.config(group=self.test_group, auth_type=None) self.expected = dict( auth_url='http://127.0.0.1:9898', username='fake_user', password='fake_pass', tenant_name='fake_tenant')
def _set_config(self): self.cfg_fixture = self.useFixture(fixture.Config()) self.addCleanup(cfg.CONF.reset) @mock.patch.object(ironic_auth, 'load_auth', return_value=None)
[docs] def test_legacy_loading_v2(self, load_auth_mock, load_mock): keystone.get_session(self.test_group) load_mock.assert_called_once_with(**self.expected) self.assertEqual(2, load_auth_mock.call_count)
@mock.patch.object(ironic_auth, 'load_auth', return_value=None)
[docs] def test_legacy_loading_v3(self, load_auth_mock, load_mock): self.config( auth_version='v3.0', group=ironic_auth.LEGACY_SECTION) self.expected.update(dict( project_domain_id='default', user_domain_id='default')) keystone.get_session(self.test_group) load_mock.assert_called_once_with(**self.expected) self.assertEqual(2, load_auth_mock.call_count)
@mock.patch.object(ironic_auth, 'load_auth')
[docs] def test_legacy_loading_new_in_legacy(self, load_auth_mock, load_mock): # NOTE(pas-ha) this is due to auth_plugin options # being dynamically registered on first load, # but we need to set the config before plugin = kaloading.get_plugin_loader('password') opts = kaloading.get_auth_plugin_conf_options(plugin) self.cfg_fixture.register_opts(opts, group=ironic_auth.LEGACY_SECTION) self.config(group=ironic_auth.LEGACY_SECTION, auth_uri='http://127.0.0.1:9898', username='fake_user', password='fake_pass', project_name='fake_tenant', auth_url='http://127.0.0.1:9898', auth_type='password') load_auth_mock.side_effect = [None, mock.Mock()] keystone.get_session(self.test_group) self.assertFalse(load_mock.called) self.assertEqual(2, load_auth_mock.call_count)