mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
a9525da8a4
This makes easier to read and debug these tests. This also reduces test lines count by 15% from 3K to 2.5K See https://itnext.io/f-tests-as-a-replacement-for-table-driven-tests-in-go-8814a8b19e9e While at it, consistently use t.Fatal* instead of t.Error*, since t.Error* usually leads to more complicated and fragile tests, while it doesn't bring any practical benefits over t.Fatal*.
71 lines
2.2 KiB
Go
71 lines
2.2 KiB
Go
package eureka
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discoveryutils"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promutils"
|
|
)
|
|
|
|
func TestAddInstanceLabels(t *testing.T) {
|
|
f := func(applications *applications, labelssExpected []*promutils.Labels) {
|
|
t.Helper()
|
|
|
|
labelss := addInstanceLabels(applications)
|
|
discoveryutils.TestEqualLabelss(t, labelss, labelssExpected)
|
|
}
|
|
|
|
// one application
|
|
applications := &applications{
|
|
Applications: []Application{
|
|
{
|
|
Name: "test-app",
|
|
Instances: []Instance{
|
|
{
|
|
Status: "Ok",
|
|
HealthCheckURL: "some-url",
|
|
HomePageURL: "some-home-url",
|
|
StatusPageURL: "some-status-url",
|
|
HostName: "host-1",
|
|
IPAddr: "10.15.11.11",
|
|
CountryID: 5,
|
|
VipAddress: "10.15.11.11",
|
|
InstanceID: "some-id",
|
|
Metadata: MetaData{
|
|
Items: []Tag{
|
|
{
|
|
Content: "value-1",
|
|
XMLName: struct{ Space, Local string }{Local: "key-1"},
|
|
},
|
|
},
|
|
},
|
|
Port: Port{
|
|
Port: 9100,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
labelssExpected := []*promutils.Labels{
|
|
promutils.NewLabelsFromMap(map[string]string{
|
|
"__address__": "host-1:9100",
|
|
"instance": "some-id",
|
|
"__meta_eureka_app_instance_hostname": "host-1",
|
|
"__meta_eureka_app_name": "test-app",
|
|
"__meta_eureka_app_instance_healthcheck_url": "some-url",
|
|
"__meta_eureka_app_instance_ip_addr": "10.15.11.11",
|
|
"__meta_eureka_app_instance_vip_address": "10.15.11.11",
|
|
"__meta_eureka_app_instance_secure_vip_address": "",
|
|
"__meta_eureka_app_instance_country_id": "5",
|
|
"__meta_eureka_app_instance_homepage_url": "some-home-url",
|
|
"__meta_eureka_app_instance_statuspage_url": "some-status-url",
|
|
"__meta_eureka_app_instance_id": "some-id",
|
|
"__meta_eureka_app_instance_metadata_key_1": "value-1",
|
|
"__meta_eureka_app_instance_port": "9100",
|
|
"__meta_eureka_app_instance_port_enabled": "false",
|
|
"__meta_eureka_app_instance_status": "Ok",
|
|
}),
|
|
}
|
|
f(applications, labelssExpected)
|
|
}
|