mirror of https://github.com/hashicorp/consul
parent
a414649543
commit
69ce10602f
@ -0,0 +1,35 @@
|
|||||||
|
// +build !consulent
|
||||||
|
|
||||||
|
package state
|
||||||
|
|
||||||
|
import "github.com/hashicorp/consul/agent/structs"
|
||||||
|
|
||||||
|
func testIndexerTableConfigEntries() map[string]indexerTestCase {
|
||||||
|
return map[string]indexerTestCase{
|
||||||
|
indexID: {
|
||||||
|
read: indexValue{
|
||||||
|
source: ConfigEntryKindName{
|
||||||
|
Kind: "Proxy-Defaults",
|
||||||
|
Name: "NaMe",
|
||||||
|
},
|
||||||
|
expected: []byte("proxy-defaults\x00name\x00"),
|
||||||
|
},
|
||||||
|
write: indexValue{
|
||||||
|
source: &structs.ProxyConfigEntry{Name: "NaMe"},
|
||||||
|
expected: []byte("proxy-defaults\x00name\x00"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
indexKind: {
|
||||||
|
read: indexValue{
|
||||||
|
source: ConfigEntryKindQuery{
|
||||||
|
Kind: "Service-Defaults",
|
||||||
|
},
|
||||||
|
expected: []byte("service-defaults\x00"),
|
||||||
|
},
|
||||||
|
write: indexValue{
|
||||||
|
source: &structs.ServiceConfigEntry{},
|
||||||
|
expected: []byte("service-defaults\x00"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue