Files
seaweedfs/weed/pb/proto_read_write_test.go

44 lines
810 B
Go
Raw Normal View History

2019-11-27 03:09:42 -08:00
package pb
import (
"fmt"
"testing"
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
2022-08-17 12:42:03 -07:00
jsonpb "google.golang.org/protobuf/encoding/protojson"
2019-11-27 03:09:42 -08:00
)
func TestJsonpMarshalUnmarshal(t *testing.T) {
2019-12-02 15:52:33 -08:00
tv := &volume_server_pb.RemoteFile{
2019-11-27 03:09:42 -08:00
BackendType: "aws",
2019-12-02 20:49:58 -08:00
BackendId: "",
FileSize: 12,
2019-11-27 03:09:42 -08:00
}
2022-08-18 00:15:46 -07:00
m := jsonpb.MarshalOptions{
EmitUnpopulated: true,
Indent: " ",
2019-11-27 03:09:42 -08:00
}
2022-08-18 00:15:46 -07:00
if text, err := m.Marshal(tv); err != nil {
2019-11-27 03:09:42 -08:00
fmt.Printf("marshal eror: %v\n", err)
} else {
2022-08-18 00:15:46 -07:00
fmt.Printf("marshalled: %s\n", string(text))
2019-11-27 03:09:42 -08:00
}
rawJson := `{
"backendType":"aws",
2019-12-02 15:52:33 -08:00
"backendId":"temp",
2022-05-01 09:02:01 -07:00
"fileSize":12
2019-11-27 03:09:42 -08:00
}`
2019-12-02 15:52:33 -08:00
tv1 := &volume_server_pb.RemoteFile{}
2022-08-18 00:15:46 -07:00
if err := jsonpb.Unmarshal([]byte(rawJson), tv1); err != nil {
2019-12-02 15:06:12 -08:00
fmt.Printf("unmarshal error: %v\n", err)
2019-11-27 03:09:42 -08:00
}
fmt.Printf("unmarshalled: %+v\n", tv1)
}