2019-03-08 10:15:38 +03:00
|
|
|
package revid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-03-16 08:16:33 +03:00
|
|
|
"io"
|
2019-03-08 10:15:38 +03:00
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
2019-03-08 13:13:01 +03:00
|
|
|
|
2019-03-08 10:15:38 +03:00
|
|
|
"bitbucket.org/ausocean/iot/pi/netsender"
|
|
|
|
)
|
|
|
|
|
2019-03-08 13:13:01 +03:00
|
|
|
const raspividPath = "/usr/local/bin/raspivid"
|
|
|
|
|
|
|
|
// Suppress all test logging, except for t.Errorf output.
|
2019-03-08 10:15:38 +03:00
|
|
|
var silent bool
|
|
|
|
|
2019-03-08 23:27:55 +03:00
|
|
|
// TestRaspivid tests that raspivid starts correctly.
|
|
|
|
// It is intended to be run on a Raspberry Pi.
|
2019-03-08 10:15:38 +03:00
|
|
|
func TestRaspivid(t *testing.T) {
|
2019-03-08 13:13:01 +03:00
|
|
|
if _, err := os.Stat(raspividPath); os.IsNotExist(err) {
|
|
|
|
t.Skip("Skipping TestRaspivid since no raspivid found.")
|
|
|
|
}
|
|
|
|
|
2019-03-08 10:15:38 +03:00
|
|
|
var logger testLogger
|
|
|
|
ns, err := netsender.New(&logger, nil, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("netsender.New failed with error %v", err)
|
|
|
|
}
|
2019-03-08 13:13:01 +03:00
|
|
|
|
2019-03-08 10:15:38 +03:00
|
|
|
var c Config
|
|
|
|
c.Logger = &logger
|
|
|
|
c.Input = Raspivid
|
|
|
|
c.Outputs = make([]uint8, 1)
|
|
|
|
|
|
|
|
rv, err := New(c, ns)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("revid.New failed with error %v", err)
|
|
|
|
}
|
2019-03-08 13:13:01 +03:00
|
|
|
|
2019-03-08 10:15:38 +03:00
|
|
|
err = rv.Start()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("revid.Start failed with error %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// testLogger implements a netsender.Logger.
|
2019-03-08 13:13:01 +03:00
|
|
|
type testLogger struct{}
|
2019-03-08 10:15:38 +03:00
|
|
|
|
2019-03-08 23:27:55 +03:00
|
|
|
// SetLevel normally sets the logging level, but it is a no-op in our case.
|
2019-03-08 10:15:38 +03:00
|
|
|
func (tl *testLogger) SetLevel(level int8) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log requests the Logger to write a message at the given level.
|
|
|
|
func (tl *testLogger) Log(level int8, msg string, params ...interface{}) {
|
|
|
|
logLevels := [...]string{"Debug", "Info", "Warn", "Error", "", "", "Fatal"}
|
|
|
|
if level < -1 || level > 5 {
|
|
|
|
panic("Invalid log level")
|
|
|
|
}
|
|
|
|
if !silent {
|
|
|
|
fmt.Printf("%s: %s\n", logLevels[level+1], msg)
|
|
|
|
}
|
2019-03-08 23:27:55 +03:00
|
|
|
if level == 5 {
|
2019-03-08 10:15:38 +03:00
|
|
|
buf := make([]byte, 1<<16)
|
|
|
|
size := runtime.Stack(buf, true)
|
|
|
|
fmt.Printf("%s\n", string(buf[:size]))
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2019-03-13 10:44:00 +03:00
|
|
|
|
2019-03-17 02:04:36 +03:00
|
|
|
// tstMtsEncoder emulates the mts.Encoder to the extent of the dst field.
|
|
|
|
// This will allow access to the dst to check that it has been set corrctly.
|
|
|
|
type tstMtsEncoder struct {
|
|
|
|
dst io.Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
// newTstMtsEncoder returns a pointer to a newTsMtsEncoder.
|
2019-04-03 03:59:54 +03:00
|
|
|
func newTstMtsEncoder(dst io.Writer, fps int) (io.Writer, error) {
|
|
|
|
return &tstMtsEncoder{dst: dst}, nil
|
2019-03-17 02:04:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *tstMtsEncoder) Write(d []byte) (int, error) { return 0, nil }
|
|
|
|
|
|
|
|
// tstFlvEncoder emulates the flv.Encoder to the extent of the dst field.
|
|
|
|
// This will allow access to the dst to check that it has been set corrctly.
|
|
|
|
type tstFlvEncoder struct {
|
|
|
|
dst io.Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
// newTstFlvEncoder returns a pointer to a new tstFlvEncoder.
|
|
|
|
func newTstFlvEncoder(dst io.Writer, fps int) (io.Writer, error) {
|
|
|
|
return &tstFlvEncoder{dst: dst}, nil
|
|
|
|
}
|
|
|
|
|
2019-04-03 04:01:21 +03:00
|
|
|
func (e *tstFlvEncoder) Write(d []byte) (int, error) { return len(d), nil }
|
2019-03-17 02:04:36 +03:00
|
|
|
|
2019-04-02 05:51:46 +03:00
|
|
|
// dummyMultiWriter emulates the MultiWriter provided by std lib, so that we
|
|
|
|
// can access the destinations.
|
|
|
|
type dummyMultiWriter struct {
|
|
|
|
dst []io.Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
func newDummyMultiWriter(dst ...io.Writer) io.Writer {
|
|
|
|
return &dummyMultiWriter{
|
|
|
|
dst: dst,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 04:08:37 +03:00
|
|
|
func (w *dummyMultiWriter) Write(d []byte) (int, error) { return len(d), nil }
|
2019-04-02 05:51:46 +03:00
|
|
|
|
2019-03-13 10:44:00 +03:00
|
|
|
// TestResetEncoderSenderSetup checks that revid.reset() correctly sets up the
|
|
|
|
// revid.encoder slice and the senders the encoders write to.
|
|
|
|
func TestResetEncoderSenderSetup(t *testing.T) {
|
|
|
|
// We will use these to indicate types after assertion.
|
|
|
|
const (
|
2019-03-29 08:47:11 +03:00
|
|
|
mtsSenderStr = "*revid.mtsSender"
|
|
|
|
rtpSenderStr = "*revid.rtpSender"
|
|
|
|
rtmpSenderStr = "*revid.rtmpSender"
|
|
|
|
mtsEncoderStr = "*revid.tstMtsEncoder"
|
|
|
|
flvEncoderStr = "*revid.tstFlvEncoder"
|
2019-03-13 10:44:00 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Struct that will be used to format test cases nicely below.
|
|
|
|
type encoder struct {
|
|
|
|
encoderType string
|
|
|
|
destinations []string
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
outputs []uint8
|
|
|
|
encoders []encoder
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
outputs: []uint8{Http},
|
|
|
|
encoders: []encoder{
|
|
|
|
{
|
|
|
|
encoderType: mtsEncoderStr,
|
|
|
|
destinations: []string{mtsSenderStr},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
outputs: []uint8{Rtmp},
|
|
|
|
encoders: []encoder{
|
|
|
|
{
|
|
|
|
encoderType: flvEncoderStr,
|
|
|
|
destinations: []string{rtmpSenderStr},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
outputs: []uint8{Rtp},
|
|
|
|
encoders: []encoder{
|
|
|
|
{
|
|
|
|
encoderType: mtsEncoderStr,
|
|
|
|
destinations: []string{rtpSenderStr},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
outputs: []uint8{Http, Rtmp},
|
|
|
|
encoders: []encoder{
|
|
|
|
{
|
|
|
|
encoderType: mtsEncoderStr,
|
|
|
|
destinations: []string{mtsSenderStr},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
encoderType: flvEncoderStr,
|
|
|
|
destinations: []string{rtmpSenderStr},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
outputs: []uint8{Http, Rtp, Rtmp},
|
|
|
|
encoders: []encoder{
|
|
|
|
{
|
|
|
|
encoderType: mtsEncoderStr,
|
|
|
|
destinations: []string{mtsSenderStr, rtpSenderStr},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
encoderType: flvEncoderStr,
|
|
|
|
destinations: []string{rtmpSenderStr},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
outputs: []uint8{Rtp, Rtmp},
|
|
|
|
encoders: []encoder{
|
|
|
|
{
|
|
|
|
encoderType: mtsEncoderStr,
|
|
|
|
destinations: []string{rtpSenderStr},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
encoderType: flvEncoderStr,
|
|
|
|
destinations: []string{rtmpSenderStr},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
rv, err := New(Config{Logger: &testLogger{}}, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go through our test cases.
|
|
|
|
for testNum, test := range tests {
|
|
|
|
// Create a new config and reset revid with it.
|
2019-03-17 02:04:36 +03:00
|
|
|
const dummyURL = "rtmp://dummy"
|
|
|
|
c := Config{Logger: &testLogger{}, Outputs: test.outputs, RtmpUrl: dummyURL}
|
|
|
|
err := rv.setConfig(c)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error: %v for test %v", err, testNum)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This logic is what we want to check.
|
2019-04-02 05:51:46 +03:00
|
|
|
err = rv.setupPipeline(newTstMtsEncoder, newTstFlvEncoder, newDummyMultiWriter)
|
2019-03-13 10:44:00 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error: %v for test %v", err, testNum)
|
|
|
|
}
|
|
|
|
|
|
|
|
// First check that we have the correct number of encoders.
|
|
|
|
got := len(rv.encoder)
|
|
|
|
want := len(test.encoders)
|
|
|
|
if got != want {
|
|
|
|
t.Errorf("incorrect number of encoders in revid for test: %v. \nGot: %v\nWant: %v\n", testNum, got, want)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now check the correctness of encoders and their destinations.
|
|
|
|
for _, e := range rv.encoder {
|
|
|
|
// Get e's type.
|
2019-03-29 08:47:11 +03:00
|
|
|
encoderType := fmt.Sprintf("%T", e)
|
2019-03-13 10:44:00 +03:00
|
|
|
|
|
|
|
// Check that we expect this encoder to be here.
|
|
|
|
idx := -1
|
|
|
|
for i, expect := range test.encoders {
|
|
|
|
if expect.encoderType == encoderType {
|
|
|
|
idx = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if idx == -1 {
|
2019-03-17 02:04:36 +03:00
|
|
|
t.Fatalf("encoder %v isn't expected in test %v", encoderType, testNum)
|
2019-03-13 10:44:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now check that this encoder has correct number of destinations (senders).
|
2019-03-17 02:04:36 +03:00
|
|
|
var ms io.Writer
|
|
|
|
switch encoderType {
|
|
|
|
case mtsEncoderStr:
|
|
|
|
ms = e.(*tstMtsEncoder).dst
|
|
|
|
case flvEncoderStr:
|
|
|
|
ms = e.(*tstFlvEncoder).dst
|
|
|
|
}
|
2019-03-24 12:31:25 +03:00
|
|
|
|
2019-04-02 05:51:46 +03:00
|
|
|
senders := ms.(*dummyMultiWriter).dst
|
2019-03-13 10:44:00 +03:00
|
|
|
got = len(senders)
|
|
|
|
want = len(test.encoders[idx].destinations)
|
|
|
|
if got != want {
|
|
|
|
t.Errorf("did not get expected number of senders in test %v. \nGot: %v\nWant: %v\n", testNum, got, want)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that destinations are as expected.
|
|
|
|
for _, expectDst := range test.encoders[idx].destinations {
|
|
|
|
ok := false
|
|
|
|
for _, dst := range senders {
|
|
|
|
// Get type of sender.
|
2019-03-30 02:38:27 +03:00
|
|
|
senderType := fmt.Sprintf("%T", dst)
|
2019-03-13 10:44:00 +03:00
|
|
|
|
|
|
|
// If it's one we want, indicate.
|
|
|
|
if senderType == expectDst {
|
|
|
|
ok = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-14 00:56:34 +03:00
|
|
|
// If not okay then we couldn't find expected sender.
|
2019-03-13 10:44:00 +03:00
|
|
|
if !ok {
|
|
|
|
t.Errorf("could not find expected destination %v, for test %v", expectDst, testNum)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|