Fix merge objects

This commit is contained in:
世界 2025-02-10 18:59:17 +08:00
parent b55d1c78b3
commit 2238a05966
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 50 additions and 6 deletions

View file

@ -0,0 +1,26 @@
package json_test
import (
"reflect"
"testing"
json "github.com/sagernet/sing/common/json/internal/contextjson"
"github.com/stretchr/testify/require"
)
type MyObject struct {
Hello string `json:"hello,omitempty"`
MyWorld
MyWorld2 string `json:"-"`
}
type MyWorld struct {
World string `json:"world,omitempty"`
}
func TestObjectKeys(t *testing.T) {
t.Parallel()
keys := json.ObjectKeys(reflect.TypeOf(&MyObject{}))
require.Equal(t, []string{"hello", "world"}, keys)
}