Adjust packetizer tests to allow non-exact output for upgraded libraries
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
DataHoarder 2022-07-21 13:59:07 +02:00
parent 0695e746a8
commit df85490222
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk
5 changed files with 10 additions and 10 deletions

View file

@ -30,7 +30,7 @@ steps:
- go test -p 1 -failfast -timeout 20m -cover -v ./...
- go test -p 1 -failfast -timeout 20m -cover -v -tags=disable_codec_libfdk_aac,disable_codec_lame,disable_codec_tta,disable_codec_libflac ./...
- go test -p 1 -failfast -timeout 20m -cover -v -tags=disable_format_aac,disable_format_alac,disable_format_mp3,disable_format_opus,disable_format_tta,disable_format_vorbis ./...
- CGO_ENABLED=0 GOOS=linux go test -p 1 -failfast -timeout 20m -cover -v ./...
- CGO_ENABLED=0 go test -p 1 -failfast -timeout 20m -cover -v ./...
---
kind: pipeline
type: docker

View file

@ -51,7 +51,7 @@ func TestPacketizeADTS(t *testing.T) {
if packetCount != 16920 && packetCount != 16917 {
t.Errorf("Wrong Packet Count %d != %d", packetCount, 16920)
}
if packetBytes != 6436973 && packetBytes != 6435831 {
t.Errorf("Wrong Packet Bytes %d != %d", packetBytes, 6436973)
if packetBytes < 6000000 {
t.Errorf("Wrong Packet Bytes %d < %d", packetBytes, 6000000)
}
}

View file

@ -1,4 +1,4 @@
//go:build !disable_format_flac && !disable_codec_libflac && cgo
//go:build !disable_format_flac
package packetizer
@ -55,8 +55,8 @@ func TestPacketizeFLAC(t *testing.T) {
if packetCount != 4231 {
t.Errorf("Wrong Packet Count %d != %d", packetCount, 4231)
}
if packetBytes != 51512604 {
t.Errorf("Wrong Packet Bytes %d != %d", packetBytes, 51512604)
if packetBytes < 50000000 {
t.Errorf("Wrong Packet Bytes %d < %d", packetBytes, 50000000)
}
if bytes.Compare(shaHasher.Sum([]byte{}), shaPacketHasher.Sum([]byte{})) != 0 {
t.Errorf("Mismatch on byte output %X != %X", shaPacketHasher.Sum([]byte{}), shaHasher.Sum([]byte{}))

View file

@ -49,7 +49,7 @@ func TestPacketizeMP3(t *testing.T) {
if packetCount != 15040 {
t.Errorf("Wrong Packet Count %d != %d", packetCount, 15040)
}
if packetBytes != 13899997 {
t.Errorf("Wrong Packet Bytes %d != %d", packetBytes, 13899997)
if packetBytes < 10000000 {
t.Errorf("Wrong Packet Bytes %d < %d", packetBytes, 10000000)
}
}

View file

@ -49,8 +49,8 @@ func TestPacketizeOgg(t *testing.T) {
if packetCount != 395 {
t.Errorf("Wrong Packet Count %d != %d", packetCount, 395)
}
if packetBytes != 5962688 {
t.Errorf("Wrong Packet Bytes %d != %d", packetBytes, 5962688)
if packetBytes < 5000000 {
t.Errorf("Wrong Packet Bytes %d < %d", packetBytes, 5000000)
}
}