
Now that we no longer support py27, we can use the standard library unittest.mock module instead of the third party mock lib. Change-Id: I35d6f1207b57ea40809f78785c69a13c2943e1bc Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
102 lines
3.8 KiB
Python
102 lines
3.8 KiB
Python
# Copyright 2013 - Noorul Islam K M
|
|
#
|
|
# 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 unittest import mock
|
|
|
|
from keystoneclient.v2_0 import client as ksclient
|
|
import testtools
|
|
|
|
from solumclient.common import auth
|
|
from solumclient.common import client
|
|
from solumclient.tests import base
|
|
|
|
|
|
@mock.patch.object(ksclient, 'Client')
|
|
class KeystoneAuthPluginTest(base.TestCase):
|
|
def setUp(self):
|
|
super(KeystoneAuthPluginTest, self).setUp()
|
|
plugin = auth.KeystoneAuthPlugin(
|
|
username="fake-username",
|
|
password="fake-password",
|
|
tenant_name="fake-tenant-name",
|
|
project_domain_name="default",
|
|
user_domain_name="default",
|
|
auth_url="http://auth")
|
|
self.cs = client.HTTPClient(auth_plugin=plugin)
|
|
|
|
@testtools.skip("Skip it when found solution")
|
|
def test_authenticate(self, mock_ksclient):
|
|
self.cs.authenticate()
|
|
mock_ksclient.assert_called_with(
|
|
username="fake-username",
|
|
password="fake-password",
|
|
tenant_name="fake-tenant-name",
|
|
project_domain_name="default",
|
|
user_domain_name="default",
|
|
auth_url="http://auth")
|
|
|
|
def test_token_and_endpoint(self, mock_ksclient):
|
|
plugin = auth.KeystoneAuthPlugin(
|
|
endpoint="http://solum",
|
|
token="test_token")
|
|
self.cs = client.HTTPClient(auth_plugin=plugin)
|
|
self.cs.authenticate()
|
|
(token, endpoint) = self.cs.auth_plugin.token_and_endpoint(
|
|
"fake-endpoint-type", "fake-service-type")
|
|
self.assertEqual(token, "test_token")
|
|
self.assertEqual("http://solum", endpoint)
|
|
|
|
def test_token_and_endpoint_before_auth(self, mock_ksclient):
|
|
(token, endpoint) = self.cs.auth_plugin.token_and_endpoint(
|
|
"fake-endpoint-type", "fake-service-type")
|
|
self.assertIsNone(token, None)
|
|
self.assertIsNone(endpoint, None)
|
|
|
|
@testtools.skip("Skip it when found solution")
|
|
def test_endpoint_with_no_token(self, mock_ksclient):
|
|
plugin = auth.KeystoneAuthPlugin(
|
|
username="fake-username",
|
|
password="fake-password",
|
|
tenant_name="fake-tenant-name",
|
|
project_domain_name="default",
|
|
user_domain_name="default",
|
|
auth_url="http://auth",
|
|
endpoint="http://solum")
|
|
self.cs = client.HTTPClient(auth_plugin=plugin)
|
|
self.cs.authenticate()
|
|
mock_ksclient.assert_called_with(
|
|
username="fake-username",
|
|
password="fake-password",
|
|
tenant_name="fake-tenant-name",
|
|
auth_url="http://auth")
|
|
(token, endpoint) = self.cs.auth_plugin.token_and_endpoint(
|
|
"fake-endpoint-type", "fake-service-type")
|
|
self.assertIsInstance(token, mock.MagicMock)
|
|
self.assertEqual("http://solum", endpoint)
|
|
|
|
|
|
@mock.patch.object(ksclient, 'Client')
|
|
class KeystoneAuthPluginTokenTest(base.TestCase):
|
|
def test_token_and_endpoint(self, mock_ksclient):
|
|
plugin = auth.KeystoneAuthPlugin(
|
|
token="fake-token",
|
|
endpoint="http://solum")
|
|
cs = client.HTTPClient(auth_plugin=plugin)
|
|
|
|
cs.authenticate()
|
|
(token, endpoint) = cs.auth_plugin.token_and_endpoint(
|
|
"fake-endpoint-type", "fake-service-type")
|
|
self.assertEqual('fake-token', token)
|
|
self.assertEqual('http://solum', endpoint)
|