agent/consul/state: need to set Meta for intentions for tests

This commit is contained in:
Mitchell Hashimoto 2018-03-04 19:10:19 -08:00
parent ad42f42a17
commit 97e2a73145
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A

View File

@ -33,6 +33,7 @@ func TestStore_IntentionSetGet_basic(t *testing.T) {
// Build a valid intention
ixn := &structs.Intention{
ID: testUUID(),
Meta: map[string]string{},
}
// Inserting a with empty ID is disallowed.
@ -51,6 +52,7 @@ func TestStore_IntentionSetGet_basic(t *testing.T) {
// Read it back out and verify it.
expected := &structs.Intention{
ID: ixn.ID,
Meta: map[string]string{},
RaftIndex: structs.RaftIndex{
CreateIndex: 1,
ModifyIndex: 1,
@ -265,9 +267,11 @@ func TestStore_IntentionsList(t *testing.T) {
ixns := structs.Intentions{
&structs.Intention{
ID: testUUID(),
Meta: map[string]string{},
},
&structs.Intention{
ID: testUUID(),
Meta: map[string]string{},
},
}
@ -289,6 +293,7 @@ func TestStore_IntentionsList(t *testing.T) {
expected := structs.Intentions{
&structs.Intention{
ID: ixns[0].ID,
Meta: map[string]string{},
RaftIndex: structs.RaftIndex{
CreateIndex: 1,
ModifyIndex: 1,
@ -296,6 +301,7 @@ func TestStore_IntentionsList(t *testing.T) {
},
&structs.Intention{
ID: ixns[1].ID,
Meta: map[string]string{},
RaftIndex: structs.RaftIndex{
CreateIndex: 2,
ModifyIndex: 2,