123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package valid
- import (
- "database/sql"
- "testing"
- "github.com/stretchr/testify/assert"
- )
- func TestLength(t *testing.T) {
- var v *string
- tests := []struct {
- tag string
- min, max int
- value interface{}
- err string
- }{
- {"t1", 2, 4, "abc", ""},
- {"t2", 2, 4, "", ""},
- {"t3", 2, 4, "abcdf", "the length must be between 2 and 4"},
- {"t4", 0, 4, "ab", ""},
- {"t5", 0, 4, "abcde", "the length must be no more than 4"},
- {"t6", 2, 0, "ab", ""},
- {"t7", 2, 0, "a", "the length must be no less than 2"},
- {"t8", 2, 0, v, ""},
- {"t9", 2, 0, 123, "cannot get the length of int"},
- {"t10", 2, 4, sql.NullString{String: "abc", Valid: true}, ""},
- {"t11", 2, 4, sql.NullString{String: "", Valid: true}, ""},
- {"t12", 2, 4, &sql.NullString{String: "abc", Valid: true}, ""},
- {"t13", 2, 2, "abcdf", "the length must be exactly 2"},
- {"t14", 2, 2, "ab", ""},
- {"t15", 0, 0, "", ""},
- {"t16", 0, 0, "ab", "the value must be empty"},
- }
- for _, test := range tests {
- r := Length(test.min, test.max)
- err := r.Validate(test.value)
- assertError(t, test.err, err, test.tag)
- }
- }
- func TestRuneLength(t *testing.T) {
- var v *string
- tests := []struct {
- tag string
- min, max int
- value interface{}
- err string
- }{
- {"t1", 2, 4, "abc", ""},
- {"t1.1", 2, 3, "💥💥", ""},
- {"t1.2", 2, 3, "💥💥💥", ""},
- {"t1.3", 2, 3, "💥", "the length must be between 2 and 3"},
- {"t1.4", 2, 3, "💥💥💥💥", "the length must be between 2 and 3"},
- {"t2", 2, 4, "", ""},
- {"t3", 2, 4, "abcdf", "the length must be between 2 and 4"},
- {"t4", 0, 4, "ab", ""},
- {"t5", 0, 4, "abcde", "the length must be no more than 4"},
- {"t6", 2, 0, "ab", ""},
- {"t7", 2, 0, "a", "the length must be no less than 2"},
- {"t8", 2, 0, v, ""},
- {"t9", 2, 0, 123, "cannot get the length of int"},
- {"t10", 2, 4, sql.NullString{String: "abc", Valid: true}, ""},
- {"t11", 2, 4, sql.NullString{String: "", Valid: true}, ""},
- {"t12", 2, 4, &sql.NullString{String: "abc", Valid: true}, ""},
- {"t13", 2, 3, &sql.NullString{String: "💥💥", Valid: true}, ""},
- {"t14", 2, 3, &sql.NullString{String: "💥", Valid: true}, "the length must be between 2 and 3"},
- }
- for _, test := range tests {
- r := RuneLength(test.min, test.max)
- err := r.Validate(test.value)
- assertError(t, test.err, err, test.tag)
- }
- }
- func Test_LengthRule_Error(t *testing.T) {
- r := Length(10, 20)
- assert.Equal(t, "the length must be between 10 and 20", r.Validate("abc").Error())
- r = Length(0, 20)
- assert.Equal(t, "the length must be no more than 20", r.Validate(make([]string, 21)).Error())
- r = Length(10, 0)
- assert.Equal(t, "the length must be no less than 10", r.Validate([9]string{}).Error())
- r = Length(0, 0)
- assert.Equal(t, "validation_length_empty_required", r.err.Code())
- r = r.Error("123")
- assert.Equal(t, "123", r.err.Message())
- }
- func TestLengthRule_ErrorObject(t *testing.T) {
- r := Length(10, 20)
- err := NewError("code", "abc")
- r = r.ErrorObject(err)
- assert.Equal(t, err, r.err)
- assert.Equal(t, err.Code(), r.err.Code())
- assert.Equal(t, err.Message(), r.err.Message())
- }
|