seaweedfs/weed/pb/proto_read_write_test.go

44 lines
810 B
Go
Raw Normal View History

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