mirror of https://github.com/hashicorp/consul
agent/consul/state: need to set Meta for intentions for tests
parent
ad42f42a17
commit
97e2a73145
|
@ -32,7 +32,8 @@ func TestStore_IntentionSetGet_basic(t *testing.T) {
|
||||||
|
|
||||||
// Build a valid intention
|
// Build a valid intention
|
||||||
ixn := &structs.Intention{
|
ixn := &structs.Intention{
|
||||||
ID: testUUID(),
|
ID: testUUID(),
|
||||||
|
Meta: map[string]string{},
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inserting a with empty ID is disallowed.
|
// Inserting a with empty ID is disallowed.
|
||||||
|
@ -50,7 +51,8 @@ func TestStore_IntentionSetGet_basic(t *testing.T) {
|
||||||
|
|
||||||
// Read it back out and verify it.
|
// Read it back out and verify it.
|
||||||
expected := &structs.Intention{
|
expected := &structs.Intention{
|
||||||
ID: ixn.ID,
|
ID: ixn.ID,
|
||||||
|
Meta: map[string]string{},
|
||||||
RaftIndex: structs.RaftIndex{
|
RaftIndex: structs.RaftIndex{
|
||||||
CreateIndex: 1,
|
CreateIndex: 1,
|
||||||
ModifyIndex: 1,
|
ModifyIndex: 1,
|
||||||
|
@ -264,10 +266,12 @@ func TestStore_IntentionsList(t *testing.T) {
|
||||||
// Create some intentions
|
// Create some intentions
|
||||||
ixns := structs.Intentions{
|
ixns := structs.Intentions{
|
||||||
&structs.Intention{
|
&structs.Intention{
|
||||||
ID: testUUID(),
|
ID: testUUID(),
|
||||||
|
Meta: map[string]string{},
|
||||||
},
|
},
|
||||||
&structs.Intention{
|
&structs.Intention{
|
||||||
ID: testUUID(),
|
ID: testUUID(),
|
||||||
|
Meta: map[string]string{},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -288,14 +292,16 @@ func TestStore_IntentionsList(t *testing.T) {
|
||||||
// Read it back and verify.
|
// Read it back and verify.
|
||||||
expected := structs.Intentions{
|
expected := structs.Intentions{
|
||||||
&structs.Intention{
|
&structs.Intention{
|
||||||
ID: ixns[0].ID,
|
ID: ixns[0].ID,
|
||||||
|
Meta: map[string]string{},
|
||||||
RaftIndex: structs.RaftIndex{
|
RaftIndex: structs.RaftIndex{
|
||||||
CreateIndex: 1,
|
CreateIndex: 1,
|
||||||
ModifyIndex: 1,
|
ModifyIndex: 1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
&structs.Intention{
|
&structs.Intention{
|
||||||
ID: ixns[1].ID,
|
ID: ixns[1].ID,
|
||||||
|
Meta: map[string]string{},
|
||||||
RaftIndex: structs.RaftIndex{
|
RaftIndex: structs.RaftIndex{
|
||||||
CreateIndex: 2,
|
CreateIndex: 2,
|
||||||
ModifyIndex: 2,
|
ModifyIndex: 2,
|
||||||
|
|
Loading…
Reference in New Issue