color_test.go 579 B

1234567891011121314151617181920212223242526272829
  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. }