Files
olcrtc/internal/transport/videochannel/transport_unit_test.go
zarazaex69 80cc3bafe4 chore(lint): satisfy golangci-lint after big refactor
Address 25 issues reported by golangci-lint following the structural
refactor:

- cyclop: split common.Reassembler.Push into upsert/storeChunk/deliver
  helpers (12→5). Move seichannel option-default fill into Options.
  withDefaults so New stays under the limit.
- exhaustive: enumerate ResultPartial / ResultIgnore explicitly in
  seichannel and videochannel switches over common.Result.
- gosec G115: annotate the test-fixture int→uint16/uint32 conversions
  in common_test.go with //nolint:gosec.
- lll: break up the 130+ character one-liners in transport
  unit/integration tests and the videochannel track-ID construction.
- nolintlint: drop the stale //nolint:cyclop in mobile_test.go where
  the underlying complexity already cleared the limit.
- wrapcheck: wrap errors returned from internal/framing and
  internal/runtime in their public callers (handshake, control,
  server.setupCipher, client.setupCipher) so they carry the layer name.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-16 14:38:03 +03:00

254 lines
8.8 KiB
Go

package videochannel
import (
"context"
"errors"
"hash/crc32"
"testing"
"time"
"github.com/openlibrecommunity/olcrtc/internal/engine"
enginebuiltin "github.com/openlibrecommunity/olcrtc/internal/engine/builtin"
"github.com/openlibrecommunity/olcrtc/internal/transport"
"github.com/openlibrecommunity/olcrtc/internal/transport/common"
"github.com/pion/webrtc/v4"
)
var errVideoUnitBoom = errors.New("boom")
type fakeVideoStream struct {
closeErr error
canSend bool
trackAdded bool
trackCB func(*webrtc.TrackRemote, *webrtc.RTPReceiver)
reconnect func()
should func() bool
ended func(string)
watched bool
closed bool
}
func (s *fakeVideoStream) Connect(context.Context) error { return nil }
func (s *fakeVideoStream) Close() error { s.closed = true; return s.closeErr }
func (s *fakeVideoStream) SetReconnectCallback(cb func()) { s.reconnect = cb }
func (s *fakeVideoStream) SetShouldReconnect(fn func() bool) { s.should = fn }
func (s *fakeVideoStream) SetEndedCallback(cb func(string)) { s.ended = cb }
func (s *fakeVideoStream) WatchConnection(context.Context) { s.watched = true }
func (s *fakeVideoStream) CanSend() bool { return s.canSend }
func (s *fakeVideoStream) AddTrack(webrtc.TrackLocal) error { s.trackAdded = true; return nil }
func (s *fakeVideoStream) SetTrackHandler(cb func(*webrtc.TrackRemote, *webrtc.RTPReceiver)) {
s.trackCB = cb
}
// fakeEngineSession adapts fakeVideoStream so it satisfies engine.Session and
// engine.VideoTrackCapable, the two interfaces the videochannel transport
// looks up after the carrier-layer collapse.
type fakeEngineSession struct {
stream *fakeVideoStream
noVideo bool
}
func (s *fakeEngineSession) Capabilities() engine.Capabilities {
if s.noVideo {
return engine.Capabilities{}
}
return engine.Capabilities{VideoTrack: true}
}
func (s *fakeEngineSession) Connect(ctx context.Context) error { return s.stream.Connect(ctx) }
func (s *fakeEngineSession) Send([]byte) error { return nil }
func (s *fakeEngineSession) Close() error { return s.stream.Close() }
func (s *fakeEngineSession) SetReconnectCallback(cb func(*webrtc.DataChannel)) {
s.stream.SetReconnectCallback(func() {
if cb != nil {
cb(nil)
}
})
}
func (s *fakeEngineSession) SetShouldReconnect(fn func() bool) { s.stream.SetShouldReconnect(fn) }
func (s *fakeEngineSession) SetEndedCallback(cb func(string)) { s.stream.SetEndedCallback(cb) }
func (s *fakeEngineSession) WatchConnection(ctx context.Context) {
s.stream.WatchConnection(ctx)
}
func (s *fakeEngineSession) CanSend() bool { return s.stream.CanSend() }
func (s *fakeEngineSession) GetSendQueue() chan []byte { return nil }
func (s *fakeEngineSession) GetBufferedAmount() uint64 { return 0 }
func (s *fakeEngineSession) AddVideoTrack(t webrtc.TrackLocal) error { return s.stream.AddTrack(t) }
func (s *fakeEngineSession) SetVideoTrackHandler(cb func(*webrtc.TrackRemote, *webrtc.RTPReceiver)) {
s.stream.SetTrackHandler(cb)
}
//nolint:cyclop // table-driven test naturally has many branches
func TestNewCallbacksFeaturesAndClose(t *testing.T) {
stream := &fakeVideoStream{canSend: true}
name := "videochannel-unit-new"
enginebuiltin.Register(name, func(context.Context, enginebuiltin.Config) (engine.Session, error) {
return &fakeEngineSession{stream: stream}, nil
})
trIface, err := New(context.Background(), transport.Config{
Carrier: name,
Options: Options{
Width: 320,
Height: 240,
FPS: 30,
Bitrate: "1M",
Codec: "qrcode",
TileModule: -1,
TileRS: -1,
},
})
if err != nil {
t.Fatalf("New() error = %v", err)
}
tr, ok := trIface.(*streamTransport)
if !ok {
t.Fatalf("transport type = %T, want *streamTransport", trIface)
}
if !stream.trackAdded || stream.trackCB == nil {
t.Fatal("New() did not attach track and handler")
}
tr.SetReconnectCallback(func() {})
tr.SetShouldReconnect(func() bool { return true })
tr.SetEndedCallback(func(string) {})
tr.WatchConnection(context.Background())
if stream.reconnect == nil || stream.should == nil || stream.ended == nil || !stream.watched {
t.Fatal("callbacks/watch were not forwarded")
}
if !tr.CanSend() {
t.Fatal("CanSend() = false, want true")
}
if features := tr.Features(); !features.Reliable || !features.Ordered || !features.MessageOriented || features.MaxPayloadSize == 0 { //nolint:lll // long test description
t.Fatalf("Features() = %+v", features)
}
if tr.videoQRSize != defaultFragmentSize || tr.videoTileModule != 4 || tr.videoTileRS != 20 {
t.Fatalf("defaults qr=%d tileModule=%d tileRS=%d", tr.videoQRSize, tr.videoTileModule, tr.videoTileRS)
}
if err := tr.Close(); err != nil {
t.Fatalf("Close() error = %v", err)
}
}
func TestNewErrorPaths(t *testing.T) {
enginebuiltin.Register(
"videochannel-create-fails",
func(context.Context, enginebuiltin.Config) (engine.Session, error) {
return nil, errVideoUnitBoom
},
)
_, err := New(context.Background(), transport.Config{Carrier: "videochannel-create-fails"})
if err == nil || err.Error() != "open engine session: boom" {
t.Fatalf("New() error = %v", err)
}
enginebuiltin.Register("videochannel-no-video", func(context.Context, enginebuiltin.Config) (engine.Session, error) {
return &fakeEngineSession{stream: &fakeVideoStream{}, noVideo: true}, nil
})
_, err = New(context.Background(), transport.Config{Carrier: "videochannel-no-video"})
if !errors.Is(err, ErrVideoTrackUnsupported) {
t.Fatalf("New() error = %v, want %v", err, ErrVideoTrackUnsupported)
}
}
func TestSendAckAndClosePaths(t *testing.T) {
tr := &streamTransport{
stream: &fakeVideoStream{canSend: true},
outbound: make(chan []byte, 8),
outboundAck: make(chan []byte, 8),
closeCh: make(chan struct{}),
writerDone: make(chan struct{}),
acks: common.NewAckRegistry(),
videoQRSize: 4,
}
done := make(chan error, 1)
payload := []byte("payload")
go func() { done <- tr.Send(payload) }()
select {
case frame := <-tr.outbound:
decoded, err := decodeTransportFrame(frame)
if err != nil {
t.Fatalf("decodeTransportFrame() error = %v", err)
}
tr.resolveAck(decoded.seq, crc32.ChecksumIEEE(payload))
case <-time.After(time.Second):
t.Fatal("Send() did not enqueue frame")
}
if err := <-done; err != nil {
t.Fatalf("Send() error = %v", err)
}
if err := tr.Close(); err != nil {
t.Fatalf("Close() error = %v", err)
}
if err := tr.Send([]byte("closed")); !errors.Is(err, ErrTransportClosed) {
t.Fatalf("Send(closed) error = %v, want %v", err, ErrTransportClosed)
}
}
//nolint:cyclop // table-driven test naturally has many branches
func TestOutboundPriorityRenderAndClosedEnqueue(t *testing.T) {
tr := &streamTransport{
stream: &fakeVideoStream{canSend: true},
outbound: make(chan []byte, 2),
outboundAck: make(chan []byte, 2),
closeCh: make(chan struct{}),
writerDone: make(chan struct{}),
videoW: 16,
videoH: 16,
videoQRRecovery: "highest",
videoCodec: "qrcode",
videoTileModule: 4,
videoTileRS: 20,
}
if err := tr.enqueueFrame([]byte("data"), false); err != nil {
t.Fatalf("enqueueFrame(data) error = %v", err)
}
if err := tr.enqueueFrame([]byte("ack"), true); err != nil {
t.Fatalf("enqueueFrame(ack) error = %v", err)
}
if got, ok := tr.nextOutboundFrame(); !ok || string(got) != "ack" {
t.Fatalf("first nextOutboundFrame() = %q/%v, want ack/true", got, ok)
}
if got, ok := tr.nextOutboundFrame(); !ok || string(got) != "data" {
t.Fatalf("second nextOutboundFrame() = %q/%v, want data/true", got, ok)
}
if got, ok := tr.nextOutboundFrame(); !ok || got != nil {
t.Fatalf("idle nextOutboundFrame() = %q/%v, want nil/true", got, ok)
}
idle, err := tr.renderFrame(nil)
if err != nil {
t.Fatalf("renderFrame(nil) error = %v", err)
}
if len(idle) != tr.videoW*tr.videoH {
t.Fatalf("idle frame len = %d, want %d", len(idle), tr.videoW*tr.videoH)
}
if features := tr.Features(); features.MaxPayloadSize != defaultMaxPayloadSize {
t.Fatalf("Features() = %+v", features)
}
tr.videoQRSize = defaultMaxPayloadSize
if features := tr.Features(); features.MaxPayloadSize <= defaultMaxPayloadSize {
t.Fatalf("Features(large qr) = %+v", features)
}
tr.closed.Store(true)
if err := tr.enqueueFrame([]byte("closed"), false); !errors.Is(err, ErrTransportClosed) {
t.Fatalf("enqueueFrame(closed) error = %v, want %v", err, ErrTransportClosed)
}
}
func TestNextOutboundFrameStopsWhenClosed(t *testing.T) {
tr := &streamTransport{
outbound: make(chan []byte, 1),
outboundAck: make(chan []byte, 1),
closeCh: make(chan struct{}),
}
close(tr.closeCh)
if got, ok := tr.nextOutboundFrame(); ok || got != nil {
t.Fatalf("nextOutboundFrame(closed) = %q/%v, want nil/false", got, ok)
}
}