mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-09-28 20:42:11 +08:00
152 lines
3.7 KiB
Go
152 lines
3.7 KiB
Go
package webrtc
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pion/rtp"
|
|
pwebrtc "github.com/pion/webrtc/v4"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/bluenviron/mediamtx/internal/conf"
|
|
"github.com/bluenviron/mediamtx/internal/defs"
|
|
"github.com/bluenviron/mediamtx/internal/protocols/webrtc"
|
|
"github.com/bluenviron/mediamtx/internal/test"
|
|
)
|
|
|
|
func whipOffer(body []byte) *pwebrtc.SessionDescription {
|
|
return &pwebrtc.SessionDescription{
|
|
Type: pwebrtc.SDPTypeOffer,
|
|
SDP: string(body),
|
|
}
|
|
}
|
|
|
|
func TestSource(t *testing.T) {
|
|
outgoingTracks := []*webrtc.OutgoingTrack{{
|
|
Caps: pwebrtc.RTPCodecCapability{
|
|
MimeType: "audio/opus",
|
|
ClockRate: 48000,
|
|
Channels: 2,
|
|
SDPFmtpLine: "minptime=10;useinbandfec=1;stereo=1;sprop-stereo=1",
|
|
},
|
|
}}
|
|
|
|
pc := &webrtc.PeerConnection{
|
|
LocalRandomUDP: true,
|
|
IPsFromInterfaces: true,
|
|
Publish: true,
|
|
HandshakeTimeout: conf.Duration(10 * time.Second),
|
|
TrackGatherTimeout: conf.Duration(2 * time.Second),
|
|
STUNGatherTimeout: conf.Duration(5 * time.Second),
|
|
OutgoingTracks: outgoingTracks,
|
|
Log: test.NilLogger,
|
|
}
|
|
err := pc.Start()
|
|
require.NoError(t, err)
|
|
defer pc.Close()
|
|
|
|
state := 0
|
|
|
|
httpServ := &http.Server{
|
|
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
switch state {
|
|
case 0:
|
|
require.Equal(t, http.MethodOptions, r.Method)
|
|
require.Equal(t, "/my/resource", r.URL.Path)
|
|
|
|
w.Header().Set("Access-Control-Allow-Methods", "OPTIONS, GET, POST, PATCH")
|
|
w.Header().Set("Access-Control-Allow-Headers", "Authorization, Content-Type, If-Match")
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
case 1:
|
|
require.Equal(t, http.MethodPost, r.Method)
|
|
require.Equal(t, "/my/resource", r.URL.Path)
|
|
require.Equal(t, "application/sdp", r.Header.Get("Content-Type"))
|
|
|
|
body, err2 := io.ReadAll(r.Body)
|
|
require.NoError(t, err2)
|
|
offer := whipOffer(body)
|
|
|
|
answer, err2 := pc.CreateFullAnswer(context.Background(), offer)
|
|
require.NoError(t, err2)
|
|
|
|
w.Header().Set("Content-Type", "application/sdp")
|
|
w.Header().Set("Accept-Patch", "application/trickle-ice-sdpfrag")
|
|
w.Header().Set("ETag", "test_etag")
|
|
w.Header().Set("Location", "/my/resource/sessionid")
|
|
w.WriteHeader(http.StatusCreated)
|
|
w.Write([]byte(answer.SDP))
|
|
|
|
go func() {
|
|
err3 := pc.WaitUntilConnected(context.Background())
|
|
require.NoError(t, err3)
|
|
|
|
err3 = outgoingTracks[0].WriteRTP(&rtp.Packet{
|
|
Header: rtp.Header{
|
|
Version: 2,
|
|
Marker: true,
|
|
PayloadType: 111,
|
|
SequenceNumber: 1123,
|
|
Timestamp: 45343,
|
|
SSRC: 563424,
|
|
},
|
|
Payload: []byte{5, 2},
|
|
})
|
|
require.NoError(t, err3)
|
|
}()
|
|
|
|
default:
|
|
require.Equal(t, "/my/resource/sessionid", r.URL.Path)
|
|
|
|
switch r.Method {
|
|
case http.MethodPatch:
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
case http.MethodDelete:
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
default:
|
|
t.Errorf("should not happen")
|
|
}
|
|
}
|
|
state++
|
|
}),
|
|
}
|
|
|
|
ln, err := net.Listen("tcp", "localhost:9003")
|
|
require.NoError(t, err)
|
|
|
|
go httpServ.Serve(ln)
|
|
defer httpServ.Shutdown(context.Background())
|
|
|
|
p := &test.StaticSourceParent{}
|
|
p.Initialize()
|
|
defer p.Close()
|
|
|
|
so := &Source{
|
|
ReadTimeout: conf.Duration(10 * time.Second),
|
|
Parent: p,
|
|
}
|
|
|
|
done := make(chan struct{})
|
|
defer func() { <-done }()
|
|
|
|
ctx, ctxCancel := context.WithCancel(context.Background())
|
|
defer ctxCancel()
|
|
|
|
go func() {
|
|
so.Run(defs.StaticSourceRunParams{ //nolint:errcheck
|
|
Context: ctx,
|
|
ResolvedSource: "whep://localhost:9003/my/resource",
|
|
Conf: &conf.Path{},
|
|
})
|
|
close(done)
|
|
}()
|
|
|
|
<-p.Unit
|
|
}
|