2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2021-11-08 14:35:56 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package state
|
|
|
|
|
|
|
|
import "github.com/hashicorp/consul/agent/structs"
|
|
|
|
|
|
|
|
func testIndexerTableKVs() map[string]indexerTestCase {
|
|
|
|
return map[string]indexerTestCase{
|
|
|
|
indexID: {
|
|
|
|
read: indexValue{
|
|
|
|
source: Query{Value: "TheKey"},
|
|
|
|
expected: []byte("TheKey\x00"),
|
|
|
|
},
|
|
|
|
write: indexValue{
|
|
|
|
source: &structs.DirEntry{Key: "TheKey"},
|
|
|
|
expected: []byte("TheKey\x00"),
|
|
|
|
},
|
|
|
|
prefix: []indexValue{
|
|
|
|
{
|
|
|
|
source: "indexString",
|
|
|
|
expected: []byte("indexString"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: structs.EnterpriseMeta{},
|
|
|
|
expected: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: Query{Value: "TheKey"},
|
|
|
|
expected: []byte("TheKey"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testIndexerTableTombstones() map[string]indexerTestCase {
|
|
|
|
return map[string]indexerTestCase{
|
|
|
|
indexID: {
|
|
|
|
read: indexValue{
|
|
|
|
source: Query{Value: "TheKey"},
|
|
|
|
expected: []byte("TheKey\x00"),
|
|
|
|
},
|
|
|
|
write: indexValue{
|
|
|
|
source: &Tombstone{Key: "TheKey"},
|
|
|
|
expected: []byte("TheKey\x00"),
|
|
|
|
},
|
|
|
|
prefix: []indexValue{
|
|
|
|
{
|
|
|
|
source: "indexString",
|
|
|
|
expected: []byte("indexString"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: structs.EnterpriseMeta{},
|
|
|
|
expected: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: Query{Value: "TheKey"},
|
|
|
|
expected: []byte("TheKey"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|