mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
85 lines
2.0 KiB
Go
Executable File
85 lines
2.0 KiB
Go
Executable File
// Copyright 2019 gf Author(https://github.com/gogf/gf). 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 (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/test/gtest"
|
|
"github.com/gogf/gf/util/gvalid"
|
|
)
|
|
|
|
func Test_Map(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
var (
|
|
rule = "ipv4"
|
|
val = "0.0.0"
|
|
err = gvalid.Check(val, rule, nil)
|
|
msg = map[string]string{
|
|
"ipv4": "The value must be a valid IPv4 address",
|
|
}
|
|
)
|
|
t.Assert(err.Map(), msg)
|
|
})
|
|
}
|
|
|
|
func Test_FirstString(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
var (
|
|
rule = "ipv4"
|
|
val = "0.0.0"
|
|
err = gvalid.Check(val, rule, nil)
|
|
n = err.FirstString()
|
|
)
|
|
t.Assert(n, "The value must be a valid IPv4 address")
|
|
})
|
|
}
|
|
|
|
func Test_CustomError1(t *testing.T) {
|
|
rule := "integer|length:6,16"
|
|
msgs := map[string]string{
|
|
"integer": "请输入一个整数",
|
|
"length": "参数长度不对啊老铁",
|
|
}
|
|
e := gvalid.Check("6.66", rule, msgs)
|
|
if e == nil || len(e.Map()) != 2 {
|
|
t.Error("规则校验失败")
|
|
} else {
|
|
if v, ok := e.Map()["integer"]; ok {
|
|
if strings.Compare(v, msgs["integer"]) != 0 {
|
|
t.Error("错误信息不匹配")
|
|
}
|
|
}
|
|
if v, ok := e.Map()["length"]; ok {
|
|
if strings.Compare(v, msgs["length"]) != 0 {
|
|
t.Error("错误信息不匹配")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_CustomError2(t *testing.T) {
|
|
rule := "integer|length:6,16"
|
|
msgs := "请输入一个整数|参数长度不对啊老铁"
|
|
e := gvalid.Check("6.66", rule, msgs)
|
|
if e == nil || len(e.Map()) != 2 {
|
|
t.Error("规则校验失败")
|
|
} else {
|
|
if v, ok := e.Map()["integer"]; ok {
|
|
if strings.Compare(v, "请输入一个整数") != 0 {
|
|
t.Error("错误信息不匹配")
|
|
}
|
|
}
|
|
if v, ok := e.Map()["length"]; ok {
|
|
if strings.Compare(v, "参数长度不对啊老铁") != 0 {
|
|
t.Error("错误信息不匹配")
|
|
}
|
|
}
|
|
}
|
|
}
|