This change adds a suite of unit demos which demonstrate how to use individual KMIP client operations. These demos also feature better argument handling, which will eventually be ported to the rest of the demo suite. Some added debug logging is included.
126 lines
3.7 KiB
Python
126 lines
3.7 KiB
Python
# Copyright (c) 2015 The Johns Hopkins University/Applied Physics Laboratory
|
|
# All Rights Reserved.
|
|
#
|
|
# 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 kmip.core.enums import Operation
|
|
|
|
import optparse
|
|
|
|
|
|
def build_cli_parser(operation):
|
|
# Build the argument parser and setup expected options
|
|
parser = optparse.OptionParser(
|
|
usage="%prog [options]",
|
|
description="Run KMIP client {0} operation".format(operation.name))
|
|
|
|
parser.add_option(
|
|
"-u",
|
|
"--username",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="username",
|
|
help="Username for KMIP server account")
|
|
parser.add_option(
|
|
"-p",
|
|
"--password",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="password",
|
|
help="Password for KMIP server account")
|
|
|
|
if operation is Operation.CREATE:
|
|
parser.add_option(
|
|
"-a",
|
|
"--algorithm",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="algorithm",
|
|
help="Encryption algorithm for the secret (e.g., AES)")
|
|
parser.add_option(
|
|
"-l",
|
|
"--length",
|
|
action="store",
|
|
type="int",
|
|
default=None,
|
|
dest="length",
|
|
help="Key length in bits (e.g., 128, 256)")
|
|
elif operation is Operation.CREATE_KEY_PAIR:
|
|
parser.add_option(
|
|
"-a",
|
|
"--algorithm",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="algorithm",
|
|
help="Encryption algorithm for the secret (e.g., AES)")
|
|
parser.add_option(
|
|
"-l",
|
|
"--length",
|
|
action="store",
|
|
type="int",
|
|
default=None,
|
|
dest="length",
|
|
help="Key length in bits (e.g., 128, 256)")
|
|
elif operation is Operation.DESTROY:
|
|
parser.add_option(
|
|
"-i",
|
|
"--uuid",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="uuid",
|
|
help="UUID of secret to delete from the KMIP server")
|
|
elif operation is Operation.GET:
|
|
parser.add_option(
|
|
"-i",
|
|
"--uuid",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="uuid",
|
|
help="UUID of secret to retrieve from the KMIP server")
|
|
elif operation is Operation.LOCATE:
|
|
parser.add_option(
|
|
"-n",
|
|
"--name",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="name",
|
|
help="Name of secret to retrieve from the KMIP server")
|
|
elif operation is Operation.REGISTER:
|
|
parser.add_option(
|
|
"-a",
|
|
"--algorithm",
|
|
action="store",
|
|
type="str",
|
|
default=None,
|
|
dest="algorithm",
|
|
help="Encryption algorithm for the secret (e.g., AES)")
|
|
parser.add_option(
|
|
"-l",
|
|
"--length",
|
|
action="store",
|
|
type="int",
|
|
default=None,
|
|
dest="length",
|
|
help="Key length in bits (e.g., 128, 256)")
|
|
else:
|
|
raise ValueError("unrecognized operation: {0}".format(operation))
|
|
|
|
return parser
|