1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-25 20:09:30 +02:00
seaweedfs/weed/util/compression_test.go
2020-03-26 23:50:07 -07:00

22 lines
307 B
Go

package util
import (
"testing"
"golang.org/x/tools/godoc/util"
)
func TestIsGzippable(t *testing.T) {
buf := make([]byte, 1024)
isText := util.IsText(buf)
if isText {
t.Error("buf with zeros are not text")
}
compressed, _ := GzipData(buf)
t.Logf("compressed size %d\n", len(compressed))
}