Browse Source

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

pull/4275/head
Mitchell Hashimoto 7 years ago
parent
commit
97e2a73145
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
  1. 18
      agent/consul/state/intention_test.go

18
agent/consul/state/intention_test.go

@ -32,7 +32,8 @@ func TestStore_IntentionSetGet_basic(t *testing.T) {
// Build a valid intention
ixn := &structs.Intention{
ID: testUUID(),
ID: testUUID(),
Meta: map[string]string{},
}
// 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.
expected := &structs.Intention{
ID: ixn.ID,
ID: ixn.ID,
Meta: map[string]string{},
RaftIndex: structs.RaftIndex{
CreateIndex: 1,
ModifyIndex: 1,
@ -264,10 +266,12 @@ func TestStore_IntentionsList(t *testing.T) {
// Create some intentions
ixns := structs.Intentions{
&structs.Intention{
ID: testUUID(),
ID: testUUID(),
Meta: map[string]string{},
},
&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.
expected := structs.Intentions{
&structs.Intention{
ID: ixns[0].ID,
ID: ixns[0].ID,
Meta: map[string]string{},
RaftIndex: structs.RaftIndex{
CreateIndex: 1,
ModifyIndex: 1,
},
},
&structs.Intention{
ID: ixns[1].ID,
ID: ixns[1].ID,
Meta: map[string]string{},
RaftIndex: structs.RaftIndex{
CreateIndex: 2,
ModifyIndex: 2,

Loading…
Cancel
Save