1 Star 0 Fork 12

tsingfu/CloudStore

forked from 进击的皇虫/CloudStore 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
utils_test.go 895 Bytes
一键复制 编辑 原始数据 按行查看 历史
TruthHun 提交于 2019-03-19 22:42 . 云存储列表获取优化
package CloudStore
import "testing"
var (
objectSVG = "test_data/test.svg" //未经过gzip压缩的svg图片
objectSVGGzip = "test_data/test.gzip.svg" //gzip压缩后的svg图片
objectHtml = "test_data/helloworld.html" //未经gzip压缩的HTML
objectHtmlGzip = "test_data/helloworld.gzip.html" //gzip压缩后的HTML
objectNotExist = "not exist object"
objectPrefix = "test_data"
objectDownload = "test_data/download.svg"
headerGzip = map[string]string{"Content-Encoding": "gzip"}
headerSVG = map[string]string{"Content-Type": "image/svg+xml"}
headerHtml = map[string]string{"Content-Type": "text/html; charset=UTF-8"}
)
func TestCompressByGzip(t *testing.T) {
err = CompressByGzip(objectSVG, objectSVGGzip)
if err != nil {
t.Error(err)
}
err = CompressByGzip(objectHtml, objectHtmlGzip)
if err != nil {
t.Error(err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tsingfu/CloudStore.git
git@gitee.com:tsingfu/CloudStore.git
tsingfu
CloudStore
CloudStore
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385