2019-05-06 16:37:26 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
mpegts_test.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
mpegts_test.go contains testing for functionality found in mpegts.go.
|
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
Saxon A. Nelson-Milton <saxon@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
Copyright (C) 2019 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
in gpl.txt. If not, see http://www.gnu.org/licenses.
|
|
|
|
*/
|
|
|
|
|
2019-05-10 10:52:14 +03:00
|
|
|
package mts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"math/rand"
|
2019-06-16 22:00:52 +03:00
|
|
|
"reflect"
|
2019-06-15 21:38:41 +03:00
|
|
|
"strconv"
|
2019-05-10 10:52:14 +03:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2019-06-15 21:38:41 +03:00
|
|
|
"bitbucket.org/ausocean/av/container/mts/meta"
|
2019-05-10 10:52:14 +03:00
|
|
|
"bitbucket.org/ausocean/av/container/mts/pes"
|
|
|
|
"bitbucket.org/ausocean/av/container/mts/psi"
|
2019-05-06 19:50:07 +03:00
|
|
|
"github.com/Comcast/gots/packet"
|
2019-05-10 10:52:14 +03:00
|
|
|
)
|
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// TestGetPTSRange checks that GetPTSRange can correctly get the first and last
|
|
|
|
// PTS in an MPEGTS clip.
|
2019-05-10 10:52:14 +03:00
|
|
|
func TestGetPTSRange(t *testing.T) {
|
|
|
|
const (
|
2019-05-10 11:08:22 +03:00
|
|
|
numOfFrames = 20
|
|
|
|
maxFrameSize = 1000
|
|
|
|
minFrameSize = 100
|
|
|
|
rate = 25 // fps
|
|
|
|
interval = float64(1) / rate // s
|
|
|
|
ptsFreq = 90000 // Hz
|
2019-05-10 10:52:14 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Generate randomly sized data for each frame.
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
frames := make([][]byte, numOfFrames)
|
|
|
|
for i := range frames {
|
2019-05-10 11:08:22 +03:00
|
|
|
size := rand.Intn(maxFrameSize-minFrameSize) + minFrameSize
|
2019-05-10 10:52:14 +03:00
|
|
|
frames[i] = make([]byte, size)
|
|
|
|
}
|
|
|
|
|
|
|
|
var clip bytes.Buffer
|
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write the PSI first.
|
2019-05-10 11:17:48 +03:00
|
|
|
err := writePSI(&clip)
|
2019-05-10 11:08:22 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect error writing psi: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now write frames.
|
|
|
|
var curTime float64
|
|
|
|
for _, frame := range frames {
|
|
|
|
nextPTS := curTime * ptsFreq
|
|
|
|
|
2019-05-10 11:17:48 +03:00
|
|
|
err = writeFrame(&clip, frame, uint64(nextPTS))
|
2019-05-10 11:08:22 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect error writing frame: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
curTime += interval
|
|
|
|
}
|
|
|
|
|
2019-05-11 06:34:30 +03:00
|
|
|
got, err := GetPTSRange(clip.Bytes(), videoPid)
|
2019-05-10 11:08:22 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect error getting PTS range: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
want := [2]uint64{0, uint64((numOfFrames - 1) * interval * ptsFreq)}
|
|
|
|
if got != want {
|
|
|
|
t.Errorf("did not get expected result.\n Got: %v\n Want: %v\n", got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// writePSI is a helper function write the PSI found at the start of a clip.
|
2019-05-10 11:17:48 +03:00
|
|
|
func writePSI(b *bytes.Buffer) error {
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write PAT.
|
2019-05-10 10:52:14 +03:00
|
|
|
pat := Packet{
|
|
|
|
PUSI: true,
|
|
|
|
PID: PatPid,
|
|
|
|
CC: 0,
|
|
|
|
AFC: HasPayload,
|
|
|
|
Payload: psi.AddPadding(patTable),
|
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
_, err := b.Write(pat.Bytes(nil))
|
2019-05-10 10:52:14 +03:00
|
|
|
if err != nil {
|
2019-05-10 11:08:22 +03:00
|
|
|
return err
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write PMT.
|
2019-05-10 10:52:14 +03:00
|
|
|
pmt := Packet{
|
|
|
|
PUSI: true,
|
|
|
|
PID: PmtPid,
|
|
|
|
CC: 0,
|
|
|
|
AFC: HasPayload,
|
|
|
|
Payload: psi.AddPadding(pmtTable),
|
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
_, err = b.Write(pmt.Bytes(nil))
|
2019-05-10 10:52:14 +03:00
|
|
|
if err != nil {
|
2019-05-10 11:08:22 +03:00
|
|
|
return err
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
return nil
|
|
|
|
}
|
2019-05-10 10:52:14 +03:00
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// writeFrame is a helper function used to form a PES packet from a frame, and
|
|
|
|
// then fragment this across MPEGTS packets where they are then written to the
|
|
|
|
// given buffer.
|
2019-05-10 11:17:48 +03:00
|
|
|
func writeFrame(b *bytes.Buffer, frame []byte, pts uint64) error {
|
2019-05-10 11:08:22 +03:00
|
|
|
// Prepare PES data.
|
|
|
|
pesPkt := pes.Packet{
|
2019-05-16 07:27:10 +03:00
|
|
|
StreamID: H264ID,
|
2019-05-10 11:08:22 +03:00
|
|
|
PDI: hasPTS,
|
|
|
|
PTS: pts,
|
|
|
|
Data: frame,
|
|
|
|
HeaderLength: 5,
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
buf := pesPkt.Bytes(nil)
|
2019-05-10 10:52:14 +03:00
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write PES data acroos MPEGTS packets.
|
|
|
|
pusi := true
|
|
|
|
for len(buf) != 0 {
|
|
|
|
pkt := Packet{
|
|
|
|
PUSI: pusi,
|
|
|
|
PID: videoPid,
|
|
|
|
RAI: pusi,
|
|
|
|
CC: 0,
|
|
|
|
AFC: hasAdaptationField | hasPayload,
|
|
|
|
PCRF: pusi,
|
|
|
|
}
|
|
|
|
n := pkt.FillPayload(buf)
|
|
|
|
buf = buf[n:]
|
2019-05-10 10:52:14 +03:00
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
pusi = false
|
|
|
|
_, err := b.Write(pkt.Bytes(nil))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
return nil
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-13 10:37:53 +03:00
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// TestBytes checks that Packet.Bytes() correctly produces a []byte
|
|
|
|
// representation of a Packet.
|
2019-05-06 16:37:26 +03:00
|
|
|
func TestBytes(t *testing.T) {
|
2019-05-07 06:47:33 +03:00
|
|
|
const payloadLen, payloadChar, stuffingChar = 120, 0x11, 0xff
|
|
|
|
const stuffingLen = PacketSize - payloadLen - 12
|
|
|
|
|
2019-05-06 16:37:26 +03:00
|
|
|
tests := []struct {
|
|
|
|
packet Packet
|
|
|
|
expectedHeader []byte
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
packet: Packet{
|
|
|
|
PUSI: true,
|
|
|
|
PID: 1,
|
|
|
|
RAI: true,
|
|
|
|
CC: 4,
|
|
|
|
AFC: HasPayload | HasAdaptationField,
|
|
|
|
PCRF: true,
|
|
|
|
PCR: 1,
|
|
|
|
},
|
|
|
|
expectedHeader: []byte{
|
|
|
|
0x47, // Sync byte.
|
|
|
|
0x40, // TEI=0, PUSI=1, TP=0, PID=00000.
|
|
|
|
0x01, // PID(Cont)=00000001.
|
|
|
|
0x34, // TSC=00, AFC=11(adaptation followed by payload), CC=0100(4).
|
2019-05-07 06:47:33 +03:00
|
|
|
byte(7 + stuffingLen), // AFL=.
|
2019-05-06 16:37:26 +03:00
|
|
|
0x50, // DI=0,RAI=1,ESPI=0,PCRF=1,OPCRF=0,SPF=0,TPDF=0, AFEF=0.
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x80, 0x00, // PCR.
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for testNum, test := range tests {
|
|
|
|
// Construct payload.
|
2019-05-07 06:47:33 +03:00
|
|
|
payload := make([]byte, 0, payloadLen)
|
|
|
|
for i := 0; i < payloadLen; i++ {
|
2019-05-06 16:37:26 +03:00
|
|
|
payload = append(payload, payloadChar)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fill the packet payload.
|
|
|
|
test.packet.FillPayload(payload)
|
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// Create expected packet data and copy in expected header.
|
2019-05-06 16:37:26 +03:00
|
|
|
expected := make([]byte, len(test.expectedHeader), PacketSize)
|
|
|
|
copy(expected, test.expectedHeader)
|
|
|
|
|
|
|
|
// Append stuffing.
|
2019-05-07 06:47:33 +03:00
|
|
|
for i := 0; i < stuffingLen; i++ {
|
2019-05-06 16:37:26 +03:00
|
|
|
expected = append(expected, stuffingChar)
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// Append payload to expected bytes.
|
2019-05-06 16:37:26 +03:00
|
|
|
expected = append(expected, payload...)
|
|
|
|
|
|
|
|
// Compare got with expected.
|
|
|
|
got := test.packet.Bytes(nil)
|
|
|
|
if !bytes.Equal(got, expected) {
|
|
|
|
t.Errorf("did not get expected result for test: %v.\n Got: %v\n Want: %v\n", testNum, got, expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-06 19:50:07 +03:00
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// TestFindPid checks that FindPid can correctly extract the first instance
|
2019-05-11 14:44:28 +03:00
|
|
|
// of a PID from an MPEG-TS stream.
|
2019-05-06 19:50:07 +03:00
|
|
|
func TestFindPid(t *testing.T) {
|
|
|
|
const targetPacketNum, numOfPackets, targetPid, stdPid = 6, 15, 1, 0
|
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// Prepare the stream of packets.
|
2019-05-06 19:50:07 +03:00
|
|
|
var stream []byte
|
|
|
|
for i := 0; i < numOfPackets; i++ {
|
2019-05-07 17:39:42 +03:00
|
|
|
pid := uint16(stdPid)
|
2019-05-06 19:50:07 +03:00
|
|
|
if i == targetPacketNum {
|
2019-05-07 17:39:42 +03:00
|
|
|
pid = targetPid
|
2019-05-06 19:50:07 +03:00
|
|
|
}
|
2019-05-07 06:47:33 +03:00
|
|
|
|
2019-05-06 19:50:07 +03:00
|
|
|
p := Packet{
|
|
|
|
PID: pid,
|
|
|
|
AFC: hasPayload | hasAdaptationField,
|
|
|
|
}
|
|
|
|
p.FillPayload([]byte{byte(i)})
|
|
|
|
stream = append(stream, p.Bytes(nil)...)
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// Try to find the targetPid in the stream.
|
2019-05-06 19:50:07 +03:00
|
|
|
p, i, err := FindPid(stream, targetPid)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error finding PID: %v\n", err)
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// Check the payload.
|
2019-05-06 19:50:07 +03:00
|
|
|
var _p packet.Packet
|
|
|
|
copy(_p[:], p)
|
|
|
|
payload, err := packet.Payload(&_p)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error getting packet payload: %v\n", err)
|
|
|
|
}
|
|
|
|
got := payload[0]
|
|
|
|
if got != targetPacketNum {
|
|
|
|
t.Errorf("payload of found packet is not correct.\nGot: %v, Want: %v\n", got, targetPacketNum)
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:47:33 +03:00
|
|
|
// Check the index.
|
2019-05-06 19:50:07 +03:00
|
|
|
_got := i / PacketSize
|
|
|
|
if _got != targetPacketNum {
|
|
|
|
t.Errorf("index of found packet is not correct.\nGot: %v, want: %v\n", _got, targetPacketNum)
|
|
|
|
}
|
|
|
|
}
|
2019-06-15 21:38:41 +03:00
|
|
|
|
|
|
|
// TestTrimToMetaRange checks that TrimToMetaRange can correctly return a segment
|
|
|
|
// of MPEG-TS corresponding to a meta interval in a slice of MPEG-TS.
|
|
|
|
func TestTrimToMetaRange(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
|
|
|
|
const (
|
|
|
|
nPSI = 10
|
|
|
|
key = "n"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
clip bytes.Buffer
|
|
|
|
)
|
|
|
|
|
|
|
|
for i := 0; i < nPSI; i++ {
|
|
|
|
Meta.Add(key, strconv.Itoa((i*2)+1))
|
|
|
|
err := writePSIWithMeta(&clip)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect to get error writing PSI, error: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
from string
|
|
|
|
to string
|
|
|
|
expect []byte
|
|
|
|
err error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
from: "3",
|
|
|
|
to: "9",
|
|
|
|
expect: clip.Bytes()[3*PacketSize : 10*PacketSize],
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: "30",
|
|
|
|
to: "8",
|
|
|
|
expect: nil,
|
|
|
|
err: errMetaLowerBound,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: "3",
|
|
|
|
to: "30",
|
|
|
|
expect: nil,
|
|
|
|
err: errMetaUpperBound,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run tests.
|
|
|
|
for i, test := range tests {
|
|
|
|
got, err := TrimToMetaRange(clip.Bytes(), key, test.from, test.to)
|
|
|
|
|
|
|
|
// First check the error.
|
|
|
|
if err != nil && err != test.err {
|
|
|
|
t.Errorf("unexpected error: %v for test: %v", err, i)
|
|
|
|
continue
|
|
|
|
} else if err != test.err {
|
|
|
|
t.Errorf("expected to get error: %v for test: %v", test.err, i)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now check data.
|
|
|
|
if test.err == nil && !bytes.Equal(test.expect, got) {
|
|
|
|
t.Errorf("did not get expected data for test: %v\n Got: %v\n, Want: %v\n", i, got, test.expect)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-16 22:00:52 +03:00
|
|
|
|
|
|
|
func TestSegmentForMeta(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
|
|
|
|
const (
|
|
|
|
nPSI = 10
|
|
|
|
key = "n"
|
|
|
|
val = "*"
|
|
|
|
)
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
metaVals [nPSI]string
|
|
|
|
expectIdxs []rng
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
metaVals: [nPSI]string{"1", "2", val, val, val, "3", val, val, "4", "4"},
|
|
|
|
expectIdxs: []rng{
|
|
|
|
scale(2, 5),
|
|
|
|
scale(6, 8),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
metaVals: [nPSI]string{"1", "2", val, val, val, "", "3", val, val, "4"},
|
|
|
|
expectIdxs: []rng{
|
|
|
|
scale(2, 5),
|
|
|
|
scale(2, 5),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
metaVals: [nPSI]string{"1", "2", val, val, val, "", "3", val, val, val},
|
|
|
|
expectIdxs: []rng{
|
|
|
|
scale(2, 5),
|
|
|
|
{((7 * 2) + 1) * PacketSize, (nPSI * 2) * PacketSize},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
metaVals: [nPSI]string{"1", "2", "3", "4", "5", "6", "7", "8", "9", "10"},
|
|
|
|
expectIdxs: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var clip bytes.Buffer
|
|
|
|
|
|
|
|
for testn, test := range tests {
|
|
|
|
clip.Reset()
|
|
|
|
for i := 0; i < nPSI; i++ {
|
|
|
|
if test.metaVals[i] != "" {
|
|
|
|
Meta.Add(key, test.metaVals[i])
|
|
|
|
} else {
|
|
|
|
Meta.Delete(key)
|
|
|
|
}
|
|
|
|
err := writePSIWithMeta(&clip)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect to get error writing PSI, error: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var want [][]byte
|
|
|
|
for _, idxs := range test.expectIdxs {
|
|
|
|
want = append(want, clip.Bytes()[idxs.start:idxs.end])
|
|
|
|
}
|
|
|
|
got, err := SegmentForMeta(clip.Bytes(), key, val)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(want, got) {
|
|
|
|
t.Errorf("did not get expected result for test %v\nGot: %v\nWant: %v\n", testn, got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type rng struct {
|
|
|
|
start int
|
|
|
|
end int
|
|
|
|
}
|
|
|
|
|
|
|
|
func scale(x, y int) rng {
|
|
|
|
return rng{
|
|
|
|
((x * 2) + 1) * PacketSize,
|
|
|
|
((y * 2) + 1) * PacketSize,
|
|
|
|
}
|
|
|
|
}
|