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 {
|
2021-09-08 15:59:30 +00:00
|
|
|
ixn := &Intention{
|
2020-01-24 15:04:58 +00:00
|
|
|
SourceNS: IntentionDefaultNamespace,
|
2018-03-03 17:43:37 +00:00
|
|
|
SourceName: "api",
|
2020-01-24 15:04:58 +00:00
|
|
|
DestinationNS: IntentionDefaultNamespace,
|
2018-03-03 17:43:37 +00:00
|
|
|
DestinationName: "db",
|
2018-03-03 17:55:27 +00:00
|
|
|
Action: IntentionActionAllow,
|
|
|
|
SourceType: IntentionSourceConsul,
|
2018-03-03 18:12:05 +00:00
|
|
|
Meta: map[string]string{},
|
2018-03-03 17:43:37 +00:00
|
|
|
}
|
2021-09-28 19:31:12 +00:00
|
|
|
ixn.FillPartitionAndNamespace(nil, true)
|
2021-09-08 15:59:30 +00:00
|
|
|
return ixn
|
2018-03-03 17:43:37 +00:00
|
|
|
}
|