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.
29 lines
610 B
29 lines
610 B
4 years ago
|
package validator_test
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"testing"
|
||
|
|
||
4 years ago
|
"gitoa.ru/go-4devs/console/input/flag"
|
||
|
"gitoa.ru/go-4devs/console/input/validator"
|
||
4 years ago
|
"gitoa.ru/go-4devs/console/input/value"
|
||
|
)
|
||
|
|
||
|
func TestValid(t *testing.T) {
|
||
|
validValue := value.New("one")
|
||
|
invalidValue := value.New([]string{"one"})
|
||
|
|
||
|
valid := validator.Valid(
|
||
4 years ago
|
validator.NotBlank(flag.String),
|
||
4 years ago
|
validator.Enum("one", "two"),
|
||
|
)
|
||
|
|
||
|
if err := valid(validValue); err != nil {
|
||
|
t.Errorf("expected valid value, got: %s", err)
|
||
|
}
|
||
|
|
||
|
if err := valid(invalidValue); !errors.Is(err, validator.ErrNotBlank) {
|
||
|
t.Errorf("expected not blank, got:%s", err)
|
||
|
}
|
||
|
}
|