golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
816 B
44 lines
816 B
package httpp |
|
|
|
import ( |
|
"io" |
|
"net" |
|
"testing" |
|
"time" |
|
|
|
"github.com/stretchr/testify/require" |
|
|
|
"github.com/bluenviron/mediamtx/internal/logger" |
|
) |
|
|
|
type testLogger struct{} |
|
|
|
func (testLogger) Log(_ logger.Level, _ string, _ ...interface{}) { |
|
} |
|
|
|
func TestFilterEmptyPath(t *testing.T) { |
|
s, err := NewWrappedServer( |
|
"tcp", |
|
"localhost:4555", |
|
10*time.Second, |
|
"", |
|
"", |
|
nil, |
|
&testLogger{}) |
|
require.NoError(t, err) |
|
defer s.Close() |
|
|
|
conn, err := net.Dial("tcp", "localhost:4555") |
|
require.NoError(t, err) |
|
defer conn.Close() |
|
|
|
_, err = conn.Write([]byte("OPTIONS http://localhost HTTP/1.1\n" + |
|
"Host: localhost:8889\n" + |
|
"Accept-Encoding: gzip\n" + |
|
"User-Agent: Go-http-client/1.1\n\n")) |
|
require.NoError(t, err) |
|
|
|
buf := make([]byte, 20) |
|
_, err = io.ReadFull(conn, buf) |
|
require.NoError(t, err) |
|
}
|
|
|