aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-12-23 20:13:14 +0100
committerMichael Muré <batolettre@gmail.com>2018-12-23 20:13:14 +0100
commit261aa61711639cf98a9aa987e86377d520b8c868 (patch)
tree7466fb4dd6cb3a64e4a3d9819859e488ffb8066e /util
parentf9fc85ac825fec05a26d4029da15b33ae66e4e25 (diff)
downloadgit-bug-261aa61711639cf98a9aa987e86377d520b8c868.tar.gz
text: fix a wrapping bug leading to line longer than they should
Diffstat (limited to 'util')
-rw-r--r--util/text/text.go2
-rw-r--r--util/text/text_test.go34
2 files changed, 34 insertions, 2 deletions
diff --git a/util/text/text.go b/util/text/text.go
index 443728aa..b41b892b 100644
--- a/util/text/text.go
+++ b/util/text/text.go
@@ -84,7 +84,7 @@ func WrapLeftPadded(text string, lineWidth int, leftPad int) (string, int) {
lineBuffer.Reset()
lineBuffer.WriteString(word)
firstWord = false
- spaceLeft = lineWidth - wordLength
+ spaceLeft = lineWidth - leftPad - wordLength
nbLine++
}
}
diff --git a/util/text/text_test.go b/util/text/text_test.go
index cda26fda..f37b4ce6 100644
--- a/util/text/text_test.go
+++ b/util/text/text_test.go
@@ -106,7 +106,7 @@ func TestWrap(t *testing.T) {
for i, tc := range cases {
actual, lines := Wrap(tc.Input, tc.Lim)
if actual != tc.Output {
- t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%s`\n\nActual Output:\n\n`%s`",
+ t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%s`\n\nActual Output:\n`\n%s`",
i, tc.Input, tc.Output, actual)
}
@@ -118,6 +118,38 @@ func TestWrap(t *testing.T) {
}
}
+func TestWrapLeftPadded(t *testing.T) {
+ cases := []struct {
+ input, output string
+ lim, pad int
+ }{
+ {
+ "The Lorem ipsum text is typically composed of pseudo-Latin words. It is commonly used as placeholder text to examine or demonstrate the visual effects of various graphic design.",
+ ` The Lorem ipsum text is typically composed of
+ pseudo-Latin words. It is commonly used as placeholder
+ text to examine or demonstrate the visual effects of
+ various graphic design.`,
+ 59, 4,
+ },
+ }
+
+ for i, tc := range cases {
+ actual, lines := WrapLeftPadded(tc.input, tc.lim, tc.pad)
+ if actual != tc.output {
+ t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n`\n%s`\n\nActual Output:\n`\n%s\n%s`",
+ i, tc.input, tc.output,
+ "|"+strings.Repeat("-", tc.lim-2)+"|",
+ actual)
+ }
+
+ expected := len(strings.Split(tc.output, "\n"))
+ if expected != lines {
+ t.Fatalf("Case %d Nb lines mismatch\nExpected:%d\nActual:%d",
+ i, expected, lines)
+ }
+ }
+}
+
func TestWordLen(t *testing.T) {
cases := []struct {
Input string