gf/util/gvalid/gvalid_z_unit_i18n_test.go
2021-10-11 21:41:56 +08:00

51 lines
1.5 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// 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 (
"context"
"github.com/gogf/gf/v2/debug/gdebug"
"github.com/gogf/gf/v2/i18n/gi18n"
"github.com/gogf/gf/v2/util/gvalid"
"testing"
"github.com/gogf/gf/v2/test/gtest"
)
func TestValidator_I18n(t *testing.T) {
var (
err gvalid.Error
i18nManager = gi18n.New(gi18n.Options{Path: gdebug.TestDataPath("i18n")})
ctxCn = gi18n.WithLanguage(context.TODO(), "cn")
validator = gvalid.New().I18n(i18nManager)
)
gtest.C(t, func(t *gtest.T) {
err = validator.Rules("required").CheckValue(ctx, "")
t.Assert(err.String(), "The field is required")
err = validator.Rules("required").CheckValue(ctxCn, "")
t.Assert(err.String(), "字段不能为空")
})
gtest.C(t, func(t *gtest.T) {
err = validator.Rules("required").Messages("CustomMessage").CheckValue(ctxCn, "")
t.Assert(err.String(), "自定义错误")
})
gtest.C(t, func(t *gtest.T) {
type Params struct {
Page int `v:"required|min:1 # page is required"`
Size int `v:"required|between:1,100 # size is required"`
ProjectId int `v:"between:1,10000 # project id must between :min, :max"`
}
obj := &Params{
Page: 1,
Size: 10,
}
err = validator.CheckStruct(ctxCn, obj)
t.Assert(err.String(), "项目ID必须大于等于1并且要小于等于10000")
})
}