parent
532878b008
commit
a7ca4a1d32
@ -0,0 +1,101 @@ |
||||
package main |
||||
|
||||
import ( |
||||
"fmt" |
||||
|
||||
"gopkg.in/go-playground/validator.v9" |
||||
) |
||||
|
||||
// User contains user information
|
||||
type User struct { |
||||
FirstName string `validate:"required"` |
||||
LastName string `validate:"required"` |
||||
Age uint8 `validate:"gte=0,lte=130"` |
||||
Email string `validate:"required,email"` |
||||
FavouriteColor string `validate:"iscolor"` // alias for 'hexcolor|rgb|rgba|hsl|hsla'
|
||||
Addresses []*Address `validate:"required,dive,required"` // a person can have a home and cottage...
|
||||
} |
||||
|
||||
// Address houses a users address information
|
||||
type Address struct { |
||||
Street string `validate:"required"` |
||||
City string `validate:"required"` |
||||
Planet string `validate:"required"` |
||||
Phone string `validate:"required"` |
||||
} |
||||
|
||||
// use a single instance of Validate, it caches struct info
|
||||
var validate *validator.Validate |
||||
|
||||
func main() { |
||||
|
||||
validate = validator.New() |
||||
|
||||
validateStruct() |
||||
validateVariable() |
||||
} |
||||
|
||||
func validateStruct() { |
||||
|
||||
address := &Address{ |
||||
Street: "Eavesdown Docks", |
||||
Planet: "Persphone", |
||||
Phone: "none", |
||||
} |
||||
|
||||
user := &User{ |
||||
FirstName: "Badger", |
||||
LastName: "Smith", |
||||
Age: 135, |
||||
Email: "Badger.Smith@gmail.com", |
||||
FavouriteColor: "#000-", |
||||
Addresses: []*Address{address}, |
||||
} |
||||
|
||||
// returns nil or ValidationErrors ( map[string]*FieldError )
|
||||
err := validate.Struct(user) |
||||
if err != nil { |
||||
|
||||
// this check is only needed when your code could produce
|
||||
// an invalid value for validation such as interface with nil
|
||||
// value most including myself do not usually have code like this.
|
||||
if _, ok := err.(*validator.InvalidValidationError); ok { |
||||
fmt.Println(err) |
||||
return |
||||
} |
||||
|
||||
for _, err := range err.(validator.ValidationErrors) { |
||||
|
||||
fmt.Println(err.Namespace()) |
||||
fmt.Println(err.Field()) |
||||
fmt.Println(err.StructNamespace()) // can differ when a custom TagNameFunc is registered or
|
||||
fmt.Println(err.StructField()) // by passing alt name to ReportError like below
|
||||
fmt.Println(err.Tag()) |
||||
fmt.Println(err.ActualTag()) |
||||
fmt.Println(err.Kind()) |
||||
fmt.Println(err.Type()) |
||||
fmt.Println(err.Value()) |
||||
fmt.Println(err.Param()) |
||||
fmt.Println() |
||||
} |
||||
|
||||
// from here you can create your own error messages in whatever language you wish
|
||||
return |
||||
} |
||||
|
||||
// save user to database
|
||||
} |
||||
|
||||
func validateVariable() { |
||||
|
||||
myEmail := "joeybloggs.gmail.com" |
||||
|
||||
errs := validate.Var(myEmail, "required,email") |
||||
|
||||
if errs != nil { |
||||
fmt.Println(errs) // output: Key: "" Error:Field validation for "" failed on the "email" tag
|
||||
return |
||||
} |
||||
|
||||
// email ok, move on
|
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,580 @@ |
||||
package en |
||||
|
||||
import ( |
||||
"testing" |
||||
"time" |
||||
|
||||
english "github.com/go-playground/locales/en" |
||||
"github.com/go-playground/universal-translator" |
||||
. "gopkg.in/go-playground/assert.v1" |
||||
"gopkg.in/go-playground/validator.v9" |
||||
) |
||||
|
||||
func TestTranslations(t *testing.T) { |
||||
|
||||
eng := english.New() |
||||
uni := ut.New(eng, eng) |
||||
trans, _ := uni.GetTranslator("en") |
||||
|
||||
validate := validator.New() |
||||
|
||||
err := RegisterDefaultTranslations(validate, trans) |
||||
Equal(t, err, nil) |
||||
|
||||
type Inner struct { |
||||
EqCSFieldString string |
||||
NeCSFieldString string |
||||
GtCSFieldString string |
||||
GteCSFieldString string |
||||
LtCSFieldString string |
||||
LteCSFieldString string |
||||
} |
||||
|
||||
type Test struct { |
||||
Inner Inner |
||||
RequiredString string `validate:"required"` |
||||
RequiredNumber int `validate:"required"` |
||||
RequiredMultiple []string `validate:"required"` |
||||
LenString string `validate:"len=1"` |
||||
LenNumber float64 `validate:"len=1113.00"` |
||||
LenMultiple []string `validate:"len=7"` |
||||
MinString string `validate:"min=1"` |
||||
MinNumber float64 `validate:"min=1113.00"` |
||||
MinMultiple []string `validate:"min=7"` |
||||
MaxString string `validate:"max=3"` |
||||
MaxNumber float64 `validate:"max=1113.00"` |
||||
MaxMultiple []string `validate:"max=7"` |
||||
EqString string `validate:"eq=3"` |
||||
EqNumber float64 `validate:"eq=2.33"` |
||||
EqMultiple []string `validate:"eq=7"` |
||||
NeString string `validate:"ne="` |
||||
NeNumber float64 `validate:"ne=0.00"` |
||||
NeMultiple []string `validate:"ne=0"` |
||||
LtString string `validate:"lt=3"` |
||||
LtNumber float64 `validate:"lt=5.56"` |
||||
LtMultiple []string `validate:"lt=2"` |
||||
LtTime time.Time `validate:"lt"` |
||||
LteString string `validate:"lte=3"` |
||||
LteNumber float64 `validate:"lte=5.56"` |
||||
LteMultiple []string `validate:"lte=2"` |
||||
LteTime time.Time `validate:"lte"` |
||||
GtString string `validate:"gt=3"` |
||||
GtNumber float64 `validate:"gt=5.56"` |
||||
GtMultiple []string `validate:"gt=2"` |
||||
GtTime time.Time `validate:"gt"` |
||||
GteString string `validate:"gte=3"` |
||||
GteNumber float64 `validate:"gte=5.56"` |
||||
GteMultiple []string `validate:"gte=2"` |
||||
GteTime time.Time `validate:"gte"` |
||||
EqFieldString string `validate:"eqfield=MaxString"` |
||||
EqCSFieldString string `validate:"eqcsfield=Inner.EqCSFieldString"` |
||||
NeCSFieldString string `validate:"necsfield=Inner.NeCSFieldString"` |
||||
GtCSFieldString string `validate:"gtcsfield=Inner.GtCSFieldString"` |
||||
GteCSFieldString string `validate:"gtecsfield=Inner.GteCSFieldString"` |
||||
LtCSFieldString string `validate:"ltcsfield=Inner.LtCSFieldString"` |
||||
LteCSFieldString string `validate:"ltecsfield=Inner.LteCSFieldString"` |
||||
NeFieldString string `validate:"nefield=EqFieldString"` |
||||
GtFieldString string `validate:"gtfield=MaxString"` |
||||
GteFieldString string `validate:"gtefield=MaxString"` |
||||
LtFieldString string `validate:"ltfield=MaxString"` |
||||
LteFieldString string `validate:"ltefield=MaxString"` |
||||
AlphaString string `validate:"alpha"` |
||||
AlphanumString string `validate:"alphanum"` |
||||
NumericString string `validate:"numeric"` |
||||
NumberString string `validate:"number"` |
||||
HexadecimalString string `validate:"hexadecimal"` |
||||
HexColorString string `validate:"hexcolor"` |
||||
RGBColorString string `validate:"rgb"` |
||||
RGBAColorString string `validate:"rgba"` |
||||
HSLColorString string `validate:"hsl"` |
||||
HSLAColorString string `validate:"hsla"` |
||||
Email string `validate:"email"` |
||||
URL string `validate:"url"` |
||||
URI string `validate:"uri"` |
||||
Base64 string `validate:"base64"` |
||||
Contains string `validate:"contains=purpose"` |
||||
ContainsAny string `validate:"containsany=!@#$"` |
||||
Excludes string `validate:"excludes=text"` |
||||
ExcludesAll string `validate:"excludesall=!@#$"` |
||||
ExcludesRune string `validate:"excludesrune=☻"` |
||||
ISBN string `validate:"isbn"` |
||||
ISBN10 string `validate:"isbn10"` |
||||
ISBN13 string `validate:"isbn13"` |
||||
UUID string `validate:"uuid"` |
||||
UUID3 string `validate:"uuid3"` |
||||
UUID4 string `validate:"uuid4"` |
||||
UUID5 string `validate:"uuid5"` |
||||
ASCII string `validate:"ascii"` |
||||
PrintableASCII string `validate:"printascii"` |
||||
MultiByte string `validate:"multibyte"` |
||||
DataURI string `validate:"datauri"` |
||||
Latitude string `validate:"latitude"` |
||||
Longitude string `validate:"longitude"` |
||||
SSN string `validate:"ssn"` |
||||
IP string `validate:"ip"` |
||||
IPv4 string `validate:"ipv4"` |
||||
IPv6 string `validate:"ipv6"` |
||||
CIDR string `validate:"cidr"` |
||||
CIDRv4 string `validate:"cidrv4"` |
||||
CIDRv6 string `validate:"cidrv6"` |
||||
TCPAddr string `validate:"tcp_addr"` |
||||
TCPAddrv4 string `validate:"tcp4_addr"` |
||||
TCPAddrv6 string `validate:"tcp6_addr"` |
||||
UDPAddr string `validate:"udp_addr"` |
||||
UDPAddrv4 string `validate:"udp4_addr"` |
||||
UDPAddrv6 string `validate:"udp6_addr"` |
||||
IPAddr string `validate:"ip_addr"` |
||||
IPAddrv4 string `validate:"ip4_addr"` |
||||
IPAddrv6 string `validate:"ip6_addr"` |
||||
UinxAddr string `validate:"unix_addr"` // can't fail from within Go's net package currently, but maybe in the future
|
||||
MAC string `validate:"mac"` |
||||
} |
||||
|
||||
var test Test |
||||
|
||||
test.Inner.EqCSFieldString = "1234" |
||||
test.Inner.GtCSFieldString = "1234" |
||||
test.Inner.GteCSFieldString = "1234" |
||||
|
||||
test.MaxString = "1234" |
||||
test.MaxNumber = 2000 |
||||
test.MaxMultiple = make([]string, 9) |
||||
|
||||
test.LtString = "1234" |
||||
test.LtNumber = 6 |
||||
test.LtMultiple = make([]string, 3) |
||||
test.LtTime = time.Now().Add(time.Hour * 24) |
||||
|
||||
test.LteString = "1234" |
||||
test.LteNumber = 6 |
||||
test.LteMultiple = make([]string, 3) |
||||
test.LteTime = time.Now().Add(time.Hour * 24) |
||||
|
||||
test.LtFieldString = "12345" |
||||
test.LteFieldString = "12345" |
||||
|
||||
test.LtCSFieldString = "1234" |
||||
test.LteCSFieldString = "1234" |
||||
|
||||
test.AlphaString = "abc3" |
||||
test.AlphanumString = "abc3!" |
||||
test.NumericString = "12E.00" |
||||
test.NumberString = "12E" |
||||
|
||||
test.Excludes = "this is some test text" |
||||
test.ExcludesAll = "This is Great!" |
||||
test.ExcludesRune = "Love it ☻" |
||||
|
||||
test.ASCII = "カタカナ" |
||||
test.PrintableASCII = "カタカナ" |
||||
|
||||
test.MultiByte = "1234feerf" |
||||
|
||||
err = validate.Struct(test) |
||||
NotEqual(t, err, nil) |
||||
|
||||
errs, ok := err.(validator.ValidationErrors) |
||||
Equal(t, ok, true) |
||||
|
||||
tests := []struct { |
||||
ns string |
||||
expected string |
||||
}{ |
||||
{ |
||||
ns: "Test.MAC", |
||||
expected: "MAC must contain a valid MAC address", |
||||
}, |
||||
{ |
||||
ns: "Test.IPAddr", |
||||
expected: "IPAddr must be a resolvable IP address", |
||||
}, |
||||
{ |
||||
ns: "Test.IPAddrv4", |
||||
expected: "IPAddrv4 must be a resolvable IPv4 address", |
||||
}, |
||||
{ |
||||
ns: "Test.IPAddrv6", |
||||
expected: "IPAddrv6 must be a resolvable IPv6 address", |
||||
}, |
||||
{ |
||||
ns: "Test.UDPAddr", |
||||
expected: "UDPAddr must be a valid UDP address", |
||||
}, |
||||
{ |
||||
ns: "Test.UDPAddrv4", |
||||
expected: "UDPAddrv4 must be a valid IPv4 UDP address", |
||||
}, |
||||
{ |
||||
ns: "Test.UDPAddrv6", |
||||
expected: "UDPAddrv6 must be a valid IPv6 UDP address", |
||||
}, |
||||
{ |
||||
ns: "Test.TCPAddr", |
||||
expected: "TCPAddr must be a valid TCP address", |
||||
}, |
||||
{ |
||||
ns: "Test.TCPAddrv4", |
||||
expected: "TCPAddrv4 must be a valid IPv4 TCP address", |
||||
}, |
||||
{ |
||||
ns: "Test.TCPAddrv6", |
||||
expected: "TCPAddrv6 must be a valid IPv6 TCP address", |
||||
}, |
||||
{ |
||||
ns: "Test.CIDR", |
||||
expected: "CIDR must contain a valid CIDR notation", |
||||
}, |
||||
{ |
||||
ns: "Test.CIDRv4", |
||||
expected: "CIDRv4 must contain a valid CIDR notation for an IPv4 address", |
||||
}, |
||||
{ |
||||
ns: "Test.CIDRv6", |
||||
expected: "CIDRv6 must contain a valid CIDR notation for an IPv6 address", |
||||
}, |
||||
{ |
||||
ns: "Test.SSN", |
||||
expected: "SSN must be a valid SSN number", |
||||
}, |
||||
{ |
||||
ns: "Test.IP", |
||||
expected: "IP must be a valid IP address", |
||||
}, |
||||
{ |
||||
ns: "Test.IPv4", |
||||
expected: "IPv4 must be a valid IPv4 address", |
||||
}, |
||||
{ |
||||
ns: "Test.IPv6", |
||||
expected: "IPv6 must be a valid IPv6 address", |
||||
}, |
||||
{ |
||||
ns: "Test.DataURI", |
||||
expected: "DataURI must contain a valid Data URI", |
||||
}, |
||||
{ |
||||
ns: "Test.Latitude", |
||||
expected: "Latitude must contain valid latitude coordinates", |
||||
}, |
||||
{ |
||||
ns: "Test.Longitude", |
||||
expected: "Longitude must contain a valid longitude coordinates", |
||||
}, |
||||
{ |
||||
ns: "Test.MultiByte", |
||||
expected: "MultiByte must contain multibyte characters", |
||||
}, |
||||
{ |
||||
ns: "Test.ASCII", |
||||
expected: "ASCII must contain only ascii characters", |
||||
}, |
||||
{ |
||||
ns: "Test.PrintableASCII", |
||||
expected: "PrintableASCII must contain only printable ascii characters", |
||||
}, |
||||
{ |
||||
ns: "Test.UUID", |
||||
expected: "UUID must be a valid UUID", |
||||
}, |
||||
{ |
||||
ns: "Test.UUID3", |
||||
expected: "UUID3 must be a valid version 3 UUID", |
||||
}, |
||||
{ |
||||
ns: "Test.UUID4", |
||||
expected: "UUID4 must be a valid version 4 UUID", |
||||
}, |
||||
{ |
||||
ns: "Test.UUID5", |
||||
expected: "UUID5 must be a valid version 5 UUID", |
||||
}, |
||||
{ |
||||
ns: "Test.ISBN", |
||||
expected: "ISBN must be a valid ISBN number", |
||||
}, |
||||
{ |
||||
ns: "Test.ISBN10", |
||||
expected: "ISBN10 must be a valid ISBN-10 number", |
||||
}, |
||||
{ |
||||
ns: "Test.ISBN13", |
||||
expected: "ISBN13 must be a valid ISBN-13 number", |
||||
}, |
||||
{ |
||||
ns: "Test.Excludes", |
||||
expected: "Excludes cannot contain the text 'text'", |
||||
}, |
||||
{ |
||||
ns: "Test.ExcludesAll", |
||||
expected: "ExcludesAll cannot contain any of the following characters '!@#$'", |
||||
}, |
||||
{ |
||||
ns: "Test.ExcludesRune", |
||||
expected: "ExcludesRune cannot contain the following '☻'", |
||||
}, |
||||
{ |
||||
ns: "Test.ContainsAny", |
||||
expected: "ContainsAny must contain at least one of the following characters '!@#$'", |
||||
}, |
||||
{ |
||||
ns: "Test.Contains", |
||||
expected: "Contains must contain the text 'purpose'", |
||||
}, |
||||
{ |
||||
ns: "Test.Base64", |
||||
expected: "Base64 must be a valid Base64 string", |
||||
}, |
||||
{ |
||||
ns: "Test.Email", |
||||
expected: "Email must be a valid email address", |
||||
}, |
||||
{ |
||||
ns: "Test.URL", |
||||
expected: "URL must be a valid URL", |
||||
}, |
||||
{ |
||||
ns: "Test.URI", |
||||
expected: "URI must be a valid URI", |
||||
}, |
||||
{ |
||||
ns: "Test.RGBColorString", |
||||
expected: "RGBColorString must be a valid RGB color", |
||||
}, |
||||
{ |
||||
ns: "Test.RGBAColorString", |
||||
expected: "RGBAColorString must be a valid RGBA color", |
||||
}, |
||||
{ |
||||
ns: "Test.HSLColorString", |
||||
expected: "HSLColorString must be a valid HSL color", |
||||
}, |
||||
{ |
||||
ns: "Test.HSLAColorString", |
||||
expected: "HSLAColorString must be a valid HSLA color", |
||||
}, |
||||
{ |
||||
ns: "Test.HexadecimalString", |
||||
expected: "HexadecimalString must be a valid hexadecimal", |
||||
}, |
||||
{ |
||||
ns: "Test.HexColorString", |
||||
expected: "HexColorString must be a valid HEX color", |
||||
}, |
||||
{ |
||||
ns: "Test.NumberString", |
||||
expected: "NumberString must be a valid number", |
||||
}, |
||||
{ |
||||
ns: "Test.NumericString", |
||||
expected: "NumericString must be a valid numeric value", |
||||
}, |
||||
{ |
||||
ns: "Test.AlphanumString", |
||||
expected: "AlphanumString can only contain alphanumeric characters", |
||||
}, |
||||
{ |
||||
ns: "Test.AlphaString", |
||||
expected: "AlphaString can only contain alphabetic characters", |
||||
}, |
||||
{ |
||||
ns: "Test.LtFieldString", |
||||
expected: "LtFieldString must be less than MaxString", |
||||
}, |
||||
{ |
||||
ns: "Test.LteFieldString", |
||||
expected: "LteFieldString must be less than or equal to MaxString", |
||||
}, |
||||
{ |
||||
ns: "Test.GtFieldString", |
||||
expected: "GtFieldString must be greater than MaxString", |
||||
}, |
||||
{ |
||||
ns: "Test.GteFieldString", |
||||
expected: "GteFieldString must be greater than or equal to MaxString", |
||||
}, |
||||
{ |
||||
ns: "Test.NeFieldString", |
||||
expected: "NeFieldString cannot be equal to EqFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.LtCSFieldString", |
||||
expected: "LtCSFieldString must be less than Inner.LtCSFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.LteCSFieldString", |
||||
expected: "LteCSFieldString must be less than or equal to Inner.LteCSFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.GtCSFieldString", |
||||
expected: "GtCSFieldString must be greater than Inner.GtCSFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.GteCSFieldString", |
||||
expected: "GteCSFieldString must be greater than or equal to Inner.GteCSFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.NeCSFieldString", |
||||
expected: "NeCSFieldString cannot be equal to Inner.NeCSFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.EqCSFieldString", |
||||
expected: "EqCSFieldString must be equal to Inner.EqCSFieldString", |
||||
}, |
||||
{ |
||||
ns: "Test.EqFieldString", |
||||
expected: "EqFieldString must be equal to MaxString", |
||||
}, |
||||
{ |
||||
ns: "Test.GteString", |
||||
expected: "GteString must be at least 3 characters in length", |
||||
}, |
||||
{ |
||||
ns: "Test.GteNumber", |
||||
expected: "GteNumber must be 5.56 or greater", |
||||
}, |
||||
{ |
||||
ns: "Test.GteMultiple", |
||||
expected: "GteMultiple must contain at least 2 items", |
||||
}, |
||||
{ |
||||
ns: "Test.GteTime", |
||||
expected: "GteTime must be greater than or equal to the current Date & Time", |
||||
}, |
||||
{ |
||||
ns: "Test.GtString", |
||||
expected: "GtString must be greater than 3 characters in length", |
||||
}, |
||||
{ |
||||
ns: "Test.GtNumber", |
||||
expected: "GtNumber must be greater than 5.56", |
||||
}, |
||||
{ |
||||
ns: "Test.GtMultiple", |
||||
expected: "GtMultiple must contain more than 2 items", |
||||
}, |
||||
{ |
||||
ns: "Test.GtTime", |
||||
expected: "GtTime must be greater than the current Date & Time", |
||||
}, |
||||
{ |
||||
ns: "Test.LteString", |
||||
expected: "LteString must be at maximum 3 characters in length", |
||||
}, |
||||
{ |
||||
ns: "Test.LteNumber", |
||||
expected: "LteNumber must be 5.56 or less", |
||||
}, |
||||
{ |
||||
ns: "Test.LteMultiple", |
||||
expected: "LteMultiple must contain at maximum 2 items", |
||||
}, |
||||
{ |
||||
ns: "Test.LteTime", |
||||
expected: "LteTime must be less than or equal to the current Date & Time", |
||||
}, |
||||
{ |
||||
ns: "Test.LtString", |
||||
expected: "LtString must be less than 3 characters in length", |
||||
}, |
||||
{ |
||||
ns: "Test.LtNumber", |
||||
expected: "LtNumber must be less than 5.56", |
||||
}, |
||||
{ |
||||
ns: "Test.LtMultiple", |
||||
expected: "LtMultiple must contain less than 2 items", |
||||
}, |
||||
{ |
||||
ns: "Test.LtTime", |
||||
expected: "LtTime must be less than the current Date & Time", |
||||
}, |
||||
{ |
||||
ns: "Test.NeString", |
||||
expected: "NeString should not be equal to ", |
||||
}, |
||||
{ |
||||
ns: "Test.NeNumber", |
||||
expected: "NeNumber should not be equal to 0.00", |
||||
}, |
||||
{ |
||||
ns: "Test.NeMultiple", |
||||
expected: "NeMultiple should not be equal to 0", |
||||
}, |
||||
{ |
||||
ns: "Test.EqString", |
||||
expected: "EqString is not equal to 3", |
||||
}, |
||||
{ |
||||
ns: "Test.EqNumber", |
||||
expected: "EqNumber is not equal to 2.33", |
||||
}, |
||||
{ |
||||
ns: "Test.EqMultiple", |
||||
expected: "EqMultiple is not equal to 7", |
||||
}, |
||||
{ |
||||
ns: "Test.MaxString", |
||||
expected: "MaxString must be a maximum of 3 characters in length", |
||||
}, |
||||
{ |
||||
ns: "Test.MaxNumber", |
||||
expected: "MaxNumber must be 1,113.00 or less", |
||||
}, |
||||
{ |
||||
ns: "Test.MaxMultiple", |
||||
expected: "MaxMultiple must contain at maximum 7 items", |
||||
}, |
||||
{ |
||||
ns: "Test.MinString", |
||||
expected: "MinString must be at least 1 character in length", |
||||
}, |
||||
{ |
||||
ns: "Test.MinNumber", |
||||
expected: "MinNumber must be 1,113.00 or greater", |
||||
}, |
||||
{ |
||||
ns: "Test.MinMultiple", |
||||
expected: "MinMultiple must contain at least 7 items", |
||||
}, |
||||
{ |
||||
ns: "Test.LenString", |
||||
expected: "LenString must be 1 character in length", |
||||
}, |
||||
{ |
||||
ns: "Test.LenNumber", |
||||
expected: "LenNumber must be equal to 1,113.00", |
||||
}, |
||||
{ |
||||
ns: "Test.LenMultiple", |
||||
expected: "LenMultiple must contain 7 items", |
||||
}, |
||||
{ |
||||
ns: "Test.RequiredString", |
||||
expected: "RequiredString is a required field", |
||||
}, |
||||
{ |
||||
ns: "Test.RequiredNumber", |
||||
expected: "RequiredNumber is a required field", |
||||
}, |
||||
{ |
||||
ns: "Test.RequiredMultiple", |
||||
expected: "RequiredMultiple is a required field", |
||||
}, |
||||
} |
||||
|
||||
for _, tt := range tests { |
||||
|
||||
var fe validator.FieldError |
||||
|
||||
for _, e := range errs { |
||||
if tt.ns == e.Namespace() { |
||||
fe = e |
||||
break |
||||
} |
||||
} |
||||
|
||||
NotEqual(t, fe, nil) |
||||
Equal(t, tt.expected, fe.Translate(trans)) |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue