mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
26 lines
484 B
Go
26 lines
484 B
Go
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)
|
|
}
|