text_test.go

  1package text
  2
  3import (
  4	"strings"
  5	"testing"
  6)
  7
  8func TestWrap(t *testing.T) {
  9	cases := []struct {
 10		Input, Output string
 11		Lim           int
 12	}{
 13		// A simple word passes through.
 14		{
 15			"foo",
 16			"foo",
 17			4,
 18		},
 19		// Word breaking
 20		{
 21			"foobarbaz",
 22			"foob\narba\nz",
 23			4,
 24		},
 25		// Lines are broken at whitespace.
 26		{
 27			"foo bar baz",
 28			"foo\nbar\nbaz",
 29			4,
 30		},
 31		// Word breaking
 32		{
 33			"foo bars bazzes",
 34			"foo\nbars\nbazz\nes",
 35			4,
 36		},
 37		// A word that would run beyond the width is wrapped.
 38		{
 39			"fo sop",
 40			"fo\nsop",
 41			4,
 42		},
 43		// A tab counts as 4 characters.
 44		{
 45			"foo\nb\t r\n baz",
 46			"foo\nb\n  r\n baz",
 47			4,
 48		},
 49		// Trailing whitespace is removed after used for wrapping.
 50		// Runs of whitespace on which a line is broken are removed.
 51		{
 52			"foo    \nb   ar   ",
 53			"foo\n\nb\nar\n",
 54			4,
 55		},
 56		// An explicit line break at the end of the input is preserved.
 57		{
 58			"foo bar baz\n",
 59			"foo\nbar\nbaz\n",
 60			4,
 61		},
 62		// Explicit break are always preserved.
 63		{
 64			"\nfoo bar\n\n\nbaz\n",
 65			"\nfoo\nbar\n\n\nbaz\n",
 66			4,
 67		},
 68		// Ignore complete words with terminal color sequence
 69		{
 70			"foo \x1b[31mbar\x1b[0m baz",
 71			"foo\n\x1b[31mbar\x1b[0m\nbaz",
 72			4,
 73		},
 74		// Handle words with colors sequence inside the word
 75		{
 76			"foo b\x1b[31mbar\x1b[0mr baz",
 77			"foo\nb\x1b[31mbar\n\x1b[0mr\nbaz",
 78			4,
 79		},
 80		// Break words with colors sequence inside the word
 81		{
 82			"foo bb\x1b[31mbar\x1b[0mr baz",
 83			"foo\nbb\x1b[31mba\nr\x1b[0mr\nbaz",
 84			4,
 85		},
 86		// Complete example:
 87		{
 88			" This is a list: \n\n\t* foo\n\t* bar\n\n\n\t* baz  \nBAM    ",
 89			" This\nis a\nlist:\n\n\n    *\nfoo\n    *\nbar\n\n\n    *\nbaz\nBAM\n",
 90			6,
 91		},
 92		// Handle chinese (wide characters)
 93		{
 94			"婞一枳郲逴靲屮蜧曀殳,掫乇峔掮傎溒兀緉冘仜。",
 95			"婞一枳郲逴靲\n屮蜧曀殳,掫\n乇峔掮傎溒兀\n緉冘仜。",
 96			12,
 97		},
 98		// Handle chinese with colors
 99		{
100			"婞一枳郲逴\x1b[31m靲屮蜧曀殳,掫乇峔掮傎溒\x1b[0m兀緉冘仜。",
101			"婞一枳郲逴\x1b[31m靲\n屮蜧曀殳,掫\n乇峔掮傎溒\x1b[0m兀\n緉冘仜。",
102			12,
103		},
104	}
105
106	for i, tc := range cases {
107		actual, lines := Wrap(tc.Input, tc.Lim)
108		if actual != tc.Output {
109			t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%s`\n\nActual Output:\n`\n%s`",
110				i, tc.Input, tc.Output, actual)
111		}
112
113		expected := len(strings.Split(tc.Output, "\n"))
114		if expected != lines {
115			t.Fatalf("Case %d Nb lines mismatch\nExpected:%d\nActual:%d",
116				i, expected, lines)
117		}
118	}
119}
120
121func TestWrapLeftPadded(t *testing.T) {
122	cases := []struct {
123		input, output string
124		lim, pad      int
125	}{
126		{
127			"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.",
128			`    The Lorem ipsum text is typically composed of
129    pseudo-Latin words. It is commonly used as placeholder
130    text to examine or demonstrate the visual effects of
131    various graphic design.`,
132			59, 4,
133		},
134		// Handle Chinese
135		{
136			"婞一枳郲逴靲屮蜧曀殳,掫乇峔掮傎溒兀緉冘仜。郼牪艽螗媷錵朸一詅掜豗怙刉笀丌,楀棶乇矹迡搦囷圣亍昄漚粁仈祂。覂一洳袶揙楱亍滻瘯毌,掗屮柅軡菵腩乜榵毌夯。勼哻怌婇怤灟葠雺奷朾恦扰衪岨坋誁乇芚誙腞。冇笉妺悆浂鱦賌廌灱灱觓坋佫呬耴跣兀枔蓔輈。嵅咍犴膰痭瘰机一靬涽捊矷尒玶乇,煚塈丌岰陊鉖怞戉兀甿跾觓夬侄。棩岧汌橩僁螗玎一逭舴圂衪扐衲兀,嵲媕亍衩衿溽昃夯丌侄蒰扂丱呤。毰侘妅錣廇螉仴一暀淖蚗佶庂咺丌,輀鈁乇彽洢溦洰氶乇构碨洐巿阹。",
137			`    婞一枳郲逴靲屮蜧曀殳,掫乇峔掮傎溒兀緉冘仜。郼牪艽螗媷
138    錵朸一詅掜豗怙刉笀丌,楀棶乇矹迡搦囷圣亍昄漚粁仈祂。覂
139    一洳袶揙楱亍滻瘯毌,掗屮柅軡菵腩乜榵毌夯。勼哻怌婇怤灟
140    葠雺奷朾恦扰衪岨坋誁乇芚誙腞。冇笉妺悆浂鱦賌廌灱灱觓坋
141    佫呬耴跣兀枔蓔輈。嵅咍犴膰痭瘰机一靬涽捊矷尒玶乇,煚塈
142    丌岰陊鉖怞戉兀甿跾觓夬侄。棩岧汌橩僁螗玎一逭舴圂衪扐衲
143    兀,嵲媕亍衩衿溽昃夯丌侄蒰扂丱呤。毰侘妅錣廇螉仴一暀淖
144    蚗佶庂咺丌,輀鈁乇彽洢溦洰氶乇构碨洐巿阹。`,
145			59, 4,
146		},
147	}
148
149	for i, tc := range cases {
150		actual, lines := WrapLeftPadded(tc.input, tc.lim, tc.pad)
151		if actual != tc.output {
152			t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n`\n%s`\n\nActual Output:\n`\n%s\n%s`",
153				i, tc.input, tc.output,
154				"|"+strings.Repeat("-", tc.lim-2)+"|",
155				actual)
156		}
157
158		expected := len(strings.Split(tc.output, "\n"))
159		if expected != lines {
160			t.Fatalf("Case %d Nb lines mismatch\nExpected:%d\nActual:%d",
161				i, expected, lines)
162		}
163	}
164}
165
166func TestWordLen(t *testing.T) {
167	cases := []struct {
168		Input  string
169		Length int
170	}{
171		// A simple word
172		{
173			"foo",
174			3,
175		},
176		// A simple word with colors
177		{
178			"\x1b[31mbar\x1b[0m",
179			3,
180		},
181		// Handle prefix and suffix properly
182		{
183			"foo\x1b[31mfoobarHoy\x1b[0mbaaar",
184			17,
185		},
186		// Handle chinese
187		{
188			"快檢什麼望對",
189			12,
190		},
191		// Handle chinese with colors
192		{
193			"快\x1b[31m檢什麼\x1b[0m望對",
194			12,
195		},
196	}
197
198	for i, tc := range cases {
199		l := wordLen(tc.Input)
200		if l != tc.Length {
201			t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%d`\n\nActual Output:\n\n`%d`",
202				i, tc.Input, tc.Length, l)
203		}
204	}
205}
206
207func TestSplitWord(t *testing.T) {
208	cases := []struct {
209		Input            string
210		Length           int
211		Result, Leftover string
212	}{
213		// A simple word passes through.
214		{
215			"foo",
216			4,
217			"foo", "",
218		},
219		// Cut at the right place
220		{
221			"foobarHoy",
222			4,
223			"foob", "arHoy",
224		},
225		// A simple word passes through with colors
226		{
227			"\x1b[31mbar\x1b[0m",
228			4,
229			"\x1b[31mbar\x1b[0m", "",
230		},
231		// Cut at the right place with colors
232		{
233			"\x1b[31mfoobarHoy\x1b[0m",
234			4,
235			"\x1b[31mfoob", "arHoy\x1b[0m",
236		},
237		// Handle prefix and suffix properly
238		{
239			"foo\x1b[31mfoobarHoy\x1b[0mbaaar",
240			4,
241			"foo\x1b[31mf", "oobarHoy\x1b[0mbaaar",
242		},
243		// Cut properly with length = 0
244		{
245			"foo",
246			0,
247			"", "foo",
248		},
249		// Handle chinese
250		{
251			"快檢什麼望對",
252			4,
253			"快檢", "什麼望對",
254		},
255		{
256			"快檢什麼望對",
257			5,
258			"快檢", "什麼望對",
259		},
260		// Handle chinese with colors
261		{
262			"快\x1b[31m檢什麼\x1b[0m望對",
263			4,
264			"快\x1b[31m檢", "什麼\x1b[0m望對",
265		},
266	}
267
268	for i, tc := range cases {
269		result, leftover := splitWord(tc.Input, tc.Length)
270		if result != tc.Result || leftover != tc.Leftover {
271			t.Fatalf("Case %d Input:\n\n`%s`\n\nExpected Output:\n\n`%s` - `%s`\n\nActual Output:\n\n`%s` - `%s`",
272				i, tc.Input, tc.Result, tc.Leftover, result, leftover)
273		}
274	}
275}