1
0
Fork 0

Adding upstream version 0.28.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-22 10:57:38 +02:00
parent 88f1d47ab6
commit e28c88ef14
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
933 changed files with 194711 additions and 0 deletions

View file

@ -0,0 +1,39 @@
package validators_test
import (
"errors"
"fmt"
"testing"
validation "github.com/go-ozzo/ozzo-validation/v4"
"github.com/pocketbase/pocketbase/core/validators"
)
func TestJoinValidationErrors(t *testing.T) {
scenarios := []struct {
errA error
errB error
expected string
}{
{nil, nil, "<nil>"},
{errors.New("abc"), nil, "abc"},
{nil, errors.New("abc"), "abc"},
{errors.New("abc"), errors.New("456"), "abc\n456"},
{validation.Errors{"test1": errors.New("test1_err")}, nil, "test1: test1_err."},
{nil, validation.Errors{"test2": errors.New("test2_err")}, "test2: test2_err."},
{validation.Errors{}, errors.New("456"), "\n456"},
{errors.New("456"), validation.Errors{}, "456\n"},
{validation.Errors{"test1": errors.New("test1_err")}, errors.New("456"), "test1: test1_err."},
{errors.New("456"), validation.Errors{"test2": errors.New("test2_err")}, "test2: test2_err."},
{validation.Errors{"test1": errors.New("test1_err")}, validation.Errors{"test2": errors.New("test2_err")}, "test1: test1_err; test2: test2_err."},
}
for i, s := range scenarios {
t.Run(fmt.Sprintf("%d_%#T_%T", i, s.errA, s.errB), func(t *testing.T) {
result := fmt.Sprintf("%v", validators.JoinValidationErrors(s.errA, s.errB))
if result != s.expected {
t.Fatalf("Expected\n%v\ngot\n%v", s.expected, result)
}
})
}
}