代码拉取完成,页面将自动刷新
同步操作将从 lunny/tango 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// 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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。