mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
18 lines
274 B
Go
18 lines
274 B
Go
package filer_pb
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
)
|
|
|
|
func TestFileIdSize(t *testing.T) {
|
|
fileIdStr := "11745,0293434534cbb9892b"
|
|
|
|
fid, _ := ToFileIdObject(fileIdStr)
|
|
bytes, _ := proto.Marshal(fid)
|
|
|
|
println(len(fileIdStr))
|
|
println(len(bytes))
|
|
}
|