💯Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving
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 (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/joeybloggs/go-validate-yourself"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UserDetails struct {
|
|
|
|
Address string `validate:"omitempty,length=6"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type User struct {
|
|
|
|
FirstName string `validate:"required"`
|
|
|
|
Details *UserDetails
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidateStruct(t *testing.T) {
|
|
|
|
|
|
|
|
u := &User{
|
|
|
|
FirstName: "",
|
|
|
|
Details: &UserDetails{
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
errors := validator.ValidateStruct(u)
|
|
|
|
|
|
|
|
fmt.Println(errors == nil)
|
|
|
|
|
|
|
|
for _, i := range errors {
|
|
|
|
fmt.Printf("Error Struct:%s\n", i.Struct)
|
|
|
|
|
|
|
|
for _, j := range i.Errors {
|
|
|
|
|
|
|
|
fmt.Printf("Error Field:%s Error Tag:%s\n", j.Field, j.ErrorTag)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// func TestValidateField(t *testing.T) {
|
|
|
|
//
|
|
|
|
// u := &User{
|
|
|
|
// FirstName: "Dean Karn",
|
|
|
|
// Details: &UserDetails{
|
|
|
|
// "26 Here Blvd.",
|
|
|
|
// },
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// err := validator.ValidateFieldByTag(u.FirstName, "required")
|
|
|
|
//
|
|
|
|
// fmt.Println(err == nil)
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|