line_test.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. line.Output()
  112. }
  113. }
  114. func BenchmarkLineColor(b *testing.B) {
  115. Unicode = false
  116. color := ColorText("BRI WHI ON BLUE")
  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, DefaultColor: color}
  121. line.Output()
  122. }
  123. }
  124. // Using RenderUppercase vs. RenderBlueYellow
  125. // BenchmarkLineRender-4 739462 1709 ns/op 376 B/op 13 allocs/op
  126. // BenchmarkLineRender-4 862102 1434 ns/op 648 B/op 9 allocs/op
  127. /*
  128. // This actually made BenchmarkLineUpdate worse.
  129. func printd(value int64, write io.Writer) {
  130. var buffer [32]byte
  131. var pos int
  132. if value == 0 {
  133. write.Write([]byte{'0'})
  134. return
  135. }
  136. for value > 0 {
  137. buffer[pos] = byte(int64('0') + value%10)
  138. pos++
  139. value = value / 10
  140. }
  141. for pos != 0 {
  142. pos--
  143. write.Write(buffer[pos : pos+1])
  144. }
  145. }
  146. */
  147. func BenchmarkLineUpdate(b *testing.B) {
  148. Unicode = false
  149. var line *Line = &Line{}
  150. var n int
  151. line.UpdateF = func(u *bytes.Buffer) {
  152. u.Reset()
  153. /*
  154. u.WriteString("Line ")
  155. printd(int64(n), u)
  156. u.WriteString(" of ")
  157. printd(int64(b.N), u)
  158. */
  159. fmt.Fprintf(u, "Line %d of %d", n, b.N)
  160. }
  161. line.Update()
  162. for n = 0; n < b.N; n++ {
  163. line.Update()
  164. line.Output()
  165. }
  166. }
  167. func BenchmarkLineRender(b *testing.B) {
  168. Unicode = false
  169. var rf ColorRender = RenderUppercase("RED", "GREEN")
  170. var line *Line = NewLine("ThIs Is CrAzY TeXt HeRe")
  171. line.RenderF = rf
  172. var n int
  173. for n = 0; n < b.N; n++ {
  174. line.Output()
  175. }
  176. }
  177. // Benchmarks / profiling
  178. // BenchmarkLineColor-4 2868162 403.9 ns/op 8 B/op 0 allocs/op
  179. // BenchmarkLineColor-4 2944704 400.0 ns/op 8 B/op 0 allocs/op
  180. // No change making Color strings to []byte. (reverted change)
  181. func BenchmarkLineRenderUpdate(b *testing.B) {
  182. var Up = ColorText("BLUE")
  183. var Down = ColorText("BOLD BLUE")
  184. var Num = ColorText("BRI GREEN")
  185. var Sym = ColorText("CYAN")
  186. var render = func(output *bytes.Buffer, text []byte) {
  187. output.Reset()
  188. var last *string
  189. // var r Render = Render{Line: text}
  190. for _, letter := range text {
  191. if unicode.IsUpper(rune(letter)) {
  192. if last != &Up {
  193. output.WriteString(Up)
  194. last = &Up
  195. }
  196. // r.Append(Up, 1)
  197. } else if unicode.IsLower(rune(letter)) {
  198. if last != &Down {
  199. output.WriteString(Down)
  200. last = &Down
  201. }
  202. // r.Append(Down, 1)
  203. } else if unicode.IsDigit(rune(letter)) {
  204. if last != &Num {
  205. output.WriteString(Num)
  206. last = &Num
  207. }
  208. // r.Append(Num, 1)
  209. } else {
  210. if last != &Sym {
  211. output.WriteString(Sym)
  212. last = &Sym
  213. }
  214. //r.Append(Sym, 1)
  215. }
  216. output.WriteByte(letter)
  217. // output.WriteString(string(letter))
  218. }
  219. // return output.Bytes()
  220. // return r.Result
  221. }
  222. var up int
  223. var updater = func(u *bytes.Buffer) {
  224. u.Reset()
  225. fmt.Fprintf(u, "The Value: %d", up)
  226. // u.WriteString("The Value: ")
  227. // u.WriteString(strconv.Itoa(up))
  228. up++
  229. // return fmt.Sprintf("The Value: %d", up)
  230. }
  231. var line *Line = &Line{UpdateF: updater,
  232. RenderF: render,
  233. Width: 18}
  234. for i := 0; i < b.N; i++ {
  235. line.Update()
  236. line.Output()
  237. }
  238. }