File: address_test.go

package info (click to toggle)
golang-github-aws-aws-sdk-go 1.36.33-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 163,900 kB
  • sloc: makefile: 182
file content (40 lines) | stat: -rw-r--r-- 841 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// +build go1.7

package csm

import "testing"

func TestAddressWithDefaults(t *testing.T) {
	cases := map[string]struct {
		Host, Port string
		Expect     string
	}{
		"ip": {
			Host: "127.0.0.2", Port: "", Expect: "127.0.0.2:31000",
		},
		"localhost": {
			Host: "localhost", Port: "", Expect: "127.0.0.1:31000",
		},
		"uppercase localhost": {
			Host: "LOCALHOST", Port: "", Expect: "127.0.0.1:31000",
		},
		"port": {
			Host: "localhost", Port: "32000", Expect: "127.0.0.1:32000",
		},
		"ip6": {
			Host: "::1", Port: "", Expect: "[::1]:31000",
		},
		"unset": {
			Host: "", Port: "", Expect: "127.0.0.1:31000",
		},
	}

	for name, c := range cases {
		t.Run(name, func(t *testing.T) {
			actual := AddressWithDefaults(c.Host, c.Port)
			if e, a := c.Expect, actual; e != a {
				t.Errorf("expect %v, got %v", e, a)
			}
		})
	}
}