mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
85 lines
1.7 KiB
Go
85 lines
1.7 KiB
Go
package http
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
"strings"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/buger/goreplay/pkg/emitter"
|
|
"github.com/buger/goreplay/pkg/plugin"
|
|
"github.com/buger/goreplay/pkg/test"
|
|
)
|
|
|
|
func TestHTTPInput(t *testing.T) {
|
|
wg := new(sync.WaitGroup)
|
|
|
|
input := NewHTTPInput("127.0.0.1:0")
|
|
time.Sleep(time.Millisecond)
|
|
output := test.NewTestOutput(func(*plugin.Message) {
|
|
wg.Done()
|
|
})
|
|
|
|
plugins := &plugin.InOutPlugins{
|
|
Inputs: []plugin.Reader{input},
|
|
Outputs: []plugin.Writer{output},
|
|
}
|
|
plugins.All = append(plugins.All, input, output)
|
|
|
|
emitter := emitter.New(&emitter.Config{})
|
|
go emitter.Start(plugins)
|
|
|
|
address := strings.Replace(input.address, "[::]", "127.0.0.1", -1)
|
|
|
|
for i := 0; i < 100; i++ {
|
|
wg.Add(1)
|
|
http.Get("http://" + address + "/")
|
|
}
|
|
|
|
wg.Wait()
|
|
emitter.Close()
|
|
}
|
|
|
|
func TestInputHTTPLargePayload(t *testing.T) {
|
|
wg := new(sync.WaitGroup)
|
|
const n = 10 << 20 // 10MB
|
|
var large [n]byte
|
|
large[n-1] = '0'
|
|
|
|
input := NewHTTPInput("127.0.0.1:0")
|
|
output := test.NewTestOutput(func(msg *plugin.Message) {
|
|
_len := len(msg.Data)
|
|
if _len >= n { // considering http body CRLF
|
|
t.Errorf("expected body to be >= %d", n)
|
|
}
|
|
wg.Done()
|
|
})
|
|
plugins := &plugin.InOutPlugins{
|
|
Inputs: []plugin.Reader{input},
|
|
Outputs: []plugin.Writer{output},
|
|
}
|
|
plugins.All = append(plugins.All, input, output)
|
|
|
|
emitter := emitter.New()
|
|
defer emitter.Close()
|
|
go emitter.Start(plugins)
|
|
|
|
address := strings.Replace(input.address, "[::]", "127.0.0.1", -1)
|
|
var req *http.Request
|
|
var err error
|
|
req, err = http.NewRequest("POST", "http://"+address, bytes.NewBuffer(large[:]))
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
wg.Add(1)
|
|
_, err = http.DefaultClient.Do(req)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
wg.Wait()
|
|
}
|