influxdb/toml/toml_test.go

43 lines
1.0 KiB
Go
Raw Normal View History

2015-05-29 19:50:05 +00:00
package toml_test
import (
"testing"
"github.com/influxdb/influxdb/toml"
)
// Ensure that megabyte sizes can be parsed.
func TestSize_UnmarshalText_MB(t *testing.T) {
var s toml.Size
if err := s.UnmarshalText([]byte("200m")); err != nil {
t.Fatalf("unexpected error: %s", err)
} else if s != 200*(1<<20) {
t.Fatalf("unexpected size: %d", s)
}
}
// Ensure that gigabyte sizes can be parsed.
func TestSize_UnmarshalText_GB(t *testing.T) {
var s toml.Size
if err := s.UnmarshalText([]byte("1g")); err != nil {
2015-05-29 19:50:05 +00:00
t.Fatalf("unexpected error: %s", err)
} else if s != 1073741824 {
2015-05-29 19:50:05 +00:00
t.Fatalf("unexpected size: %d", s)
}
}
/*
func TestConfig_Encode(t *testing.T) {
var c influxdb.Config
c.Monitoring.WriteInterval = influxdb.Duration(time.Minute)
buf := new(bytes.Buffer)
if err := toml.NewEncoder(buf).Encode(&c); err != nil {
t.Fatal("Failed to encode: ", err)
}
got, search := buf.String(), `write-interval = "1m0s"`
if !strings.Contains(got, search) {
t.Fatalf("Encoding config failed.\nfailed to find %s in:\n%s\n", search, got)
}
}
*/