Files
coredns/plugin/etcd/msg/path_test.go

25 lines
853 B
Go
Raw Normal View History

package msg
2016-03-21 07:20:22 +00:00
import "testing"
func TestPath(t *testing.T) {
2016-03-22 11:13:12 +00:00
for _, path := range []string{"mydns", "skydns"} {
result := Path("service.staging.skydns.local.", path)
2016-03-22 11:13:12 +00:00
if result != "/"+path+"/local/skydns/staging/service" {
t.Errorf("Failure to get domain's path with prefix: %s", result)
2016-03-21 07:20:22 +00:00
}
}
}
func TestDomain(t *testing.T) {
result1 := Domain("/skydns/local/cluster/staging/service/")
if result1 != "service.staging.cluster.local." {
t.Errorf("Failure to get domain from etcd key (with a trailing '/'), expect: 'service.staging.cluster.local.', actually get: '%s'", result1)
}
result2 := Domain("/skydns/local/cluster/staging/service")
if result2 != "service.staging.cluster.local." {
t.Errorf("Failure to get domain from etcd key (without trailing '/'), expect: 'service.staging.cluster.local.' actually get: '%s'", result2)
}
}