parsers_test.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package parsers
  2. import (
  3. "strings"
  4. "testing"
  5. )
  6. func TestParseHost(t *testing.T) {
  7. var (
  8. defaultHttpHost = "127.0.0.1"
  9. defaultUnix = "/var/run/docker.sock"
  10. )
  11. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "0.0.0.0"); err == nil {
  12. t.Errorf("tcp 0.0.0.0 address expected error return, but err == nil, got %s", addr)
  13. }
  14. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "tcp://"); err == nil {
  15. t.Errorf("default tcp:// address expected error return, but err == nil, got %s", addr)
  16. }
  17. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "0.0.0.1:5555"); err != nil || addr != "tcp://0.0.0.1:5555" {
  18. t.Errorf("0.0.0.1:5555 -> expected tcp://0.0.0.1:5555, got %s", addr)
  19. }
  20. if addr, err := ParseHost(defaultHttpHost, defaultUnix, ":6666"); err != nil || addr != "tcp://127.0.0.1:6666" {
  21. t.Errorf(":6666 -> expected tcp://127.0.0.1:6666, got %s", addr)
  22. }
  23. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "tcp://:7777"); err != nil || addr != "tcp://127.0.0.1:7777" {
  24. t.Errorf("tcp://:7777 -> expected tcp://127.0.0.1:7777, got %s", addr)
  25. }
  26. if addr, err := ParseHost(defaultHttpHost, defaultUnix, ""); err != nil || addr != "unix:///var/run/docker.sock" {
  27. t.Errorf("empty argument -> expected unix:///var/run/docker.sock, got %s", addr)
  28. }
  29. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "unix:///var/run/docker.sock"); err != nil || addr != "unix:///var/run/docker.sock" {
  30. t.Errorf("unix:///var/run/docker.sock -> expected unix:///var/run/docker.sock, got %s", addr)
  31. }
  32. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "unix://"); err != nil || addr != "unix:///var/run/docker.sock" {
  33. t.Errorf("unix:///var/run/docker.sock -> expected unix:///var/run/docker.sock, got %s", addr)
  34. }
  35. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "udp://127.0.0.1"); err == nil {
  36. t.Errorf("udp protocol address expected error return, but err == nil. Got %s", addr)
  37. }
  38. if addr, err := ParseHost(defaultHttpHost, defaultUnix, "udp://127.0.0.1:2375"); err == nil {
  39. t.Errorf("udp protocol address expected error return, but err == nil. Got %s", addr)
  40. }
  41. }
  42. func TestParseRepositoryTag(t *testing.T) {
  43. if repo, tag := ParseRepositoryTag("root"); repo != "root" || tag != "" {
  44. t.Errorf("Expected repo: '%s' and tag: '%s', got '%s' and '%s'", "root", "", repo, tag)
  45. }
  46. if repo, tag := ParseRepositoryTag("root:tag"); repo != "root" || tag != "tag" {
  47. t.Errorf("Expected repo: '%s' and tag: '%s', got '%s' and '%s'", "root", "tag", repo, tag)
  48. }
  49. if repo, tag := ParseRepositoryTag("user/repo"); repo != "user/repo" || tag != "" {
  50. t.Errorf("Expected repo: '%s' and tag: '%s', got '%s' and '%s'", "user/repo", "", repo, tag)
  51. }
  52. if repo, tag := ParseRepositoryTag("user/repo:tag"); repo != "user/repo" || tag != "tag" {
  53. t.Errorf("Expected repo: '%s' and tag: '%s', got '%s' and '%s'", "user/repo", "tag", repo, tag)
  54. }
  55. if repo, tag := ParseRepositoryTag("url:5000/repo"); repo != "url:5000/repo" || tag != "" {
  56. t.Errorf("Expected repo: '%s' and tag: '%s', got '%s' and '%s'", "url:5000/repo", "", repo, tag)
  57. }
  58. if repo, tag := ParseRepositoryTag("url:5000/repo:tag"); repo != "url:5000/repo" || tag != "tag" {
  59. t.Errorf("Expected repo: '%s' and tag: '%s', got '%s' and '%s'", "url:5000/repo", "tag", repo, tag)
  60. }
  61. }
  62. func TestParsePortMapping(t *testing.T) {
  63. data, err := PartParser("ip:public:private", "192.168.1.1:80:8080")
  64. if err != nil {
  65. t.Fatal(err)
  66. }
  67. if len(data) != 3 {
  68. t.FailNow()
  69. }
  70. if data["ip"] != "192.168.1.1" {
  71. t.Fail()
  72. }
  73. if data["public"] != "80" {
  74. t.Fail()
  75. }
  76. if data["private"] != "8080" {
  77. t.Fail()
  78. }
  79. }
  80. func TestParsePortRange(t *testing.T) {
  81. if start, end, err := ParsePortRange("8000-8080"); err != nil || start != 8000 || end != 8080 {
  82. t.Fatalf("Error: %s or Expecting {start,end} values {8000,8080} but found {%d,%d}.", err, start, end)
  83. }
  84. }
  85. func TestParsePortRangeIncorrectRange(t *testing.T) {
  86. if _, _, err := ParsePortRange("9000-8080"); err == nil || !strings.Contains(err.Error(), "Invalid range specified for the Port") {
  87. t.Fatalf("Expecting error 'Invalid range specified for the Port' but received %s.", err)
  88. }
  89. }
  90. func TestParsePortRangeIncorrectEndRange(t *testing.T) {
  91. if _, _, err := ParsePortRange("8000-a"); err == nil || !strings.Contains(err.Error(), "invalid syntax") {
  92. t.Fatalf("Expecting error 'Invalid range specified for the Port' but received %s.", err)
  93. }
  94. if _, _, err := ParsePortRange("8000-30a"); err == nil || !strings.Contains(err.Error(), "invalid syntax") {
  95. t.Fatalf("Expecting error 'Invalid range specified for the Port' but received %s.", err)
  96. }
  97. }
  98. func TestParsePortRangeIncorrectStartRange(t *testing.T) {
  99. if _, _, err := ParsePortRange("a-8000"); err == nil || !strings.Contains(err.Error(), "invalid syntax") {
  100. t.Fatalf("Expecting error 'Invalid range specified for the Port' but received %s.", err)
  101. }
  102. if _, _, err := ParsePortRange("30a-8000"); err == nil || !strings.Contains(err.Error(), "invalid syntax") {
  103. t.Fatalf("Expecting error 'Invalid range specified for the Port' but received %s.", err)
  104. }
  105. }