mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
// PluginReader is an interface for input plugins
type PluginReader interface {
PluginRead() (msg *Message, err error)
}
// PluginWriter is an interface for output plugins
type PluginWriter interface {
PluginWrite(msg *Message) (n int, err error)
}
81 lines
1.6 KiB
Go
81 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
"strings"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestHTTPInput(t *testing.T) {
|
|
wg := new(sync.WaitGroup)
|
|
|
|
input := NewHTTPInput("127.0.0.1:0")
|
|
time.Sleep(time.Millisecond)
|
|
output := NewTestOutput(func(*Message) {
|
|
wg.Done()
|
|
})
|
|
|
|
plugins := &InOutPlugins{
|
|
Inputs: []PluginReader{input},
|
|
Outputs: []PluginWriter{output},
|
|
}
|
|
plugins.All = append(plugins.All, input, output)
|
|
|
|
emitter := NewEmitter()
|
|
go emitter.Start(plugins, Settings.Middleware)
|
|
|
|
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 := NewTestOutput(func(msg *Message) {
|
|
_len := len(msg.Data)
|
|
if _len >= n { // considering http body CRLF
|
|
t.Errorf("expected body to be >= %d", n)
|
|
}
|
|
wg.Done()
|
|
})
|
|
plugins := &InOutPlugins{
|
|
Inputs: []PluginReader{input},
|
|
Outputs: []PluginWriter{output},
|
|
}
|
|
plugins.All = append(plugins.All, input, output)
|
|
|
|
emitter := NewEmitter()
|
|
defer emitter.Close()
|
|
go emitter.Start(plugins, Settings.Middleware)
|
|
|
|
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()
|
|
}
|