You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/bsr/protocol_test.go

38 lines
571 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package bsr_test
import (
"testing"
"github.com/hashicorp/boundary/internal/bsr"
"github.com/stretchr/testify/assert"
)
func TestValidProtocol(t *testing.T) {
cases := []struct {
name string
in bsr.Protocol
want bool
}{
{
"Valid",
bsr.Protocol("VALI"),
true,
},
{
"Invalid",
bsr.Protocol("INVALID"),
false,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
got := bsr.ValidProtocol(tc.in)
assert.Equal(t, tc.want, got)
})
}
}