-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aws/csm: Add support for AWS_CSM_HOST env option (#2677)
Adds support for a host to be configured for the SDK's metric reporting Client Side Metrics (CSM) client via the AWS_CSM_HOST environment variable.
- Loading branch information
Showing
6 changed files
with
157 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters