2021-01-12 10:46:39 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2020-07-05 18:55:38 +08:00
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
|
|
|
|
package gvalid_test
|
|
|
|
|
|
|
|
import (
|
2021-05-13 20:56:52 +08:00
|
|
|
"context"
|
2020-07-05 18:55:38 +08:00
|
|
|
"errors"
|
2021-05-19 22:33:50 +08:00
|
|
|
"testing"
|
|
|
|
|
2021-10-11 21:41:56 +08:00
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/util/gconv"
|
2020-07-05 18:55:38 +08:00
|
|
|
|
2021-10-11 21:41:56 +08:00
|
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
|
|
"github.com/gogf/gf/v2/util/gvalid"
|
2020-07-05 18:55:38 +08:00
|
|
|
)
|
|
|
|
|
2020-09-21 23:51:30 +08:00
|
|
|
func Test_CustomRule1(t *testing.T) {
|
2020-07-05 18:55:38 +08:00
|
|
|
rule := "custom"
|
2021-05-29 11:30:34 +08:00
|
|
|
err := gvalid.RegisterRule(
|
|
|
|
rule,
|
|
|
|
func(ctx context.Context, rule string, value interface{}, message string, data interface{}) error {
|
|
|
|
pass := gconv.String(value)
|
|
|
|
if len(pass) != 6 {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
m := gconv.Map(data)
|
|
|
|
if m["data"] != pass {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
)
|
2020-07-05 18:55:38 +08:00
|
|
|
gtest.Assert(err, nil)
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2021-05-19 09:25:49 +08:00
|
|
|
err := gvalid.CheckValue(context.TODO(), "123456", rule, "custom message")
|
2020-07-05 18:55:38 +08:00
|
|
|
t.Assert(err.String(), "custom message")
|
2021-05-19 09:25:49 +08:00
|
|
|
err = gvalid.CheckValue(context.TODO(), "123456", rule, "custom message", g.Map{"data": "123456"})
|
2020-07-05 18:55:38 +08:00
|
|
|
t.Assert(err, nil)
|
|
|
|
})
|
|
|
|
// Error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@custom#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "123",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-05-13 20:56:52 +08:00
|
|
|
err := gvalid.CheckStruct(context.TODO(), st, nil)
|
2020-07-05 18:55:38 +08:00
|
|
|
t.Assert(err.String(), "自定义错误")
|
|
|
|
})
|
|
|
|
// No error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@custom#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "123456",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-05-13 20:56:52 +08:00
|
|
|
err := gvalid.CheckStruct(context.TODO(), st, nil)
|
2020-07-05 18:55:38 +08:00
|
|
|
t.Assert(err, nil)
|
|
|
|
})
|
|
|
|
}
|
2020-09-21 23:51:30 +08:00
|
|
|
|
|
|
|
func Test_CustomRule2(t *testing.T) {
|
|
|
|
rule := "required-map"
|
2021-05-29 11:30:34 +08:00
|
|
|
err := gvalid.RegisterRule(rule, func(ctx context.Context, rule string, value interface{}, message string, data interface{}) error {
|
2020-09-21 23:51:30 +08:00
|
|
|
m := gconv.Map(value)
|
|
|
|
if len(m) == 0 {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
gtest.Assert(err, nil)
|
|
|
|
// Check.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
errStr := "data map should not be empty"
|
2021-05-19 09:25:49 +08:00
|
|
|
t.Assert(gvalid.CheckValue(context.TODO(), g.Map{}, rule, errStr).String(), errStr)
|
|
|
|
t.Assert(gvalid.CheckValue(context.TODO(), g.Map{"k": "v"}, rule, errStr), nil)
|
2020-09-21 23:51:30 +08:00
|
|
|
})
|
|
|
|
// Error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value map[string]string `v:"uid@required-map#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: map[string]string{},
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-05-13 20:56:52 +08:00
|
|
|
err := gvalid.CheckStruct(context.TODO(), st, nil)
|
2020-09-21 23:51:30 +08:00
|
|
|
t.Assert(err.String(), "自定义错误")
|
|
|
|
})
|
|
|
|
// No error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value map[string]string `v:"uid@required-map#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: map[string]string{"k": "v"},
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-05-13 20:56:52 +08:00
|
|
|
err := gvalid.CheckStruct(context.TODO(), st, nil)
|
2020-09-21 23:51:30 +08:00
|
|
|
t.Assert(err, nil)
|
|
|
|
})
|
|
|
|
}
|
2020-10-21 00:08:36 +08:00
|
|
|
|
|
|
|
func Test_CustomRule_AllowEmpty(t *testing.T) {
|
|
|
|
rule := "allow-empty-str"
|
2021-05-29 11:30:34 +08:00
|
|
|
err := gvalid.RegisterRule(rule, func(ctx context.Context, rule string, value interface{}, message string, data interface{}) error {
|
2020-10-21 00:08:36 +08:00
|
|
|
s := gconv.String(value)
|
|
|
|
if len(s) == 0 || s == "gf" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.New(message)
|
|
|
|
})
|
|
|
|
gtest.Assert(err, nil)
|
|
|
|
// Check.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
errStr := "error"
|
2021-05-19 09:25:49 +08:00
|
|
|
t.Assert(gvalid.CheckValue(context.TODO(), "", rule, errStr), nil)
|
|
|
|
t.Assert(gvalid.CheckValue(context.TODO(), "gf", rule, errStr), nil)
|
|
|
|
t.Assert(gvalid.CheckValue(context.TODO(), "gf2", rule, errStr).String(), errStr)
|
2020-10-21 00:08:36 +08:00
|
|
|
})
|
|
|
|
// Error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@allow-empty-str#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-05-13 20:56:52 +08:00
|
|
|
err := gvalid.CheckStruct(context.TODO(), st, nil)
|
2021-05-18 20:51:31 +08:00
|
|
|
t.Assert(err, nil)
|
2020-10-21 00:08:36 +08:00
|
|
|
})
|
|
|
|
// No error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@allow-empty-str#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "john",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-05-13 20:56:52 +08:00
|
|
|
err := gvalid.CheckStruct(context.TODO(), st, nil)
|
2020-10-21 00:08:36 +08:00
|
|
|
t.Assert(err.String(), "自定义错误")
|
|
|
|
})
|
|
|
|
}
|
2021-05-29 11:30:34 +08:00
|
|
|
|
|
|
|
func TestValidator_RuleFunc(t *testing.T) {
|
|
|
|
ruleName := "custom_1"
|
|
|
|
ruleFunc := func(ctx context.Context, rule string, value interface{}, message string, data interface{}) error {
|
|
|
|
pass := gconv.String(value)
|
|
|
|
if len(pass) != 6 {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
if m := gconv.Map(data); m["data"] != pass {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2021-10-11 21:34:19 +08:00
|
|
|
err := g.Validator().Rules(ruleName).
|
|
|
|
Messages("custom message").
|
|
|
|
RuleFunc(ruleName, ruleFunc).
|
|
|
|
CheckValue(ctx, "123456")
|
2021-05-29 11:30:34 +08:00
|
|
|
t.Assert(err.String(), "custom message")
|
|
|
|
err = g.Validator().
|
|
|
|
Rules(ruleName).
|
|
|
|
Messages("custom message").
|
|
|
|
Data(g.Map{"data": "123456"}).
|
|
|
|
RuleFunc(ruleName, ruleFunc).
|
2021-10-11 21:34:19 +08:00
|
|
|
CheckValue(ctx, "123456")
|
2021-05-29 11:30:34 +08:00
|
|
|
t.AssertNil(err)
|
|
|
|
})
|
|
|
|
// Error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@custom_1#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "123",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-10-11 21:34:19 +08:00
|
|
|
err := g.Validator().RuleFunc(ruleName, ruleFunc).CheckStruct(ctx, st)
|
2021-05-29 11:30:34 +08:00
|
|
|
t.Assert(err.String(), "自定义错误")
|
|
|
|
})
|
|
|
|
// No error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@custom_1#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "123456",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
2021-10-11 21:34:19 +08:00
|
|
|
err := g.Validator().RuleFunc(ruleName, ruleFunc).CheckStruct(ctx, st)
|
2021-05-29 11:30:34 +08:00
|
|
|
t.AssertNil(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidator_RuleFuncMap(t *testing.T) {
|
|
|
|
ruleName := "custom_1"
|
|
|
|
ruleFunc := func(ctx context.Context, rule string, value interface{}, message string, data interface{}) error {
|
|
|
|
pass := gconv.String(value)
|
|
|
|
if len(pass) != 6 {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
if m := gconv.Map(data); m["data"] != pass {
|
|
|
|
return errors.New(message)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
err := g.Validator().
|
|
|
|
Rules(ruleName).
|
|
|
|
Messages("custom message").
|
|
|
|
RuleFuncMap(map[string]gvalid.RuleFunc{
|
|
|
|
ruleName: ruleFunc,
|
2021-10-11 21:34:19 +08:00
|
|
|
}).CheckValue(ctx, "123456")
|
2021-05-29 11:30:34 +08:00
|
|
|
t.Assert(err.String(), "custom message")
|
|
|
|
err = g.Validator().
|
|
|
|
Rules(ruleName).
|
|
|
|
Messages("custom message").
|
|
|
|
Data(g.Map{"data": "123456"}).
|
|
|
|
RuleFuncMap(map[string]gvalid.RuleFunc{
|
|
|
|
ruleName: ruleFunc,
|
|
|
|
}).
|
2021-10-11 21:34:19 +08:00
|
|
|
CheckValue(ctx, "123456")
|
2021-05-29 11:30:34 +08:00
|
|
|
t.AssertNil(err)
|
|
|
|
})
|
|
|
|
// Error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@custom_1#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "123",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
|
|
|
err := g.Validator().
|
|
|
|
RuleFuncMap(map[string]gvalid.RuleFunc{
|
|
|
|
ruleName: ruleFunc,
|
2021-10-11 21:34:19 +08:00
|
|
|
}).CheckStruct(ctx, st)
|
2021-05-29 11:30:34 +08:00
|
|
|
t.Assert(err.String(), "自定义错误")
|
|
|
|
})
|
|
|
|
// No error with struct validation.
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
|
|
type T struct {
|
|
|
|
Value string `v:"uid@custom_1#自定义错误"`
|
|
|
|
Data string `p:"data"`
|
|
|
|
}
|
|
|
|
st := &T{
|
|
|
|
Value: "123456",
|
|
|
|
Data: "123456",
|
|
|
|
}
|
|
|
|
err := g.Validator().
|
|
|
|
RuleFuncMap(map[string]gvalid.RuleFunc{
|
|
|
|
ruleName: ruleFunc,
|
2021-10-11 21:34:19 +08:00
|
|
|
}).CheckStruct(ctx, st)
|
2021-05-29 11:30:34 +08:00
|
|
|
t.AssertNil(err)
|
|
|
|
})
|
|
|
|
}
|