mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
93 lines
2.8 KiB
Go
93 lines
2.8 KiB
Go
// Copyright 2023 LiveKit, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package rtc
|
|
|
|
import (
|
|
"github.com/livekit/protocol/livekit"
|
|
"github.com/livekit/protocol/logger"
|
|
"github.com/livekit/protocol/utils"
|
|
|
|
"github.com/livekit/livekit-server/pkg/rtc/types"
|
|
"github.com/livekit/livekit-server/pkg/rtc/types/typesfakes"
|
|
"github.com/livekit/livekit-server/pkg/telemetry/prometheus"
|
|
)
|
|
|
|
func init() {
|
|
prometheus.Init("test", livekit.NodeType_SERVER, "test")
|
|
}
|
|
|
|
func NewMockParticipant(identity livekit.ParticipantIdentity, protocol types.ProtocolVersion, hidden bool, publisher bool) *typesfakes.FakeLocalParticipant {
|
|
p := &typesfakes.FakeLocalParticipant{}
|
|
sid := utils.NewGuid(utils.ParticipantPrefix)
|
|
p.IDReturns(livekit.ParticipantID(sid))
|
|
p.IdentityReturns(identity)
|
|
p.StateReturns(livekit.ParticipantInfo_JOINED)
|
|
p.ProtocolVersionReturns(protocol)
|
|
p.CanSubscribeReturns(true)
|
|
p.CanPublishSourceReturns(!hidden)
|
|
p.CanPublishDataReturns(!hidden)
|
|
p.HiddenReturns(hidden)
|
|
p.ToProtoReturns(&livekit.ParticipantInfo{
|
|
Sid: sid,
|
|
Identity: string(identity),
|
|
State: livekit.ParticipantInfo_JOINED,
|
|
IsPublisher: publisher,
|
|
})
|
|
p.ToProtoWithVersionReturns(&livekit.ParticipantInfo{
|
|
Sid: sid,
|
|
Identity: string(identity),
|
|
State: livekit.ParticipantInfo_JOINED,
|
|
IsPublisher: publisher,
|
|
}, utils.TimedVersion{})
|
|
|
|
p.SetMetadataCalls(func(m string) {
|
|
var f func(participant types.LocalParticipant)
|
|
if p.OnParticipantUpdateCallCount() > 0 {
|
|
f = p.OnParticipantUpdateArgsForCall(p.OnParticipantUpdateCallCount() - 1)
|
|
}
|
|
if f != nil {
|
|
f(p)
|
|
}
|
|
})
|
|
updateTrack := func() {
|
|
var f func(participant types.LocalParticipant, track types.MediaTrack)
|
|
if p.OnTrackUpdatedCallCount() > 0 {
|
|
f = p.OnTrackUpdatedArgsForCall(p.OnTrackUpdatedCallCount() - 1)
|
|
}
|
|
if f != nil {
|
|
f(p, nil)
|
|
}
|
|
}
|
|
|
|
p.SetTrackMutedCalls(func(sid livekit.TrackID, muted bool, fromServer bool) *livekit.TrackInfo {
|
|
updateTrack()
|
|
return nil
|
|
})
|
|
p.AddTrackCalls(func(req *livekit.AddTrackRequest) {
|
|
updateTrack()
|
|
})
|
|
p.GetLoggerReturns(logger.GetLogger())
|
|
|
|
return p
|
|
}
|
|
|
|
func NewMockTrack(kind livekit.TrackType, name string) *typesfakes.FakeMediaTrack {
|
|
t := &typesfakes.FakeMediaTrack{}
|
|
t.IDReturns(livekit.TrackID(utils.NewGuid(utils.TrackPrefix)))
|
|
t.KindReturns(kind)
|
|
t.NameReturns(name)
|
|
return t
|
|
}
|