Skip to content
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

Fix crashes when wrapping text containing colorized content #52

Merged

Conversation

Andarist
Copy link
Contributor

@Andarist Andarist commented Apr 4, 2021

Without this those repeats:

were called with negative numbers - resulting with:

  RangeError {
    message: 'Invalid count value',
  }

This was happening because max was computed based on contentWidth which already handled colorized stuff correctly (thanks to string-width being used in widest-line) but the longestLength only used the .length property (so it was computed to a greater number):
https://github.com/Andarist/boxen/blob/de1f3c89e9c44823cc0c0a26b8b0fb113d648060/index.js#L127

@@ -315,6 +315,34 @@ test('align option `left`', t => {
`);
});

test('align option (left) does not throw when colorized content > columns', t => {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this one is not crashing without my fix but I've included it for completeness

Comment on lines +328 to +344
test('align option (center) does not throw when colorized content > columns', t => {
const longContent = chalk.green('ab').repeat(process.stdout.columns);
t.notThrows(() => {
boxen(longContent, {
align: 'center'
});
});
});

test('align option (right) does not throw when colorized content > columns', t => {
const longContent = chalk.green('ab').repeat(process.stdout.columns);
t.notThrows(() => {
boxen(longContent, {
align: 'right'
});
});
});
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know that those are not the best tests as they don't quite test the final result but I won't have time to dig into writing better ones.

@sindresorhus sindresorhus changed the title Fixed crashes when wrapping text containing colorized content Fix crashes when wrapping text containing colorized content Apr 6, 2021
@sindresorhus sindresorhus merged commit ab25c46 into sindresorhus:main Apr 6, 2021
@sindresorhus
Copy link
Owner

Thanks for fixing :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants