CLI: Port "ara result show" command from 0.x

This provides a detailed view about a specific result.

The content isn't included by default but it can be by specifying
"--with-content" and it's recommended to use with
'-f json' or '-f yaml'.

Change-Id: Idc5227f9d92d6610a84665ee463be36c2e5a1fe8
This commit is contained in:
David Moreau Simard 2020-07-18 23:07:16 -04:00
parent 7614356dc6
commit 05a1c912a2
No known key found for this signature in database
GPG Key ID: 7D4729EC4E64E8B7
3 changed files with 110 additions and 0 deletions

View File

@ -2,8 +2,10 @@
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
import logging
import sys
from cliff.lister import Lister
from cliff.show import ShowOne
from ara.cli.base import global_arguments
from ara.clients.utils import get_client
@ -110,3 +112,93 @@ class ResultList(Lister):
)
)
# fmt: on
class ResultShow(ShowOne):
""" Returns a detailed view of a specified result """
log = logging.getLogger(__name__)
def get_parser(self, prog_name):
parser = super(ResultShow, self).get_parser(prog_name)
parser = global_arguments(parser)
# fmt: off
parser.add_argument(
"result_id",
metavar="<result-id>",
help="Result to show",
)
parser.add_argument(
"--with-content",
action="store_true",
help="Also include the result content in the response (use with '-f json' or '-f yaml')"
)
# fmt: on
return parser
def take_action(self, args):
# TODO: Render json properly in pretty tables
if args.with_content and args.formatter == "table":
self.log.warn("Rendering using default table formatter, use '-f yaml' or '-f json' for improved display.")
client = get_client(
client=args.client,
endpoint=args.server,
timeout=args.timeout,
username=args.username,
password=args.password,
verify=False if args.insecure else True,
)
# TODO: Improve client to be better at handling exceptions
result = client.get("/api/v1/results/%s" % args.result_id)
if "detail" in result and result["detail"] == "Not found.":
self.log.error("Result not found: %s" % args.result_id)
sys.exit(1)
# Parse data from playbook and format it for display
result["ansible_version"] = result["playbook"]["ansible_version"]
playbook = "(%s) %s" % (result["playbook"]["id"], result["playbook"]["name"] or result["playbook"]["path"])
result["report"] = "%s/playbooks/%s.html" % (args.server, result["playbook"]["id"])
result["playbook"] = playbook
# Parse data from play and format it for display
play = "(%s) %s" % (result["play"]["id"], result["play"]["name"])
result["play"] = play
# Parse data from task and format it for display
task = "(%s) %s" % (result["task"]["id"], result["task"]["name"])
path = "(%s) %s:%s" % (result["task"]["file"], result["task"]["path"], result["task"]["lineno"])
result["task"] = task
result["path"] = path
if args.with_content:
columns = (
"id",
"report",
"status",
"playbook",
"play",
"task",
"path",
"started",
"ended",
"duration",
"ansible_version",
"content",
)
else:
columns = (
"id",
"report",
"status",
"playbook",
"play",
"task",
"path",
"started",
"ended",
"duration",
"ansible_version",
)
return (columns, ([result[column] for column in columns]))

View File

@ -146,6 +146,23 @@ Return the 15 results with the highest duration for a specific playbook:
ara result list --playbook 389 --order=-duration --limit 15
ara result show
---------------
.. command-output:: ara result show --help
Return detailed information about a specific result:
.. code-block:: bash
ara result show 9001
Return detailed information about a specific result, including formatted content:
.. code-block:: bash
ara result show 9001 --with-content -f json
CLI: ara-manage (django)
========================

View File

@ -42,6 +42,7 @@ ara.cli =
host show = ara.cli.host:HostShow
host delete = ara.cli.host:HostDelete
result list = ara.cli.result:ResultList
result show = ara.cli.result:ResultShow
[extras]
server=