diff --git a/pkg/config/uploads.go b/pkg/config/uploads.go index 84b16dcd..257c70e3 100644 --- a/pkg/config/uploads.go +++ b/pkg/config/uploads.go @@ -18,6 +18,7 @@ import ( "time" "github.com/aws/aws-sdk-go/aws" + "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/utils" ) @@ -42,20 +43,21 @@ type EgressS3Upload struct { func (p *PipelineConfig) getUploadConfig(req uploadRequest) UploadConfig { if s3 := req.GetS3(); s3 != nil { - s3StorageConfigFromReq := &EgressS3Upload{ + s3Conf := &EgressS3Upload{ S3Upload: s3, } // merge in options from config (proxy, retry limit, delay and aws logging) if specified if p.S3 != nil { // parse config.yaml options and get defaults - S3StorageConfigFromConfigYaml := p.ToUploadConfig().(*EgressS3Upload) - // merge into pipeline config created from request options - s3StorageConfigFromReq.Proxy = S3StorageConfigFromConfigYaml.Proxy - s3StorageConfigFromReq.MaxRetries = S3StorageConfigFromConfigYaml.MaxRetries - s3StorageConfigFromReq.MaxRetryDelay = S3StorageConfigFromConfigYaml.MaxRetryDelay - s3StorageConfigFromReq.AwsLogLevel = S3StorageConfigFromConfigYaml.AwsLogLevel + if s3Base, ok := p.ToUploadConfig().(*EgressS3Upload); ok { + // merge into pipeline config created from request options + s3Conf.Proxy = s3Base.Proxy + s3Conf.MaxRetries = s3Base.MaxRetries + s3Conf.MaxRetryDelay = s3Base.MaxRetryDelay + s3Conf.AwsLogLevel = s3Base.AwsLogLevel + } } - return s3StorageConfigFromReq + return s3Conf } if gcp := req.GetGcp(); gcp != nil { return gcp @@ -72,7 +74,7 @@ func (p *PipelineConfig) getUploadConfig(req uploadRequest) UploadConfig { func (c StorageConfig) ToUploadConfig() UploadConfig { if c.S3 != nil { - s3StorageConfig := &EgressS3Upload{ + s3 := &EgressS3Upload{ S3Upload: &livekit.S3Upload{ AccessKey: c.S3.AccessKey, Secret: c.S3.Secret, @@ -81,41 +83,38 @@ func (c StorageConfig) ToUploadConfig() UploadConfig { Bucket: c.S3.Bucket, ForcePathStyle: c.S3.ForcePathStyle, }, - Proxy: c.S3.Proxy, + Proxy: c.S3.Proxy, + MaxRetries: 3, + MaxRetryDelay: time.Second * 5, + MinRetryDelay: time.Millisecond * 100, } - // Handle max retries with default if c.S3.MaxRetries > 0 { - s3StorageConfig.MaxRetries = c.S3.MaxRetries - } else { - s3StorageConfig.MaxRetries = 3 + s3.MaxRetries = c.S3.MaxRetries } - // Handle min/max delay (for backoff) with defaults if c.S3.MaxRetryDelay > 0 { - s3StorageConfig.MaxRetryDelay = c.S3.MaxRetryDelay - } else { - s3StorageConfig.MaxRetryDelay = time.Second * 5 + s3.MaxRetryDelay = c.S3.MaxRetryDelay } if c.S3.MinRetryDelay > 0 { - s3StorageConfig.MinRetryDelay = c.S3.MinRetryDelay - } else { - s3StorageConfig.MinRetryDelay = time.Millisecond * 100 + s3.MinRetryDelay = c.S3.MinRetryDelay } - // Handle AWS log level with default + + // Handle AWS log level switch c.S3.AwsLogLevel { case "LogDebugWithRequestRetries": - s3StorageConfig.AwsLogLevel = aws.LogDebugWithRequestRetries + s3.AwsLogLevel = aws.LogDebugWithRequestRetries case "LogDebug": - s3StorageConfig.AwsLogLevel = aws.LogDebug + s3.AwsLogLevel = aws.LogDebug case "LogDebugWithRequestErrors": - s3StorageConfig.AwsLogLevel = aws.LogDebugWithRequestErrors + s3.AwsLogLevel = aws.LogDebugWithRequestErrors case "LogDebugWithHTTPBody": - s3StorageConfig.AwsLogLevel = aws.LogDebugWithHTTPBody + s3.AwsLogLevel = aws.LogDebugWithHTTPBody case "LogDebugWithSigning": - s3StorageConfig.AwsLogLevel = aws.LogDebugWithSigning + s3.AwsLogLevel = aws.LogDebugWithSigning default: - s3StorageConfig.AwsLogLevel = aws.LogOff + s3.AwsLogLevel = aws.LogOff } - return s3StorageConfig + + return s3 } if c.Azure != nil { return &livekit.AzureBlobUpload{ diff --git a/pkg/pipeline/debug.go b/pkg/pipeline/debug.go index 641380c7..ec24b420 100644 --- a/pkg/pipeline/debug.go +++ b/pkg/pipeline/debug.go @@ -23,12 +23,11 @@ import ( "sync" "time" - "github.com/livekit/egress/pkg/stats" - "github.com/go-gst/go-gst/gst" "github.com/livekit/egress/pkg/errors" "github.com/livekit/egress/pkg/pipeline/sink/uploader" + "github.com/livekit/egress/pkg/stats" "github.com/livekit/egress/pkg/types" "github.com/livekit/protocol/logger" "github.com/livekit/protocol/pprof" @@ -39,7 +38,7 @@ func (c *Controller) GetGstPipelineDebugDot() string { } func (c *Controller) uploadDebugFiles() { - monitor := *stats.NewHandlerMonitor(c.NodeID, c.ClusterID, c.Info.EgressId) + monitor := stats.NewHandlerMonitor(c.NodeID, c.ClusterID, c.Info.EgressId) u, err := uploader.New(c.Debug.ToUploadConfig(), "", monitor) if err != nil { logger.Errorw("failed to create uploader", err) diff --git a/pkg/pipeline/sink/segments.go b/pkg/pipeline/sink/segments.go index f504b858..2ad0ec07 100644 --- a/pkg/pipeline/sink/segments.go +++ b/pkg/pipeline/sink/segments.go @@ -22,8 +22,6 @@ import ( "sync" "time" - "github.com/livekit/egress/pkg/stats" - "github.com/frostbyte73/core" "github.com/livekit/egress/pkg/config" @@ -31,6 +29,7 @@ import ( "github.com/livekit/egress/pkg/gstreamer" "github.com/livekit/egress/pkg/pipeline/sink/m3u8" "github.com/livekit/egress/pkg/pipeline/sink/uploader" + "github.com/livekit/egress/pkg/stats" "github.com/livekit/egress/pkg/types" "github.com/livekit/protocol/logger" ) @@ -72,7 +71,7 @@ type SegmentUpdate struct { uploadComplete chan struct{} } -func newSegmentSink(u uploader.Uploader, p *config.PipelineConfig, o *config.SegmentConfig, callbacks *gstreamer.Callbacks, monitor stats.HandlerMonitor) (*SegmentSink, error) { +func newSegmentSink(u uploader.Uploader, p *config.PipelineConfig, o *config.SegmentConfig, callbacks *gstreamer.Callbacks, monitor *stats.HandlerMonitor) (*SegmentSink, error) { playlistName := path.Join(o.LocalDir, o.PlaylistFilename) playlist, err := m3u8.NewEventPlaylistWriter(playlistName, o.SegmentDuration) if err != nil { diff --git a/pkg/pipeline/sink/sink.go b/pkg/pipeline/sink/sink.go index edf5805b..7ac6b5ca 100644 --- a/pkg/pipeline/sink/sink.go +++ b/pkg/pipeline/sink/sink.go @@ -30,13 +30,14 @@ type Sink interface { func CreateSinks(p *config.PipelineConfig, callbacks *gstreamer.Callbacks) (map[types.EgressType][]Sink, error) { sinks := make(map[types.EgressType][]Sink) + monitor := stats.NewHandlerMonitor(p.NodeID, p.ClusterID, p.Info.EgressId) for egressType, c := range p.Outputs { if len(c) == 0 { continue } + var s Sink var err error - monitor := *stats.NewHandlerMonitor(p.NodeID, p.ClusterID, p.Info.EgressId) switch egressType { case types.EgressTypeFile: o := c[0].(*config.FileConfig) diff --git a/pkg/pipeline/sink/uploader/s3.go b/pkg/pipeline/sink/uploader/s3.go index 23bfc3d2..01b97572 100644 --- a/pkg/pipeline/sink/uploader/s3.go +++ b/pkg/pipeline/sink/uploader/s3.go @@ -27,8 +27,8 @@ import ( "github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/service/s3" "github.com/aws/aws-sdk-go/service/s3/s3manager" - "github.com/livekit/egress/pkg/config" + "github.com/livekit/egress/pkg/config" "github.com/livekit/egress/pkg/types" "github.com/livekit/protocol/logger" "github.com/livekit/psrpc" @@ -74,7 +74,8 @@ func newS3Uploader(conf *config.EgressS3Upload) (uploader, error) { S3ForcePathStyle: aws.Bool(conf.ForcePathStyle), LogLevel: aws.LogLevel(conf.AwsLogLevel), } - logger.Debugw("setting AWS config", "maxRetries", conf.MaxRetries, + logger.Debugw("setting S3 config", + "maxRetries", conf.MaxRetries, "maxDelay", conf.MaxRetryDelay, "minDelay", conf.MinRetryDelay, ) @@ -115,8 +116,6 @@ func newS3Uploader(conf *config.EgressS3Upload) (uploader, error) { } u.awsConfig.HTTPClient = &http.Client{Transport: proxyTransport} } - } else { - logger.Debugw("not configuring s3 with proxy since none was provided in config") } if len(conf.Metadata) > 0 { diff --git a/pkg/pipeline/sink/uploader/uploader.go b/pkg/pipeline/sink/uploader/uploader.go index 987617e7..cb5cde09 100644 --- a/pkg/pipeline/sink/uploader/uploader.go +++ b/pkg/pipeline/sink/uploader/uploader.go @@ -20,11 +20,10 @@ import ( "path" "time" - "github.com/livekit/egress/pkg/stats" - "github.com/pkg/errors" "github.com/livekit/egress/pkg/config" + "github.com/livekit/egress/pkg/stats" "github.com/livekit/egress/pkg/types" "github.com/livekit/protocol/livekit" ) @@ -43,13 +42,15 @@ type uploader interface { upload(string, string, types.OutputType) (string, int64, error) } -func New(conf config.UploadConfig, backup string, monitor stats.HandlerMonitor) (Uploader, error) { +func New(conf config.UploadConfig, backup string, monitor *stats.HandlerMonitor) (Uploader, error) { var u uploader var err error switch c := conf.(type) { case *config.EgressS3Upload: u, err = newS3Uploader(c) + case *livekit.S3Upload: + u, err = newS3Uploader(&config.EgressS3Upload{S3Upload: c}) case *livekit.GCPUpload: u, err = newGCPUploader(c) case *livekit.AzureBlobUpload: @@ -63,26 +64,28 @@ func New(conf config.UploadConfig, backup string, monitor stats.HandlerMonitor) return nil, err } - remoteUploader := &remoteUploader{ + remote := &remoteUploader{ uploader: u, backup: backup, monitor: monitor, } - return remoteUploader, nil + return remote, nil } type remoteUploader struct { uploader backup string - monitor stats.HandlerMonitor + monitor *stats.HandlerMonitor } func (u *remoteUploader) Upload(localFilepath, storageFilepath string, outputType types.OutputType, deleteAfterUpload bool, fileType string) (string, int64, error) { start := time.Now() location, size, err := u.upload(localFilepath, storageFilepath, outputType) elapsed := time.Since(start).Milliseconds() + + // success if err == nil { u.monitor.IncUploadCountSuccess(fileType, float64(elapsed)) if deleteAfterUpload { @@ -91,8 +94,9 @@ func (u *remoteUploader) Upload(localFilepath, storageFilepath string, outputTyp return location, size, nil } - u.monitor.IncUploadCountFailure(fileType, float64(elapsed)) + // failure + u.monitor.IncUploadCountFailure(fileType, float64(elapsed)) if u.backup != "" { stat, err := os.Stat(localFilepath) if err != nil { diff --git a/pkg/service/handler.go b/pkg/service/handler.go index 6f427079..9a945484 100644 --- a/pkg/service/handler.go +++ b/pkg/service/handler.go @@ -20,10 +20,10 @@ import ( "strings" "time" + "github.com/frostbyte73/core" + "github.com/prometheus/client_golang/prometheus" dto "github.com/prometheus/client_model/go" "github.com/prometheus/common/expfmt" - - "github.com/frostbyte73/core" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -38,8 +38,6 @@ import ( "github.com/livekit/protocol/rpc" "github.com/livekit/protocol/tracer" "github.com/livekit/psrpc" - - "github.com/prometheus/client_golang/prometheus" ) const network = "unix" diff --git a/pkg/service/process.go b/pkg/service/process.go index 38c6a03f..5ad941a3 100644 --- a/pkg/service/process.go +++ b/pkg/service/process.go @@ -16,8 +16,6 @@ package service import ( "context" - "github.com/prometheus/common/expfmt" - "golang.org/x/exp/maps" "net" "os" "os/exec" @@ -27,6 +25,9 @@ import ( "time" "github.com/frostbyte73/core" + dto "github.com/prometheus/client_model/go" + "github.com/prometheus/common/expfmt" + "golang.org/x/exp/maps" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" "google.golang.org/protobuf/encoding/protojson" @@ -40,8 +41,6 @@ import ( "github.com/livekit/protocol/rpc" "github.com/livekit/protocol/tracer" "github.com/livekit/protocol/utils" - - dto "github.com/prometheus/client_model/go" ) type Process struct { diff --git a/pkg/service/service.go b/pkg/service/service.go index 60d8ee39..799d938c 100644 --- a/pkg/service/service.go +++ b/pkg/service/service.go @@ -23,11 +23,10 @@ import ( "sync" "time" - "github.com/prometheus/client_golang/prometheus" - dto "github.com/prometheus/client_model/go" - "github.com/frostbyte73/core" + "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" + dto "github.com/prometheus/client_model/go" "github.com/livekit/egress/pkg/config" "github.com/livekit/egress/pkg/stats" diff --git a/pkg/stats/handler_monitor.go b/pkg/stats/handler.go similarity index 85% rename from pkg/stats/handler_monitor.go rename to pkg/stats/handler.go index b6e8fe93..04e3a218 100644 --- a/pkg/stats/handler_monitor.go +++ b/pkg/stats/handler.go @@ -1,3 +1,17 @@ +// 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 stats import ( diff --git a/test/download.go b/test/download.go index b5acf2ba..6ed01b43 100644 --- a/test/download.go +++ b/test/download.go @@ -35,25 +35,28 @@ import ( "github.com/stretchr/testify/require" "google.golang.org/api/option" + "github.com/livekit/egress/pkg/config" "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/logger" ) func download(t *testing.T, uploadParams interface{}, localFilepath, storageFilepath string) { - logger.Debugw("download", "localFilepath", localFilepath, "storageFilepath", storageFilepath) switch u := uploadParams.(type) { - case *livekit.S3Upload: + case *config.EgressS3Upload: + logger.Debugw("s3 download", "localFilepath", localFilepath, "storageFilepath", storageFilepath) downloadS3(t, u, localFilepath, storageFilepath) case *livekit.GCPUpload: + logger.Debugw("gcp download", "localFilepath", localFilepath, "storageFilepath", storageFilepath) downloadGCP(t, u, localFilepath, storageFilepath) case *livekit.AzureBlobUpload: + logger.Debugw("azure download", "localFilepath", localFilepath, "storageFilepath", storageFilepath) downloadAzure(t, u, localFilepath, storageFilepath) } } -func downloadS3(t *testing.T, conf *livekit.S3Upload, localFilepath, storageFilepath string) { +func downloadS3(t *testing.T, conf *config.EgressS3Upload, localFilepath, storageFilepath string) { sess, err := session.NewSession(&aws.Config{ Credentials: credentials.NewStaticCredentials(conf.AccessKey, conf.Secret, ""), Endpoint: aws.String(conf.Endpoint), diff --git a/test/integration.go b/test/integration.go index 8bf2016a..7b8856f9 100644 --- a/test/integration.go +++ b/test/integration.go @@ -76,7 +76,7 @@ type testCase struct { // used by segmented file tests playlist string - live_playlist string + livePlaylist string filenameSuffix livekit.SegmentedFileSuffix // used by images tests diff --git a/test/participant.go b/test/participant.go index f1e56497..b879f399 100644 --- a/test/participant.go +++ b/test/participant.go @@ -61,7 +61,7 @@ func (r *Runner) testParticipantFile(t *testing.T) { return } - t.Run("Participant/File", func(t *testing.T) { + t.Run("3A/Participant/File", func(t *testing.T) { for _, test := range []*testCase{ { name: "VP8", @@ -142,7 +142,7 @@ func (r *Runner) testParticipantStream(t *testing.T) { videoCodec: types.MimeTypeVP8, } - r.runParticipantTest(t, "Participant/Stream", test, + r.runParticipantTest(t, "3B/Participant/Stream", test, func(t *testing.T, identity string) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), @@ -167,7 +167,7 @@ func (r *Runner) testParticipantSegments(t *testing.T) { return } - t.Run("Participant/Segments", func(t *testing.T) { + t.Run("3C/Participant/Segments", func(t *testing.T) { for _, test := range []*testCase{ { name: "VP8", @@ -240,10 +240,10 @@ func (r *Runner) testParticipantMulti(t *testing.T) { audioCodec: types.MimeTypeOpus, audioUnpublish: time.Second * 20, videoCodec: types.MimeTypeVP8, - videoDelay: time.Second * 10, + videoDelay: time.Second * 5, } - r.runParticipantTest(t, "Participant/Multi", test, + r.runParticipantTest(t, "3D/Participant/Multi", test, func(t *testing.T, identity string) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), diff --git a/test/room_composite.go b/test/room_composite.go index 30f665eb..ba483975 100644 --- a/test/room_composite.go +++ b/test/room_composite.go @@ -55,7 +55,7 @@ func (r *Runner) testRoomCompositeFile(t *testing.T) { return } - t.Run("RoomComposite/File", func(t *testing.T) { + t.Run("1A/RoomComposite/File", func(t *testing.T) { for _, test := range []*testCase{ { name: "Base", @@ -132,7 +132,7 @@ func (r *Runner) testRoomCompositeStream(t *testing.T) { return } - t.Run("RoomComposite/Stream", func(t *testing.T) { + t.Run("1B/RoomComposite/Stream", func(t *testing.T) { r.runRoomTest(t, "Rtmp", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), @@ -193,7 +193,7 @@ func (r *Runner) testRoomCompositeSegments(t *testing.T) { return } - r.runRoomTest(t, "RoomComposite/Segments", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T) { + r.runRoomTest(t, "1C/RoomComposite/Segments", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T) { for _, test := range []*testCase{ { options: &livekit.EncodingOptions{ @@ -205,7 +205,7 @@ func (r *Runner) testRoomCompositeSegments(t *testing.T) { }, filename: "r_{room_name}_{time}", playlist: "r_{room_name}_{time}.m3u8", - live_playlist: "r_live_{room_name}_{time}.m3u8", + livePlaylist: "r_live_{room_name}_{time}.m3u8", filenameSuffix: livekit.SegmentedFileSuffix_TIMESTAMP, expectVideoEncoding: true, }, @@ -222,7 +222,7 @@ func (r *Runner) testRoomCompositeSegments(t *testing.T) { segmentOutput := &livekit.SegmentedFileOutput{ FilenamePrefix: r.getFilePath(test.filename), PlaylistName: test.playlist, - LivePlaylistName: test.live_playlist, + LivePlaylistName: test.livePlaylist, FilenameSuffix: test.filenameSuffix, } if test.filenameSuffix == livekit.SegmentedFileSuffix_INDEX && r.GCPUpload != nil { @@ -261,7 +261,7 @@ func (r *Runner) testRoomCompositeImages(t *testing.T) { return } - r.runRoomTest(t, "RoomComposite/Images", types.MimeTypeOpus, types.MimeTypeH264, func(t *testing.T) { + r.runRoomTest(t, "1D/RoomComposite/Images", types.MimeTypeOpus, types.MimeTypeH264, func(t *testing.T) { for _, test := range []*testCase{ { options: &livekit.EncodingOptions{ @@ -308,7 +308,7 @@ func (r *Runner) testRoomCompositeMulti(t *testing.T) { return } - r.runRoomTest(t, "RoomComposite/Multi", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T) { + r.runRoomTest(t, "1E/RoomComposite/Multi", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), Request: &rpc.StartEgressRequest_RoomComposite{ diff --git a/test/segments.go b/test/segments.go index 542751dc..8086d8d0 100644 --- a/test/segments.go +++ b/test/segments.go @@ -49,7 +49,7 @@ func (r *Runner) runSegmentsTest(t *testing.T, req *rpc.StartEgressRequest, test p, err := config.GetValidatedPipelineConfig(r.ServiceConfig, req) require.NoError(t, err) - r.verifySegments(t, p, test.filenameSuffix, res, test.live_playlist != "") + r.verifySegments(t, p, test.filenameSuffix, res, test.livePlaylist != "") if !test.audioOnly { require.Equal(t, test.expectVideoEncoding, p.VideoEncoding) } diff --git a/test/track.go b/test/track.go index 3f116cb7..b20f7119 100644 --- a/test/track.go +++ b/test/track.go @@ -52,7 +52,7 @@ func (r *Runner) testTrackFile(t *testing.T) { return } - t.Run("Track/File", func(t *testing.T) { + t.Run("5A/Track/File", func(t *testing.T) { for _, test := range []*testCase{ { name: "OPUS", @@ -120,7 +120,7 @@ func (r *Runner) testTrackStream(t *testing.T) { return } - t.Run("Track/Stream", func(t *testing.T) { + t.Run("5B/Track/Stream", func(t *testing.T) { now := time.Now().Unix() for _, test := range []*testCase{ { diff --git a/test/track_composite.go b/test/track_composite.go index cf0aa128..9a275bd2 100644 --- a/test/track_composite.go +++ b/test/track_composite.go @@ -54,7 +54,7 @@ func (r *Runner) testTrackCompositeFile(t *testing.T) { return } - t.Run("TrackComposite/File", func(t *testing.T) { + t.Run("4A/TrackComposite/File", func(t *testing.T) { for _, test := range []*testCase{ { name: "VP8", @@ -125,7 +125,7 @@ func (r *Runner) testTrackCompositeStream(t *testing.T) { return } - r.runTrackTest(t, "TrackComposite/Stream", types.MimeTypeOpus, types.MimeTypeVP8, + r.runTrackTest(t, "4B/TrackComposite/Stream", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T, audioTrackID, videoTrackID string) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), @@ -151,7 +151,7 @@ func (r *Runner) testTrackCompositeSegments(t *testing.T) { return } - t.Run("TrackComposite/Segments", func(t *testing.T) { + t.Run("4C/TrackComposite/Segments", func(t *testing.T) { for _, test := range []*testCase{ { name: "VP8", @@ -161,12 +161,12 @@ func (r *Runner) testTrackCompositeSegments(t *testing.T) { playlist: "tcs_{publisher_identity}_vp8_{time}.m3u8", }, { - name: "H264", - audioCodec: types.MimeTypeOpus, - videoCodec: types.MimeTypeH264, - filename: "tcs_{room_name}_h264_{time}", - playlist: "tcs_{room_name}_h264_{time}.m3u8", - live_playlist: "tcs_live_{room_name}_h264_{time}.m3u8", + name: "H264", + audioCodec: types.MimeTypeOpus, + videoCodec: types.MimeTypeH264, + filename: "tcs_{room_name}_h264_{time}", + playlist: "tcs_{room_name}_h264_{time}.m3u8", + livePlaylist: "tcs_live_{room_name}_h264_{time}.m3u8", }, { name: "Audio Only", @@ -189,7 +189,7 @@ func (r *Runner) testTrackCompositeSegments(t *testing.T) { segmentOutput := &livekit.SegmentedFileOutput{ FilenamePrefix: r.getFilePath(test.filename), PlaylistName: test.playlist, - LivePlaylistName: test.live_playlist, + LivePlaylistName: test.livePlaylist, FilenameSuffix: test.filenameSuffix, } if test.filenameSuffix == livekit.SegmentedFileSuffix_INDEX && r.S3Upload != nil { @@ -234,7 +234,7 @@ func (r *Runner) testTrackCompositeImages(t *testing.T) { return } - t.Run("TrackComposite/Images", func(t *testing.T) { + t.Run("4D/TrackComposite/Images", func(t *testing.T) { for _, test := range []*testCase{ { name: "VP8", @@ -295,7 +295,7 @@ func (r *Runner) testTrackCompositeMulti(t *testing.T) { return } - r.runTrackTest(t, "TrackComposite/Multi", types.MimeTypeOpus, types.MimeTypeVP8, + r.runTrackTest(t, "4E/TrackComposite/Multi", types.MimeTypeOpus, types.MimeTypeVP8, func(t *testing.T, audioTrackID, videoTrackID string) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), diff --git a/test/web.go b/test/web.go index 0d31669b..73f564ad 100644 --- a/test/web.go +++ b/test/web.go @@ -48,7 +48,7 @@ func (r *Runner) testWebFile(t *testing.T) { return } - r.runWebTest(t, "Web/File", func(t *testing.T) { + r.runWebTest(t, "2A/Web/File", func(t *testing.T) { fileOutput := &livekit.EncodedFileOutput{ Filepath: r.getFilePath("web_{time}"), } @@ -81,7 +81,7 @@ func (r *Runner) testWebStream(t *testing.T) { return } - r.runWebTest(t, "Web/Stream", func(t *testing.T) { + r.runWebTest(t, "2B/Web/Stream", func(t *testing.T) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix), Request: &rpc.StartEgressRequest_Web{ @@ -106,7 +106,7 @@ func (r *Runner) testWebSegments(t *testing.T) { return } - r.runWebTest(t, "Web/Segments", func(t *testing.T) { + r.runWebTest(t, "2C/Web/Segments", func(t *testing.T) { segmentOutput := &livekit.SegmentedFileOutput{ FilenamePrefix: r.getFilePath("web_{time}"), PlaylistName: "web_{time}.m3u8", @@ -139,7 +139,7 @@ func (r *Runner) testWebMulti(t *testing.T) { return } - r.runWebTest(t, "Web/Multi", func(t *testing.T) { + r.runWebTest(t, "2D/Web/Multi", func(t *testing.T) { req := &rpc.StartEgressRequest{ EgressId: utils.NewGuid(utils.EgressPrefix),