65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
//go:build !consulent
|
|
// +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"),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|