Mainflux.mainflux/pkg/transformers/json/example_test.go

74 lines
1.4 KiB
Go

// Copyright (c) Mainflux
// SPDX-License-Identifier: Apache-2.0
package json_test
import (
"encoding/json"
"fmt"
mfjson "github.com/mainflux/mainflux/pkg/transformers/json"
)
func ExampleParseFlat() {
in := map[string]interface{}{
"key1": "value1",
"key2": "value2",
"key5/nested1/nested2": "value3",
"key5/nested1/nested3": "value4",
"key5/nested2/nested4": "value5",
}
out := mfjson.ParseFlat(in)
b, err := json.MarshalIndent(out, "", " ")
if err != nil {
panic(err)
}
fmt.Println(string(b))
// Output:{
// "key1": "value1",
// "key2": "value2",
// "key5": {
// "nested1": {
// "nested2": "value3",
// "nested3": "value4"
// },
// "nested2": {
// "nested4": "value5"
// }
// }
// }
}
func ExampleFlatten() {
in := map[string]interface{}{
"key1": "value1",
"key2": "value2",
"key5": map[string]interface{}{
"nested1": map[string]interface{}{
"nested2": "value3",
"nested3": "value4",
},
"nested2": map[string]interface{}{
"nested4": "value5",
},
},
}
out, err := mfjson.Flatten(in)
if err != nil {
panic(err)
}
b, err := json.MarshalIndent(out, "", " ")
if err != nil {
panic(err)
}
fmt.Println(string(b))
// Output:{
// "key1": "value1",
// "key2": "value2",
// "key5/nested1/nested2": "value3",
// "key5/nested1/nested3": "value4",
// "key5/nested2/nested4": "value5"
// }
}