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.
72 lines
1.5 KiB
72 lines
1.5 KiB
package srt |
|
|
|
import ( |
|
"bufio" |
|
"testing" |
|
"time" |
|
|
|
"github.com/bluenviron/mediacommon/pkg/formats/mpegts" |
|
srt "github.com/datarhei/gosrt" |
|
"github.com/stretchr/testify/require" |
|
|
|
"github.com/bluenviron/mediamtx/internal/conf" |
|
"github.com/bluenviron/mediamtx/internal/defs" |
|
"github.com/bluenviron/mediamtx/internal/test" |
|
) |
|
|
|
func TestSource(t *testing.T) { |
|
ln, err := srt.Listen("srt", "localhost:9002", srt.DefaultConfig()) |
|
require.NoError(t, err) |
|
defer ln.Close() |
|
|
|
go func() { |
|
conn, _, err := ln.Accept(func(req srt.ConnRequest) srt.ConnType { |
|
require.Equal(t, "sidname", req.StreamId()) |
|
err := req.SetPassphrase("ttest1234567") |
|
if err != nil { |
|
return srt.REJECT |
|
} |
|
return srt.SUBSCRIBE |
|
}) |
|
require.NoError(t, err) |
|
require.NotNil(t, conn) |
|
defer conn.Close() |
|
|
|
track := &mpegts.Track{ |
|
Codec: &mpegts.CodecH264{}, |
|
} |
|
|
|
bw := bufio.NewWriter(conn) |
|
w := mpegts.NewWriter(bw, []*mpegts.Track{track}) |
|
require.NoError(t, err) |
|
|
|
err = w.WriteH26x(track, 0, 0, true, [][]byte{{ // IDR |
|
5, 1, |
|
}}) |
|
require.NoError(t, err) |
|
|
|
err = w.WriteH26x(track, 0, 0, true, [][]byte{{ // non-IDR |
|
5, 2, |
|
}}) |
|
require.NoError(t, err) |
|
|
|
err = bw.Flush() |
|
require.NoError(t, err) |
|
|
|
time.Sleep(1000 * time.Millisecond) |
|
}() |
|
|
|
te := test.NewSourceTester( |
|
func(p defs.StaticSourceParent) defs.StaticSource { |
|
return &Source{ |
|
ResolvedSource: "srt://localhost:9002?streamid=sidname&passphrase=ttest1234567", |
|
ReadTimeout: conf.StringDuration(10 * time.Second), |
|
Parent: p, |
|
} |
|
}, |
|
&conf.Path{}, |
|
) |
|
defer te.Close() |
|
|
|
<-te.Unit |
|
}
|
|
|