mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
22 lines
307 B
Go
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))
|
||
|
}
|