.examples
.github
alerting
client
config
controller
core
docs
jsonpath
metrics
pattern
security
storage
test
util
key.go
key_bench_test.go
key_test.go
watchdog
web
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
Makefile
README.md
config.yaml
go.mod
go.sum
main.go
37 lines
856 B
Go
37 lines
856 B
Go
package util
|
|
|
|
import "testing"
|
|
|
|
func TestConvertGroupAndEndpointNameToKey(t *testing.T) {
|
|
type Scenario struct {
|
|
GroupName string
|
|
EndpointName string
|
|
ExpectedOutput string
|
|
}
|
|
scenarios := []Scenario{
|
|
{
|
|
GroupName: "Core",
|
|
EndpointName: "Front End",
|
|
ExpectedOutput: "core_front-end",
|
|
},
|
|
{
|
|
GroupName: "Load balancers",
|
|
EndpointName: "us-west-2",
|
|
ExpectedOutput: "load-balancers_us-west-2",
|
|
},
|
|
{
|
|
GroupName: "a/b test",
|
|
EndpointName: "a",
|
|
ExpectedOutput: "a-b-test_a",
|
|
},
|
|
}
|
|
for _, scenario := range scenarios {
|
|
t.Run(scenario.ExpectedOutput, func(t *testing.T) {
|
|
output := ConvertGroupAndEndpointNameToKey(scenario.GroupName, scenario.EndpointName)
|
|
if output != scenario.ExpectedOutput {
|
|
t.Errorf("expected '%s', got '%s'", scenario.ExpectedOutput, output)
|
|
}
|
|
})
|
|
}
|
|
}
|