line_test.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. func BenchmarkLineRender(b *testing.B) {
  116. Unicode = false
  117. for n := 0; n < b.N; n++ {
  118. var lineBuff *bytes.Buffer = &bytes.Buffer{}
  119. lineBuff.WriteString(fmt.Sprintf("Line %d of %d", n, b.N))
  120. var line Line = Line{Text: lineBuff, RenderF: RenderBlueYellow}
  121. var output []byte = line.Output()
  122. _ = output
  123. }
  124. }
  125. // Benchmarks / profiling
  126. func BenchmarkLineColor(b *testing.B) {
  127. var Up string = ColorText("BLUE")
  128. var Down string = ColorText("BOLD BLUE")
  129. var Num string = ColorText("BRI GREEN")
  130. var Sym string = ColorText("CYAN")
  131. var render = func(output *bytes.Buffer, text []byte) []byte {
  132. output.Reset()
  133. var last *string
  134. // var r Render = Render{Line: text}
  135. for _, letter := range text {
  136. if unicode.IsUpper(rune(letter)) {
  137. if last != &Up {
  138. output.WriteString(Up)
  139. last = &Up
  140. }
  141. // r.Append(Up, 1)
  142. } else if unicode.IsLower(rune(letter)) {
  143. if last != &Down {
  144. output.WriteString(Down)
  145. last = &Down
  146. }
  147. // r.Append(Down, 1)
  148. } else if unicode.IsDigit(rune(letter)) {
  149. if last != &Num {
  150. output.WriteString(Num)
  151. last = &Num
  152. }
  153. // r.Append(Num, 1)
  154. } else {
  155. if last != &Sym {
  156. output.WriteString(Sym)
  157. last = &Sym
  158. }
  159. //r.Append(Sym, 1)
  160. }
  161. output.WriteByte(letter)
  162. // output.WriteString(string(letter))
  163. }
  164. return output.Bytes()
  165. // return r.Result
  166. }
  167. var up int
  168. var updater = func(u *bytes.Buffer) {
  169. u.Reset()
  170. fmt.Fprintf(u, "The Value: %d", up)
  171. // u.WriteString("The Value: ")
  172. // u.WriteString(strconv.Itoa(up))
  173. up++
  174. // return fmt.Sprintf("The Value: %d", up)
  175. }
  176. var line Line = Line{UpdateF: updater,
  177. RenderF: render,
  178. Width: 18}
  179. for i := 0; i < b.N; i++ {
  180. line.Update()
  181. line.Output()
  182. }
  183. }