
Most OpenStack clients support a common set of SSL options, such as os-cacert, os-cert, and os-key. This change uses keystoneclient.session.register_cli_opts to add those to the argument parser and passes the resulting values to the Keystone client so they take effect. Change-Id: I24c2c2fa5be51590cc2d8a9278563dd4f7ba091d
72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
# 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 tuskarclient.openstack.common.apiclient import exceptions as exc
|
|
from tuskarclient import shell
|
|
import tuskarclient.tests.utils as tutils
|
|
|
|
|
|
class ShellTest(tutils.TestCase):
|
|
|
|
args_attributes = [
|
|
'os_username', 'os_password', 'os_tenant_name', 'os_tenant_id',
|
|
'os_auth_url', 'os_auth_token', 'tuskar_url', 'tuskar_api_version',
|
|
'os_cacert', 'os_cert', 'os_key',
|
|
]
|
|
|
|
def setUp(self):
|
|
super(ShellTest, self).setUp()
|
|
self.s = shell.TuskarShell([])
|
|
|
|
def empty_args(self):
|
|
args = lambda: None # i'd use object(), but it can't have attributes
|
|
for attr in self.args_attributes:
|
|
setattr(args, attr, None)
|
|
|
|
return args
|
|
|
|
def test_ensure_auth_info_with_credentials(self):
|
|
ensure = self.s._ensure_auth_info
|
|
command_error = exc.CommandError
|
|
args = self.empty_args()
|
|
|
|
args.os_username = 'user'
|
|
args.os_password = 'pass'
|
|
args.os_tenant_name = 'tenant'
|
|
self.assertRaises(command_error, ensure, args)
|
|
|
|
args.os_auth_url = 'keystone'
|
|
ensure(args) # doesn't raise
|
|
|
|
def test_ensure_auth_info_with_token(self):
|
|
ensure = self.s._ensure_auth_info
|
|
command_error = exc.CommandError
|
|
args = self.empty_args()
|
|
|
|
args.os_auth_token = 'token'
|
|
self.assertRaises(command_error, ensure, args)
|
|
|
|
args.tuskar_url = 'tuskar'
|
|
ensure(args) # doesn't raise
|
|
|
|
def test_parser_v2(self):
|
|
v2_commands = [
|
|
]
|
|
parser, subparsers = self.s._parser(2)
|
|
tuskar_help = parser.format_help()
|
|
|
|
for arg in map(lambda a: a.replace('_', '-'), self.args_attributes):
|
|
self.assertIn(arg, tuskar_help)
|
|
|
|
for command in v2_commands:
|
|
self.assertIn(command, tuskar_help)
|