55 lines
1.0 KiB
Go
55 lines
1.0 KiB
Go
|
// +build !consulent
|
||
|
|
||
|
package state
|
||
|
|
||
|
import "github.com/hashicorp/consul/agent/structs"
|
||
|
|
||
|
func testIndexerTableCoordinates() map[string]indexerTestCase {
|
||
|
return map[string]indexerTestCase{
|
||
|
indexID: {
|
||
|
read: indexValue{
|
||
|
source: CoordinateQuery{
|
||
|
Node: "NoDeId",
|
||
|
Segment: "SeGmEnT",
|
||
|
},
|
||
|
expected: []byte("nodeid\x00segment\x00"),
|
||
|
},
|
||
|
write: indexValue{
|
||
|
source: &structs.Coordinate{
|
||
|
Node: "NoDeId",
|
||
|
Segment: "SeGmEnT",
|
||
|
},
|
||
|
expected: []byte("nodeid\x00segment\x00"),
|
||
|
},
|
||
|
prefix: []indexValue{
|
||
|
{
|
||
|
source: (*structs.EnterpriseMeta)(nil),
|
||
|
expected: nil,
|
||
|
},
|
||
|
{
|
||
|
source: structs.EnterpriseMeta{},
|
||
|
expected: nil,
|
||
|
},
|
||
|
{
|
||
|
source: Query{Value: "NoDeId"},
|
||
|
expected: []byte("nodeid\x00"),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
indexNode: {
|
||
|
read: indexValue{
|
||
|
source: Query{
|
||
|
Value: "NoDeId",
|
||
|
},
|
||
|
expected: []byte("nodeid\x00"),
|
||
|
},
|
||
|
write: indexValue{
|
||
|
source: &structs.Coordinate{
|
||
|
Node: "NoDeId",
|
||
|
},
|
||
|
expected: []byte("nodeid\x00"),
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|