certificates/authority/policy/options_test.go

46 lines
824 B
Go
Raw Normal View History

2022-04-19 12:41:36 +00:00
package policy
import (
"testing"
)
func TestX509PolicyOptions_IsWildcardLiteralAllowed(t *testing.T) {
tests := []struct {
name string
options *X509PolicyOptions
want bool
}{
{
name: "nil-options",
options: nil,
want: true,
},
{
name: "not-set",
options: &X509PolicyOptions{},
want: false,
2022-04-19 12:41:36 +00:00
},
{
name: "set-true",
options: &X509PolicyOptions{
AllowWildcardLiteral: true,
2022-04-19 12:41:36 +00:00
},
want: true,
},
{
name: "set-false",
options: &X509PolicyOptions{
AllowWildcardLiteral: false,
2022-04-19 12:41:36 +00:00
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.options.IsWildcardLiteralAllowed(); got != tt.want {
t.Errorf("X509PolicyOptions.IsWildcardLiteralAllowed() = %v, want %v", got, tt.want)
}
})
}
}