12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package pb
- import (
- "fmt"
- "testing"
- "github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
- jsonpb "google.golang.org/protobuf/encoding/protojson"
- )
- func TestJsonpMarshalUnmarshal(t *testing.T) {
- tv := &volume_server_pb.RemoteFile{
- BackendType: "aws",
- BackendId: "",
- FileSize: 12,
- }
- m := jsonpb.MarshalOptions{
- EmitUnpopulated: true,
- Indent: " ",
- }
- if text, err := m.Marshal(tv); err != nil {
- fmt.Printf("marshal eror: %v\n", err)
- } else {
- fmt.Printf("marshalled: %s\n", string(text))
- }
- rawJson := `{
- "backendType":"aws",
- "backendId":"temp",
- "fileSize":12
- }`
- tv1 := &volume_server_pb.RemoteFile{}
- if err := jsonpb.Unmarshal([]byte(rawJson), tv1); err != nil {
- fmt.Printf("unmarshal error: %v\n", err)
- }
- fmt.Printf("unmarshalled: %+v\n", tv1)
- }
|