Skip to content

fix(cli): fix action display in --help when there are few actions #2679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions gitlab/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import re
import sys
import textwrap
from types import ModuleType
from typing import (
Any,
Expand Down Expand Up @@ -50,11 +51,21 @@ def format_help(self) -> str:
for line in result.splitlines(keepends=True):
# All of our resources are on one line and wrapped inside braces.
# For example: {application,resource1,resource2}
# except if there are fewer resources - then the line and help text
# are collapsed on the same line.
# For example: {list} Action to execute on the GitLab resource.
# We then put each resource on its own line to make it easier to read.
if line.strip().startswith("{"):
choices = line.strip().strip("{}").split(",")
choices_str = f"\n{indent}".join(choices)
line = f"{indent}{choices_str}\n"
choice_string, help_string = line.split("}", 1)
choice_list = choice_string.strip(" {").split(",")
help_string = help_string.strip()

if help_string:
help_indent = len(max(choice_list, key=len)) * " "
choice_list.append(f"{help_indent} {help_string}")

choices = "\n".join(choice_list)
line = f"{textwrap.indent(choices, indent)}\n"
output += line
return output

Expand Down
6 changes: 6 additions & 0 deletions tests/functional/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ def test_resource_help_prints_actions_vertically(script_runner):
assert ret.returncode == 0


def test_resource_help_prints_actions_vertically_only_one_action(script_runner):
ret = script_runner.run(["gitlab", "event", "--help"])
assert """action:\n list\n""" in ret.stdout
assert ret.returncode == 0


@pytest.mark.script_launch_mode("inprocess")
@responses.activate
def test_defaults_to_gitlab_com(script_runner, resp_get_project, monkeypatch):
Expand Down