open-consul/agent/structs/testing_intention.go

21 lines
532 B
Go
Raw Normal View History

2018-03-03 17:43:37 +00:00
package structs
import (
"github.com/mitchellh/go-testing-interface"
)
// TestIntention returns a valid, uninserted (no ID set) intention.
func TestIntention(t testing.T) *Intention {
ixn := &Intention{
SourceNS: IntentionDefaultNamespace,
2018-03-03 17:43:37 +00:00
SourceName: "api",
DestinationNS: IntentionDefaultNamespace,
2018-03-03 17:43:37 +00:00
DestinationName: "db",
Action: IntentionActionAllow,
SourceType: IntentionSourceConsul,
Meta: map[string]string{},
2018-03-03 17:43:37 +00:00
}
ixn.FillPartitionAndNamespace(nil, true)
return ixn
2018-03-03 17:43:37 +00:00
}