123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- // The MIT License (MIT)
- //
- // # Copyright (c) 2023 Winlin
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy of
- // this software and associated documentation files (the "Software"), to deal in
- // the Software without restriction, including without limitation the rights to
- // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
- // the Software, and to permit persons to whom the Software is furnished to do so,
- // subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in all
- // copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- package blackbox
- import (
- "context"
- "fmt"
- "github.com/ossrs/go-oryx-lib/errors"
- "github.com/ossrs/go-oryx-lib/logger"
- "math/rand"
- "os"
- "path"
- "sync"
- "testing"
- "time"
- )
- func TestFast_RtmpPublish_RtmpPlay_CodecMP3_Basic(t *testing.T) {
- // This case is run in parallel.
- t.Parallel()
- // Setup the max timeout for this case.
- ctx, cancel := context.WithTimeout(logger.WithContext(context.Background()), time.Duration(*srsTimeout)*time.Millisecond)
- defer cancel()
- // Check a set of errors.
- var r0, r1, r2, r3, r4, r5, r6, r7 error
- defer func(ctx context.Context) {
- if err := filterTestError(ctx.Err(), r0, r1, r2, r3, r4, r5, r6, r7); err != nil {
- t.Errorf("Fail for err %+v", err)
- } else {
- logger.Tf(ctx, "test done with err %+v", err)
- }
- }(ctx)
- var wg sync.WaitGroup
- defer wg.Wait()
- // Start SRS server and wait for it to be ready.
- svr := NewSRSServer()
- wg.Add(1)
- go func() {
- defer wg.Done()
- r0 = svr.Run(ctx, cancel)
- }()
- // Start FFmpeg to publish stream.
- streamID := fmt.Sprintf("stream-%v-%v", os.Getpid(), rand.Int())
- streamURL := fmt.Sprintf("rtmp://localhost:%v/live/%v", svr.RTMPPort(), streamID)
- ffmpeg := NewFFmpeg(func(v *ffmpegClient) {
- v.args = []string{
- "-stream_loop", "-1", "-re", "-i", *srsPublishAvatar, "-vcodec", "copy", "-acodec", "libmp3lame", "-f", "flv", streamURL,
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r1 = ffmpeg.Run(ctx, cancel)
- }()
- // Start FFprobe to detect and verify stream.
- duration := time.Duration(*srsFFprobeDuration) * time.Millisecond
- ffprobe := NewFFprobe(func(v *ffprobeClient) {
- v.dvrFile = path.Join(svr.WorkDir(), "objs", fmt.Sprintf("srs-ffprobe-%v.flv", streamID))
- v.streamURL = fmt.Sprintf("rtmp://localhost:%v/live/%v", svr.RTMPPort(), streamID)
- v.duration, v.timeout = duration, time.Duration(*srsFFprobeTimeout)*time.Millisecond
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r2 = ffprobe.Run(ctx, cancel)
- }()
- // Fast quit for probe done.
- select {
- case <-ctx.Done():
- case <-ffprobe.ProbeDoneCtx().Done():
- defer cancel()
- str, m := ffprobe.Result()
- if len(m.Streams) != 2 {
- r3 = errors.Errorf("invalid streams=%v, %v, %v", len(m.Streams), m.String(), str)
- }
- if ts := 90; m.Format.ProbeScore < ts {
- r4 = errors.Errorf("low score=%v < %v, %v, %v", m.Format.ProbeScore, ts, m.String(), str)
- }
- if dv := m.Duration(); dv < duration {
- r5 = errors.Errorf("short duration=%v < %v, %v, %v", dv, duration, m.String(), str)
- }
- if a := m.Audio(); a == nil {
- r6 = errors.Errorf("no audio, %v, %v", m.String(), str)
- } else if a.CodecName != "mp3" {
- r7 = errors.Errorf("invalid audio codec=%v, %v, %v", a.CodecName, m.String(), str)
- }
- }
- }
- func TestFast_RtmpPublish_HttpFlvPlay_CodecMP3_Basic(t *testing.T) {
- // This case is run in parallel.
- t.Parallel()
- // Setup the max timeout for this case.
- ctx, cancel := context.WithTimeout(logger.WithContext(context.Background()), time.Duration(*srsTimeout)*time.Millisecond)
- defer cancel()
- // Check a set of errors.
- var r0, r1, r2, r3, r4, r5, r6, r7 error
- defer func(ctx context.Context) {
- if err := filterTestError(ctx.Err(), r0, r1, r2, r3, r4, r5, r6, r7); err != nil {
- t.Errorf("Fail for err %+v", err)
- } else {
- logger.Tf(ctx, "test done with err %+v", err)
- }
- }(ctx)
- var wg sync.WaitGroup
- defer wg.Wait()
- // Start SRS server and wait for it to be ready.
- svr := NewSRSServer(func(v *srsServer) {
- v.envs = []string{
- "SRS_HTTP_SERVER_ENABLED=on",
- "SRS_VHOST_HTTP_REMUX_ENABLED=on",
- // If guessing, we might got no audio because transcoding might be delay for sending audio packets.
- "SRS_VHOST_HTTP_REMUX_GUESS_HAS_AV=off",
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- r0 = svr.Run(ctx, cancel)
- }()
- // Start FFmpeg to publish stream.
- streamID := fmt.Sprintf("stream-%v-%v", os.Getpid(), rand.Int())
- streamURL := fmt.Sprintf("rtmp://localhost:%v/live/%v", svr.RTMPPort(), streamID)
- ffmpeg := NewFFmpeg(func(v *ffmpegClient) {
- v.args = []string{
- "-stream_loop", "-1", "-re", "-i", *srsPublishAvatar, "-vcodec", "copy", "-acodec", "libmp3lame", "-f", "flv", streamURL,
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r1 = ffmpeg.Run(ctx, cancel)
- }()
- // Start FFprobe to detect and verify stream.
- duration := time.Duration(*srsFFprobeDuration) * time.Millisecond
- ffprobe := NewFFprobe(func(v *ffprobeClient) {
- v.dvrFile = path.Join(svr.WorkDir(), "objs", fmt.Sprintf("srs-ffprobe-%v.flv", streamID))
- v.streamURL = fmt.Sprintf("http://localhost:%v/live/%v.flv", svr.HTTPPort(), streamID)
- v.duration, v.timeout = duration, time.Duration(*srsFFprobeTimeout)*time.Millisecond
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r2 = ffprobe.Run(ctx, cancel)
- }()
- // Fast quit for probe done.
- select {
- case <-ctx.Done():
- case <-ffprobe.ProbeDoneCtx().Done():
- defer cancel()
- str, m := ffprobe.Result()
- if len(m.Streams) != 2 {
- r3 = errors.Errorf("invalid streams=%v, %v, %v", len(m.Streams), m.String(), str)
- }
- if ts := 90; m.Format.ProbeScore < ts {
- r4 = errors.Errorf("low score=%v < %v, %v, %v", m.Format.ProbeScore, ts, m.String(), str)
- }
- if dv := m.Duration(); dv < duration {
- r5 = errors.Errorf("short duration=%v < %v, %v, %v", dv, duration, m.String(), str)
- }
- if a := m.Audio(); a == nil {
- r6 = errors.Errorf("no audio, %v, %v", m.String(), str)
- } else if a.CodecName != "mp3" {
- r7 = errors.Errorf("invalid audio codec=%v, %v, %v", a.CodecName, m.String(), str)
- }
- }
- }
- func TestFast_RtmpPublish_HttpMp3Play_CodecMP3_Basic(t *testing.T) {
- // This case is run in parallel.
- t.Parallel()
- // Setup the max timeout for this case.
- ctx, cancel := context.WithTimeout(logger.WithContext(context.Background()), time.Duration(*srsTimeout)*time.Millisecond)
- defer cancel()
- // Check a set of errors.
- var r0, r1, r2, r3, r4, r5, r6, r7 error
- defer func(ctx context.Context) {
- if err := filterTestError(ctx.Err(), r0, r1, r2, r3, r4, r5, r6, r7); err != nil {
- t.Errorf("Fail for err %+v", err)
- } else {
- logger.Tf(ctx, "test done with err %+v", err)
- }
- }(ctx)
- var wg sync.WaitGroup
- defer wg.Wait()
- // Start SRS server and wait for it to be ready.
- svr := NewSRSServer(func(v *srsServer) {
- v.envs = []string{
- "SRS_HTTP_SERVER_ENABLED=on",
- "SRS_VHOST_HTTP_REMUX_ENABLED=on",
- "SRS_VHOST_HTTP_REMUX_MOUNT=[vhost]/[app]/[stream].mp3",
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- r0 = svr.Run(ctx, cancel)
- }()
- // Start FFmpeg to publish stream.
- streamID := fmt.Sprintf("stream-%v-%v", os.Getpid(), rand.Int())
- streamURL := fmt.Sprintf("rtmp://localhost:%v/live/%v", svr.RTMPPort(), streamID)
- ffmpeg := NewFFmpeg(func(v *ffmpegClient) {
- v.args = []string{
- "-stream_loop", "-1", "-re", "-i", *srsPublishAvatar, "-vn", "-acodec", "libmp3lame", "-f", "flv", streamURL,
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r1 = ffmpeg.Run(ctx, cancel)
- }()
- // Start FFprobe to detect and verify stream.
- duration := time.Duration(*srsFFprobeDuration) * time.Millisecond
- ffprobe := NewFFprobe(func(v *ffprobeClient) {
- v.dvrFile = path.Join(svr.WorkDir(), "objs", fmt.Sprintf("srs-ffprobe-%v.mp3", streamID))
- v.streamURL = fmt.Sprintf("http://localhost:%v/live/%v.mp3", svr.HTTPPort(), streamID)
- v.duration, v.timeout = duration, time.Duration(*srsFFprobeTimeout)*time.Millisecond
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r2 = ffprobe.Run(ctx, cancel)
- }()
- // Fast quit for probe done.
- select {
- case <-ctx.Done():
- case <-ffprobe.ProbeDoneCtx().Done():
- defer cancel()
- str, m := ffprobe.Result()
- if len(m.Streams) != 1 {
- r3 = errors.Errorf("invalid streams=%v, %v, %v", len(m.Streams), m.String(), str)
- }
- // Note that HTTP-MP3 score is low, so we only check duration.
- if dv := m.Duration(); dv < duration {
- r5 = errors.Errorf("short duration=%v < %v, %v, %v", dv, duration, m.String(), str)
- }
- if a := m.Audio(); a == nil {
- r6 = errors.Errorf("no audio, %v, %v", m.String(), str)
- } else if a.CodecName != "mp3" {
- r7 = errors.Errorf("invalid audio codec=%v, %v, %v", a.CodecName, m.String(), str)
- }
- }
- }
- func TestFast_RtmpPublish_HttpTsPlay_CodecMP3_Basic(t *testing.T) {
- // This case is run in parallel.
- t.Parallel()
- // Setup the max timeout for this case.
- ctx, cancel := context.WithTimeout(logger.WithContext(context.Background()), time.Duration(*srsTimeout)*time.Millisecond)
- defer cancel()
- // Check a set of errors.
- var r0, r1, r2, r3, r4, r5, r6, r7 error
- defer func(ctx context.Context) {
- if err := filterTestError(ctx.Err(), r0, r1, r2, r3, r4, r5, r6, r7); err != nil {
- t.Errorf("Fail for err %+v", err)
- } else {
- logger.Tf(ctx, "test done with err %+v", err)
- }
- }(ctx)
- var wg sync.WaitGroup
- defer wg.Wait()
- // Start SRS server and wait for it to be ready.
- svr := NewSRSServer(func(v *srsServer) {
- v.envs = []string{
- "SRS_HTTP_SERVER_ENABLED=on",
- "SRS_VHOST_HTTP_REMUX_ENABLED=on",
- "SRS_VHOST_HTTP_REMUX_MOUNT=[vhost]/[app]/[stream].ts",
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- r0 = svr.Run(ctx, cancel)
- }()
- // Start FFmpeg to publish stream.
- streamID := fmt.Sprintf("stream-%v-%v", os.Getpid(), rand.Int())
- streamURL := fmt.Sprintf("rtmp://localhost:%v/live/%v", svr.RTMPPort(), streamID)
- ffmpeg := NewFFmpeg(func(v *ffmpegClient) {
- v.args = []string{
- "-stream_loop", "-1", "-re", "-i", *srsPublishAvatar, "-vcodec", "copy", "-acodec", "libmp3lame", "-f", "flv", streamURL,
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r1 = ffmpeg.Run(ctx, cancel)
- }()
- // Start FFprobe to detect and verify stream.
- duration := time.Duration(*srsFFprobeDuration) * time.Millisecond
- ffprobe := NewFFprobe(func(v *ffprobeClient) {
- v.dvrFile = path.Join(svr.WorkDir(), "objs", fmt.Sprintf("srs-ffprobe-%v.ts", streamID))
- v.streamURL = fmt.Sprintf("http://localhost:%v/live/%v.ts", svr.HTTPPort(), streamID)
- v.duration, v.timeout = duration, time.Duration(*srsFFprobeTimeout)*time.Millisecond
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r2 = ffprobe.Run(ctx, cancel)
- }()
- // Fast quit for probe done.
- select {
- case <-ctx.Done():
- case <-ffprobe.ProbeDoneCtx().Done():
- defer cancel()
- str, m := ffprobe.Result()
- if len(m.Streams) != 2 {
- r3 = errors.Errorf("invalid streams=%v, %v, %v", len(m.Streams), m.String(), str)
- }
- // Note that HTTP-TS score is low, so we only check duration.
- if dv := m.Duration(); dv < duration {
- r5 = errors.Errorf("short duration=%v < %v, %v, %v", dv, duration, m.String(), str)
- }
- if a := m.Audio(); a == nil {
- r6 = errors.Errorf("no audio, %v, %v", m.String(), str)
- } else if a.CodecName != "mp3" {
- r7 = errors.Errorf("invalid audio codec=%v, %v, %v", a.CodecName, m.String(), str)
- }
- }
- }
- func TestFast_RtmpPublish_HlsPlay_CodecMP3_Basic(t *testing.T) {
- // This case is run in parallel.
- t.Parallel()
- // Setup the max timeout for this case.
- ctx, cancel := context.WithTimeout(logger.WithContext(context.Background()), time.Duration(*srsTimeout)*time.Millisecond)
- defer cancel()
- // Check a set of errors.
- var r0, r1, r2, r3, r4, r5, r6 error
- defer func(ctx context.Context) {
- if err := filterTestError(ctx.Err(), r0, r1, r2, r3, r4, r5, r6); err != nil {
- t.Errorf("Fail for err %+v", err)
- } else {
- logger.Tf(ctx, "test done with err %+v", err)
- }
- }(ctx)
- var wg sync.WaitGroup
- defer wg.Wait()
- // Start SRS server and wait for it to be ready.
- svr := NewSRSServer(func(v *srsServer) {
- v.envs = []string{
- "SRS_HTTP_SERVER_ENABLED=on",
- "SRS_VHOST_HLS_ENABLED=on",
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- r0 = svr.Run(ctx, cancel)
- }()
- // Start FFmpeg to publish stream.
- streamID := fmt.Sprintf("stream-%v-%v", os.Getpid(), rand.Int())
- streamURL := fmt.Sprintf("rtmp://localhost:%v/live/%v", svr.RTMPPort(), streamID)
- ffmpeg := NewFFmpeg(func(v *ffmpegClient) {
- v.args = []string{
- "-stream_loop", "-1", "-re", "-i", *srsPublishAvatar, "-vcodec", "copy", "-acodec", "libmp3lame", "-f", "flv", streamURL,
- }
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r1 = ffmpeg.Run(ctx, cancel)
- }()
- // Start FFprobe to detect and verify stream.
- duration := time.Duration(*srsFFprobeDuration) * time.Millisecond
- ffprobe := NewFFprobe(func(v *ffprobeClient) {
- v.dvrFile = path.Join(svr.WorkDir(), "objs", fmt.Sprintf("srs-ffprobe-%v.ts", streamID))
- v.streamURL = fmt.Sprintf("http://localhost:%v/live/%v.m3u8", svr.HTTPPort(), streamID)
- v.duration, v.timeout = duration, time.Duration(*srsFFprobeTimeout)*time.Millisecond
- })
- wg.Add(1)
- go func() {
- defer wg.Done()
- <-svr.ReadyCtx().Done()
- r2 = ffprobe.Run(ctx, cancel)
- }()
- // Fast quit for probe done.
- select {
- case <-ctx.Done():
- case <-ffprobe.ProbeDoneCtx().Done():
- defer cancel()
- str, m := ffprobe.Result()
- if len(m.Streams) != 2 {
- r3 = errors.Errorf("invalid streams=%v, %v, %v", len(m.Streams), m.String(), str)
- }
- // Note that HLS score is low, so we only check duration. Note that only check half of duration, because we
- // might get only some pieces of segments.
- if dv := m.Duration(); dv < duration/2 {
- r4 = errors.Errorf("short duration=%v < %v, %v, %v", dv, duration/2, m.String(), str)
- }
- if a := m.Audio(); a == nil {
- r5 = errors.Errorf("no audio, %v, %v", m.String(), str)
- } else if a.CodecName != "mp3" {
- r6 = errors.Errorf("invalid audio codec=%v, %v, %v", a.CodecName, m.String(), str)
- }
- }
- }
|