mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-24 16:03:43 +08:00
E.g. Print
{"params": {"vrrp":{"advert_int":1,"interface":"br0","pass":"YunionLB","priority":100,"virtual_router_id":100}}}
Will have the following result
| params.vrrp.advert_int | 1
| params.vrrp.interface | br0
| params.vrrp.pass | YunionLB
| params.vrrp.priority | 100
| params.vrrp.virtual_router_id | 100
55 lines
974 B
Go
55 lines
974 B
Go
package printutils
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
)
|
|
|
|
func TestPrintJSONObjectRecursive(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
in string
|
|
out string
|
|
}{
|
|
{
|
|
name: "basic",
|
|
in: `{
|
|
"k0": {
|
|
"k00": "v00",
|
|
"k01": [
|
|
{
|
|
"k010": "v010",
|
|
"k011": "v011"
|
|
}
|
|
]
|
|
}
|
|
}`,
|
|
out: `+---------------+-------+
|
|
| Field | Value |
|
|
+---------------+-------+
|
|
| k0.k00 | v00 |
|
|
| k0.k01.0.k010 | v010 |
|
|
| k0.k01.0.k011 | v011 |
|
|
+---------------+-------+
|
|
`,
|
|
},
|
|
}
|
|
for _, c := range cases {
|
|
t.Run(c.name, func(t *testing.T) {
|
|
j, err := jsonutils.ParseString(c.in)
|
|
if err != nil {
|
|
t.Fatalf("unexpected parse json error: %s", err)
|
|
}
|
|
PrintJSONObjectRecursiveEx(j, func(obj jsonutils.JSONObject) {
|
|
dict := obj.(*jsonutils.JSONDict)
|
|
printJSONObject(dict, func(s string) {
|
|
if s != c.out {
|
|
t.Errorf("want:\n%s\ngot:\n%s", c.out, s)
|
|
}
|
|
})
|
|
})
|
|
})
|
|
}
|
|
}
|