line_test.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. package door
  2. import (
  3. "bytes"
  4. "fmt"
  5. "testing"
  6. "unicode"
  7. )
  8. func TestLine(t *testing.T) {
  9. var textBuff *bytes.Buffer = &bytes.Buffer{}
  10. textBuff.WriteString("Test Me")
  11. var line Line = Line{Text: textBuff}
  12. var output string = string(line.Output())
  13. var expect string = string("Test Me")
  14. if output != expect {
  15. t.Errorf("Line: Expected %#v, got %#v", expect, output)
  16. }
  17. if line.Update() {
  18. t.Error("Line: No updater, should return false")
  19. }
  20. line.DefaultColor = Color([]int{0})
  21. line.Width = 8
  22. output = string(line.Output())
  23. expect = "\x1b[0mTest Me "
  24. if output != expect {
  25. t.Errorf("Line: Expected %#v, got %#v", expect, output)
  26. }
  27. // leave the default color, it is ignored when there's a render function
  28. // line.DefaultColor = ""
  29. line.RenderF = RenderBlueYellow
  30. output = string(line.Output())
  31. var blue string = ColorText("BOLD BLUE")
  32. var yellow string = ColorText("BOLD YELLOW")
  33. expect = blue + "T" + yellow + "est " + blue + "M" + yellow + "e "
  34. if output != expect {
  35. t.Errorf("Line: Expected %#v, got %#v", expect, output)
  36. }
  37. }
  38. func TestLineUpdate(t *testing.T) {
  39. var counter int = 0
  40. uf := func(u *bytes.Buffer) {
  41. u.Reset()
  42. fmt.Fprintf(u, "Count: %d", counter)
  43. }
  44. var line Line = Line{UpdateF: uf}
  45. line.Update()
  46. var output string = string(line.Output())
  47. var expect string = "Count: 0"
  48. if output != expect {
  49. t.Errorf("LineUpdate: Expected %#v, got %#v", expect, output)
  50. }
  51. if line.Update() {
  52. t.Error("Unexpected Update: should have returned false. (no change)")
  53. }
  54. counter++
  55. if !line.Update() {
  56. t.Error("Missing Update: value was changed, Text should have changed")
  57. }
  58. output = string(line.Output())
  59. expect = "Count: 1"
  60. if output != expect {
  61. t.Errorf("LineUpdate: Expected %#v, got %#v", expect, output)
  62. }
  63. }
  64. func TestLineUnicode(t *testing.T) {
  65. Unicode = true
  66. // code point > FFFF, use \U00000000 (not \u).
  67. var lineBuff *bytes.Buffer = &bytes.Buffer{}
  68. lineBuff.WriteString("Howdy \U0001f920")
  69. var line Line = Line{Text: lineBuff}
  70. var output []byte = line.Output()
  71. var expect []byte = []byte("Howdy 🤠")
  72. if bytes.Compare(output, expect) != 0 {
  73. t.Errorf("LineUnicode: Expected %s, got %s", expect, output)
  74. }
  75. if StringLen(expect) != 8 {
  76. t.Errorf("LineUnicode Strlen: Expected 8, got %d", StringLen(expect))
  77. }
  78. // 🤠 = 2 chars.
  79. line.Width = 9
  80. output = line.Output()
  81. expect = []byte("Howdy 🤠 ")
  82. if bytes.Compare(output, expect) != 0 {
  83. t.Errorf("LineUnicode: Expected %#v, got %#v", expect, output)
  84. }
  85. }
  86. func TestLineCP437(t *testing.T) {
  87. Unicode = false
  88. var tests []string = []string{"\xdb TEXT \xdb",
  89. "\xf1 F1", "\xf2 F2", "\xf3 F3"}
  90. for _, test := range tests {
  91. var lineBuff *bytes.Buffer = &bytes.Buffer{}
  92. lineBuff.WriteString(test)
  93. var line Line = Line{Text: lineBuff}
  94. var output string = string(line.Output())
  95. var expect string = test
  96. if output != expect {
  97. t.Errorf("LineCP437: Expected %#v, got %#v", expect, output)
  98. }
  99. }
  100. }
  101. // Benchmarks for profiling
  102. // go test -bench=BenchmarkLine -benchmem -memprofile memory.out -cpuprofile cpu.out
  103. // go tool pprof memory.out
  104. // go tool pprof cpu.out
  105. func BenchmarkLine(b *testing.B) {
  106. Unicode = false
  107. for n := 0; n < b.N; n++ {
  108. var lineBuff *bytes.Buffer = &bytes.Buffer{}
  109. lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
  110. var line Line = Line{Text: lineBuff}
  111. var output []byte = line.Output()
  112. _ = output
  113. }
  114. }
  115. // Using RenderUppercase vs. RenderBlueYellow
  116. // BenchmarkLineRender-4 739462 1709 ns/op 376 B/op 13 allocs/op
  117. // BenchmarkLineRender-4 862102 1434 ns/op 648 B/op 9 allocs/op
  118. func BenchmarkLineRender(b *testing.B) {
  119. Unicode = false
  120. var rf ColorRender = RenderUppercase("RED", "GREEN")
  121. for n := 0; n < b.N; n++ {
  122. var lineBuff *bytes.Buffer = &bytes.Buffer{}
  123. lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
  124. var line Line = Line{Text: lineBuff, RenderF: rf} // RenderBlueYellow}
  125. var output []byte = line.Output()
  126. _ = output
  127. }
  128. }
  129. // Benchmarks / profiling
  130. // BenchmarkLineColor-4 2868162 403.9 ns/op 8 B/op 0 allocs/op
  131. // BenchmarkLineColor-4 2944704 400.0 ns/op 8 B/op 0 allocs/op
  132. // No change making Color strings to []byte. (reverted change)
  133. func BenchmarkLineColor(b *testing.B) {
  134. var Up = ColorText("BLUE")
  135. var Down = ColorText("BOLD BLUE")
  136. var Num = ColorText("BRI GREEN")
  137. var Sym = ColorText("CYAN")
  138. var render = func(output *bytes.Buffer, text []byte) []byte {
  139. output.Reset()
  140. var last *string
  141. // var r Render = Render{Line: text}
  142. for _, letter := range text {
  143. if unicode.IsUpper(rune(letter)) {
  144. if last != &Up {
  145. output.WriteString(Up)
  146. last = &Up
  147. }
  148. // r.Append(Up, 1)
  149. } else if unicode.IsLower(rune(letter)) {
  150. if last != &Down {
  151. output.WriteString(Down)
  152. last = &Down
  153. }
  154. // r.Append(Down, 1)
  155. } else if unicode.IsDigit(rune(letter)) {
  156. if last != &Num {
  157. output.WriteString(Num)
  158. last = &Num
  159. }
  160. // r.Append(Num, 1)
  161. } else {
  162. if last != &Sym {
  163. output.WriteString(Sym)
  164. last = &Sym
  165. }
  166. //r.Append(Sym, 1)
  167. }
  168. output.WriteByte(letter)
  169. // output.WriteString(string(letter))
  170. }
  171. return output.Bytes()
  172. // return r.Result
  173. }
  174. var up int
  175. var updater = func(u *bytes.Buffer) {
  176. u.Reset()
  177. fmt.Fprintf(u, "The Value: %d", up)
  178. // u.WriteString("The Value: ")
  179. // u.WriteString(strconv.Itoa(up))
  180. up++
  181. // return fmt.Sprintf("The Value: %d", up)
  182. }
  183. var line Line = Line{UpdateF: updater,
  184. RenderF: render,
  185. Width: 18}
  186. for i := 0; i < b.N; i++ {
  187. line.Update()
  188. line.Output()
  189. }
  190. }