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.
|
|
|
package validator_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"gitoa.ru/go-4devs/console/input/validator"
|
|
|
|
"gitoa.ru/go-4devs/console/input/value"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestEnum(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
validValue := value.New("valid")
|
|
|
|
invalidValue := value.New("invalid")
|
|
|
|
|
|
|
|
enum := validator.Enum("valid", "other", "three")
|
|
|
|
|
|
|
|
if err := enum(validValue); err != nil {
|
|
|
|
t.Errorf("expected valid value got err:%s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := enum(invalidValue); !errors.Is(err, validator.ErrInvalid) {
|
|
|
|
t.Errorf("expected err:%s, got: %s", validator.ErrInvalid, err)
|
|
|
|
}
|
|
|
|
}
|