27 Star 83 Fork 11

lunny / tango

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pool_test.go 903 Bytes
一键复制 编辑 原始数据 按行查看 历史
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"
"net/http"
"net/http/httptest"
"sync"
"testing"
)
type PoolAction struct {
}
func (PoolAction) Get() string {
return "pool"
}
func TestPool(t *testing.T) {
o := Classic()
o.Get("/", new(PoolAction))
var wg sync.WaitGroup
// default pool size is 800
for i := 0; i < 1000; i++ {
wg.Add(1)
go func() {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
req, err := http.NewRequest("GET", "http://localhost:8000/", nil)
if err != nil {
t.Error(err)
}
o.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
refute(t, len(buff.String()), 0)
expect(t, buff.String(), "pool")
wg.Done()
}()
}
wg.Wait()
}
Go
1
https://gitee.com/lunny/tango.git
git@gitee.com:lunny/tango.git
lunny
tango
tango
master

搜索帮助