pool_test.go 737 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package tango
  2. import (
  3. "testing"
  4. "bytes"
  5. "net/http"
  6. "net/http/httptest"
  7. "sync"
  8. )
  9. type PoolAction struct {
  10. }
  11. func (PoolAction) Get() string {
  12. return "pool"
  13. }
  14. func TestPool(t *testing.T) {
  15. o := Classic()
  16. o.Get("/", new(PoolAction))
  17. var wg sync.WaitGroup
  18. // default pool size is 800
  19. for i:=0; i< 1000; i++ {
  20. wg.Add(1)
  21. go func(){
  22. buff := bytes.NewBufferString("")
  23. recorder := httptest.NewRecorder()
  24. recorder.Body = buff
  25. req, err := http.NewRequest("GET", "http://localhost:8000/", nil)
  26. if err != nil {
  27. t.Error(err)
  28. }
  29. o.ServeHTTP(recorder, req)
  30. expect(t, recorder.Code, http.StatusOK)
  31. refute(t, len(buff.String()), 0)
  32. expect(t, buff.String(), "pool")
  33. wg.Done()
  34. }()
  35. }
  36. wg.Wait()
  37. }