33 lines
774 B
Go
33 lines
774 B
Go
package admin_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/BurntSushi/toml"
|
|
"github.com/influxdata/influxdb/services/admin"
|
|
)
|
|
|
|
func TestConfig_Parse(t *testing.T) {
|
|
// Parse configuration.
|
|
var c admin.Config
|
|
if _, err := toml.Decode(`
|
|
enabled = true
|
|
bind-address = ":8083"
|
|
https-enabled = true
|
|
https-certificate = "/dev/null"
|
|
`, &c); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Validate configuration.
|
|
if c.Enabled != true {
|
|
t.Fatalf("unexpected enabled: %v", c.Enabled)
|
|
} else if c.BindAddress != ":8083" {
|
|
t.Fatalf("unexpected bind address: %s", c.BindAddress)
|
|
} else if c.HTTPSEnabled != true {
|
|
t.Fatalf("unexpected https enabled: %v", c.HTTPSEnabled)
|
|
} else if c.HTTPSCertificate != "/dev/null" {
|
|
t.Fatalf("unexpected https certificate: %v", c.HTTPSCertificate)
|
|
}
|
|
}
|