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 {
|
|
|
|
return &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
|
|
|
}
|
|
|
|
}
|