mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-24 17:04:42 +01:00
37 lines
845 B
Go
37 lines
845 B
Go
|
package util
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestConvertGroupAndServiceToKey(t *testing.T) {
|
||
|
type Scenario struct {
|
||
|
GroupName string
|
||
|
ServiceName string
|
||
|
ExpectedOutput string
|
||
|
}
|
||
|
scenarios := []Scenario{
|
||
|
{
|
||
|
GroupName: "Core",
|
||
|
ServiceName: "Front End",
|
||
|
ExpectedOutput: "core_front-end",
|
||
|
},
|
||
|
{
|
||
|
GroupName: "Load balancers",
|
||
|
ServiceName: "us-west-2",
|
||
|
ExpectedOutput: "load-balancers_us-west-2",
|
||
|
},
|
||
|
{
|
||
|
GroupName: "a/b test",
|
||
|
ServiceName: "a",
|
||
|
ExpectedOutput: "a-b-test_a",
|
||
|
},
|
||
|
}
|
||
|
for _, scenario := range scenarios {
|
||
|
t.Run(scenario.ExpectedOutput, func(t *testing.T) {
|
||
|
output := ConvertGroupAndServiceToKey(scenario.GroupName, scenario.ServiceName)
|
||
|
if output != scenario.ExpectedOutput {
|
||
|
t.Errorf("Expected '%s', got '%s'", scenario.ExpectedOutput, output)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|