mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
23 lines
528 B
Go
23 lines
528 B
Go
|
package ovhcloud
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promauth"
|
||
|
)
|
||
|
|
||
|
func Test_GetLabels(t *testing.T) {
|
||
|
t.Run("incorrect service", func(t *testing.T) {
|
||
|
sdc := &SDConfig{
|
||
|
Endpoint: "ovh-ca",
|
||
|
ApplicationKey: "no-op",
|
||
|
ApplicationSecret: &promauth.Secret{S: "no-op"},
|
||
|
ConsumerKey: &promauth.Secret{S: "no-op"},
|
||
|
Service: "incorrect service",
|
||
|
}
|
||
|
if _, err := sdc.GetLabels(""); err == nil {
|
||
|
t.Fatalf("newAPIConfig want err, got: %v", err)
|
||
|
}
|
||
|
})
|
||
|
}
|