blob: 7b16d17a42c5de9efebe15e8d5b1101efc26ecb5 [file] [log] [blame]
// Copyright 2025 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package jsonschema
import (
"encoding/json"
"hash/maphash"
"reflect"
"testing"
)
func TestEqual(t *testing.T) {
for _, tt := range []struct {
x1, x2 any
want bool
}{
{0, 1, false},
{1, 1.0, true},
{nil, 0, false},
{"0", 0, false},
{2.5, 2.5, true},
{[]int{1, 2}, []float64{1.0, 2.0}, true},
{[]int(nil), []int{}, false},
{[]map[string]any(nil), []map[string]any{}, false},
{
map[string]any{"a": 1, "b": 2.0},
map[string]any{"a": 1.0, "b": 2},
true,
},
} {
check := func(x1, x2 any, want bool) {
t.Helper()
if got := Equal(x1, x2); got != want {
t.Errorf("jsonEqual(%#v, %#v) = %t, want %t", x1, x2, got, want)
}
}
check(tt.x1, tt.x1, true)
check(tt.x2, tt.x2, true)
check(tt.x1, tt.x2, tt.want)
check(tt.x2, tt.x1, tt.want)
}
}
func TestJSONType(t *testing.T) {
for _, tt := range []struct {
val string
want string
}{
{`null`, "null"},
{`0`, "integer"},
{`0.0`, "integer"},
{`1e2`, "integer"},
{`0.1`, "number"},
{`""`, "string"},
{`true`, "boolean"},
{`[]`, "array"},
{`{}`, "object"},
} {
var val any
if err := json.Unmarshal([]byte(tt.val), &val); err != nil {
t.Fatal(err)
}
got, ok := jsonType(reflect.ValueOf(val))
if !ok {
t.Fatalf("jsonType failed on %q", tt.val)
}
if got != tt.want {
t.Errorf("%s: got %q, want %q", tt.val, got, tt.want)
}
}
}
func TestHash(t *testing.T) {
x := map[string]any{
"s": []any{1, "foo", nil, true},
"f": 2.5,
"m": map[string]any{
"n": json.Number("123.456"),
"schema": &Schema{Type: "integer", UniqueItems: true},
},
"c": 1.2 + 3.4i,
"n": nil,
}
seed := maphash.MakeSeed()
hash := func(x any) uint64 {
var h maphash.Hash
h.SetSeed(seed)
hashValue(&h, reflect.ValueOf(x))
return h.Sum64()
}
want := hash(x)
// Run several times to verify consistency.
for range 10 {
if got := hash(x); got != want {
t.Errorf("hash values differ: %d vs. %d", got, want)
}
}
// Check mathematically equal values.
nums := []any{
5,
uint(5),
5.0,
json.Number("5"),
json.Number("5.00"),
}
for i, n := range nums {
if i == 0 {
want = hash(n)
} else if got := hash(n); got != want {
t.Errorf("hashes differ between %v (%[1]T) and %v (%[2]T)", nums[0], n)
}
}
// Check that a bare JSON `null` is OK.
var null any
if err := json.Unmarshal([]byte(`null`), &null); err != nil {
t.Fatal(err)
}
_ = hash(null)
}