color_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package ircclient
  2. import (
  3. "testing"
  4. )
  5. type colortext struct {
  6. Text string
  7. Color int
  8. }
  9. func TestColor(t *testing.T) {
  10. var sent colortext
  11. var expect string
  12. var got string
  13. var plain string
  14. for sent, expect = range map[colortext]string{{Text: "One", Color: 1}: "\x0301One\x0f",
  15. {"Two", 2}: "\x0302Two\x0f",
  16. {"Three", 3}: "\x0303Three\x0f"} {
  17. got = Color(sent.Color, sent.Text)
  18. if got != expect {
  19. t.Errorf("Got %s, expected %s", got, expect)
  20. }
  21. plain = Stripper(got)
  22. if plain != sent.Text {
  23. t.Errorf("Got %s, expected %s", plain, sent.Text)
  24. }
  25. }
  26. }
  27. func TestBold(t *testing.T) {
  28. var sent string
  29. var expect string
  30. var got string
  31. var plain string
  32. for sent, expect = range map[string]string{"One": "\x02One\x02",
  33. "Two": "\x02Two\x02",
  34. "Three": "\x02Three\x02"} {
  35. got = Bold(sent)
  36. if got != expect {
  37. t.Errorf("Got %s, expected %s", got, expect)
  38. }
  39. plain = Stripper(got)
  40. if plain != sent {
  41. t.Errorf("Got %s, expected %s", plain, sent)
  42. }
  43. }
  44. }
  45. func TestUnderline(t *testing.T) {
  46. var sent string
  47. var expect string
  48. var got string
  49. var plain string
  50. for sent, expect = range map[string]string{"One": "\x16One\x16",
  51. "Two": "\x16Two\x16",
  52. "Three": "\x16Three\x16"} {
  53. got = Underline(sent)
  54. if got != expect {
  55. t.Errorf("Got %s, expected %s", got, expect)
  56. }
  57. plain = Stripper(got)
  58. if plain != sent {
  59. t.Errorf("Got %s, expected %s", plain, sent)
  60. }
  61. }
  62. }