server_test.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package snowflake_server
  2. import (
  3. "net"
  4. "strconv"
  5. "testing"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestClientAddr(t *testing.T) {
  9. Convey("Testing clientAddr", t, func() {
  10. // good tests
  11. for _, test := range []struct {
  12. input string
  13. expected net.IP
  14. }{
  15. {"1.2.3.4", net.ParseIP("1.2.3.4")},
  16. {"1:2::3:4", net.ParseIP("1:2::3:4")},
  17. } {
  18. useraddr := clientAddr(test.input).String()
  19. host, port, err := net.SplitHostPort(useraddr)
  20. if err != nil {
  21. t.Errorf("clientAddr(%q) → SplitHostPort error %v", test.input, err)
  22. continue
  23. }
  24. if !test.expected.Equal(net.ParseIP(host)) {
  25. t.Errorf("clientAddr(%q) → host %q, not %v", test.input, host, test.expected)
  26. }
  27. portNo, err := strconv.Atoi(port)
  28. if err != nil {
  29. t.Errorf("clientAddr(%q) → port %q", test.input, port)
  30. continue
  31. }
  32. if portNo == 0 {
  33. t.Errorf("clientAddr(%q) → port %d", test.input, portNo)
  34. }
  35. }
  36. // bad tests
  37. for _, input := range []string{
  38. "",
  39. "abc",
  40. "1.2.3.4.5",
  41. "[12::34]",
  42. "0.0.0.0",
  43. "[::]",
  44. } {
  45. useraddr := clientAddr(input).String()
  46. if useraddr != "" {
  47. t.Errorf("clientAddr(%q) → %q, not %q", input, useraddr, "")
  48. }
  49. }
  50. })
  51. }