-
-
Notifications
You must be signed in to change notification settings - Fork 397
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
Consolidate text wrapping support for console printing #1722
Conversation
ebbcaee
to
646020a
Compare
FYI. I've seen this error twice today now.
|
Any idea of the cause of this one? It's evidently transient, because it doesn't survive a re-run; but it's not a mode of failure I've seen before, and it doesn't read like an obvious networking issue (which is the usual GitHub Actions CI issue). Maybe a glitchy NFS mount? |
hmm....I'm inclined to say it wasn't a low-level protocol error/blip....since the error was identical both times:
Other instance: https://github.com/beeware/briefcase/actions/runs/8590845652/job/23538952152#step:11:61 I wonder if GitHub has a corrupted version of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Broadly looks good; a couple of minor suggestions inline.
src/briefcase/cmdline.py
Outdated
@@ -36,19 +35,18 @@ | |||
] | |||
|
|||
|
|||
def parse_cmdline(args): | |||
def parse_cmdline(args, console: Console = Console()): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The use of the default here means a Console() instance will always be created (as the default argument is evaluated when the function is defined). Passing in None, and constructing if the argument is None would be preferable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point; defaulting to None
now
src/briefcase/cmdline.py
Outdated
"""Parses the command line to determine the Command and its arguments. | ||
|
||
:param args: the arguments provided at the command line | ||
:param console: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Documentation required here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤦🏼
"roll the image, make it flutter. We can change the focus to a soft blur or\n" | ||
"sharpen it to crystal clarity. For the next hour, sit quietly, and we will\n" | ||
"control all that you see and hear. We repeat: There is nothing wrong with your\n" | ||
"television set.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
) | ||
def test_textwrap(in_text, out_text): | ||
"""Text is formatted as expected.""" | ||
assert Console().textwrap(in_text) == out_text |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possibly overkill, but would it be worth testing a range of output sizes here to confirm that breaking works as expected?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to cover most test cases; so, I'm curious which additional ones you think might be useful?
First case is just a line that will not be broken.
Second case contains a line break before the default break point to ensure line breaks in the text are respected.
Third case takes the second case to an extreme and at least confirms line breaks in the text handling will remain consistent over time.
Fourth case is another common case of a paragraph to format...although, I varied the line length throughout.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking more about the adaptation to the width
argument in the line wrap - i.e., that wrapping with width of 30/50/80/120 yield different breaks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ohh...ok; for the width
argument tests; gotcha
- Only instantiate Console in cmdline.py if not passed - Broaden tests for textwrap width override
Do you have any objections to applying this to the rest of the project? This was prompted from my work on "build tracking"....so, I think I'll still probably delay actually updating all multi-line output from this PR but wanted to make sure we're on the same page for transitioning from the P.S. furthermore, I'm targeting to get this PR and my "linux abstractions" updates in before PyCon....since I'm expecting a release before then. just fyi. (third on that list is Toga typing but probably not targeting pre-pycon.) |
None at all. Anywhere that we're currently doing manual line breaks is definitely a candidate for being cleaned up in this way. The only place that won't be a drop-in replacement are the "banner" warnings (e.g., the warning when JAVA_HOME doesn't point at a JDK - but I'd argue those should be factored out into some sort of common "banner" mechanism as well (although that doesn't need to be part of this PR unless you're feeling enthused).
Agreed - I'm expecting a release of both Toga and Briefcase before PyCon. For planning purposes, I'd say we want to have a release candidate around May 1, so that any release issues get caught before we're live in the middle of a tutorial. |
All right; good deal. As a correction, I meant I'm targeting to get "build tracking" and "linux abstractions" in before PyCon....so, I'll shoot for May 1...that may turn out to be optimistic, though. As for this PR, feel free to merge when you're comfortable with it and I'm return to the updating the rest of the text blocks later. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Changes
Console
from its original implementation inNewCommand
.Notes
f"""..."""
string definitions in to strings without newlines soConsole.textwrap()
can format them.**** WARNING ****
messages...but that'll also take some thought for implementation.PR Checklist: