ipfs-cluster/informer/tags/config_test.go
Hector Sanjuan 1c0abde8a5 Informer: add tags informer
The tags informer produces metrics in the form tags:name/value
with the name and values defined in its configuration.
2021-09-15 20:07:37 +02:00

87 lines
1.4 KiB
Go

package tags
import (
"encoding/json"
"os"
"testing"
"time"
)
var cfgJSON = []byte(`
{
"metric_ttl": "1s",
"tags": { "a": "b" }
}
`)
func TestLoadJSON(t *testing.T) {
cfg := &Config{}
err := cfg.LoadJSON(cfgJSON)
if err != nil {
t.Fatal(err)
}
if cfg.Tags["a"] != "b" {
t.Fatal("tags not parsed")
}
j := &jsonConfig{}
json.Unmarshal(cfgJSON, j)
j.MetricTTL = "-10"
tst, _ := json.Marshal(j)
err = cfg.LoadJSON(tst)
if err == nil {
t.Error("expected error decoding metric_ttl")
}
}
func TestToJSON(t *testing.T) {
cfg := &Config{}
cfg.LoadJSON(cfgJSON)
newjson, err := cfg.ToJSON()
if err != nil {
t.Fatal(err)
}
cfg = &Config{}
err = cfg.LoadJSON(newjson)
if err != nil {
t.Fatal(err)
}
}
func TestDefault(t *testing.T) {
cfg := &Config{}
cfg.Default()
if cfg.Validate() != nil {
t.Fatal("error validating")
}
cfg.MetricTTL = 0
if cfg.Validate() == nil {
t.Fatal("expected error validating")
}
cfg.Default()
if cfg.Tags["group"] != "default" {
t.Fatal("Tags default not set")
}
}
func TestApplyEnvVars(t *testing.T) {
os.Setenv("CLUSTER_TAGS_METRICTTL", "22s")
cfg := &Config{}
cfg.ApplyEnvVars()
if cfg.MetricTTL != 22*time.Second {
t.Fatal("failed to override metric_ttl with env var")
}
os.Setenv("CLUSTER_TAGS_TAGS", "z:q,y:w")
cfg = &Config{}
cfg.ApplyEnvVars()
if cfg.Tags["z"] != "q" || cfg.Tags["y"] != "w" {
t.Fatal("could not override tags with env vars")
}
}