27 Star 83 Fork 11

lunny/tango

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
compress_test.go 2.75 KB
一键复制 编辑 原始数据 按行查看 历史
lunny 提交于 2015-04-28 15:42 . license & small optimization
// Copyright 2015 The Tango Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tango
import (
"bytes"
"compress/flate"
"compress/gzip"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
)
type CompressExample struct {
Compress // add this for ask compress according request accept-encoding
}
func (CompressExample) Get() string {
return fmt.Sprintf("This is a auto compress text")
}
type GZipExample struct {
GZip // add this for ask compress to GZip
}
func (GZipExample) Get() string {
return fmt.Sprintf("This is a gzip compress text")
}
type DeflateExample struct {
Deflate // add this for ask compress to Deflate, if not support then not compress
}
func (DeflateExample) Get() string {
return fmt.Sprintf("This is a deflate compress text")
}
type NoCompress struct {
}
func (NoCompress) Get() string {
return fmt.Sprintf("This is a non-compress text")
}
func TestCompressAuto(t *testing.T) {
o := Classic()
o.Get("/", new(CompressExample))
testCompress(t, o, "http://localhost:8000/",
"This is a auto compress text", "gzip")
}
func TestCompressGzip(t *testing.T) {
o := Classic()
o.Get("/", new(GZipExample))
testCompress(t, o, "http://localhost:8000/",
"This is a gzip compress text", "gzip")
}
func TestCompressDeflate(t *testing.T) {
o := Classic()
o.Get("/", new(DeflateExample))
testCompress(t, o, "http://localhost:8000/",
"This is a deflate compress text", "deflate")
}
func TestCompressNon(t *testing.T) {
o := Classic()
o.Get("/", new(NoCompress))
testCompress(t, o, "http://localhost:8000/",
"This is a non-compress text", "")
}
func TestCompressStatic(t *testing.T) {
o := New()
o.Use(Compresses([]string{".html"}))
o.Use(ClassicHandlers...)
testCompress(t, o, "http://localhost:8000/public/test.html",
"hello tango", "gzip")
}
func testCompress(t *testing.T, o *Tango, url, content, enc string) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
req, err := http.NewRequest("GET", url, nil)
if err != nil {
t.Error(err)
}
req.Header.Add("Accept-Encoding", "gzip, deflate")
o.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
refute(t, len(buff.String()), 0)
ce := recorder.Header().Get("Content-Encoding")
if ce == "gzip" {
r, err := gzip.NewReader(buff)
if err != nil {
t.Error(err)
}
defer r.Close()
bs, err := ioutil.ReadAll(r)
if err != nil {
t.Error(err)
}
expect(t, string(bs), content)
} else if ce == "deflate" {
r := flate.NewReader(buff)
defer r.Close()
bs, err := ioutil.ReadAll(r)
if err != nil {
t.Error(err)
}
expect(t, string(bs), content)
} else {
expect(t, buff.String(), content)
}
expect(t, enc, ce)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lunny/tango.git
git@gitee.com:lunny/tango.git
lunny
tango
tango
master

搜索帮助