1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-14 15:30:19 +02:00
seaweedfs/weed/pb/filer_pb/filer_pb_helper_test.go
2022-08-17 12:05:07 -07:00

18 lines
274 B
Go

package filer_pb
import (
"testing"
"google.golang.org/protobuf/proto"
)
func TestFileIdSize(t *testing.T) {
fileIdStr := "11745,0293434534cbb9892b"
fid, _ := ToFileIdObject(fileIdStr)
bytes, _ := proto.Marshal(fid)
println(len(fileIdStr))
println(len(bytes))
}