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