mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-08-02 17:09:28 +02:00
2021-10-06 Fred Gleason <fredg@paravelsystems.com>
* Added an 'rdwavefile_test' test harness in 'tests/'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
9fcd7aaab1
commit
95e8bff3a7
1
.gitignore
vendored
1
.gitignore
vendored
@ -137,6 +137,7 @@ tests/mcast_recv_test
|
|||||||
tests/metadata_wildcard_test
|
tests/metadata_wildcard_test
|
||||||
tests/meterstrip_test
|
tests/meterstrip_test
|
||||||
tests/notification_test
|
tests/notification_test
|
||||||
|
tests/rdwavefile_test
|
||||||
tests/rdxml_parse_test
|
tests/rdxml_parse_test
|
||||||
tests/readcd_test
|
tests/readcd_test
|
||||||
tests/reserve_carts_test
|
tests/reserve_carts_test
|
||||||
|
@ -22510,3 +22510,5 @@
|
|||||||
2021-10-06 Fred Gleason <fredg@paravelsystems.com>
|
2021-10-06 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed an arithmetic overflow bug in 'RDWaveFile' that could
|
* Fixed an arithmetic overflow bug in 'RDWaveFile' that could
|
||||||
cause the play length of MPEG-encoded to be incorrectly calculated.
|
cause the play length of MPEG-encoded to be incorrectly calculated.
|
||||||
|
2021-10-06 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Added an 'rdwavefile_test' test harness in 'tests/'.
|
||||||
|
@ -44,6 +44,7 @@ noinst_PROGRAMS = audio_convert_test\
|
|||||||
metadata_wildcard_test\
|
metadata_wildcard_test\
|
||||||
meterstrip_test\
|
meterstrip_test\
|
||||||
notification_test\
|
notification_test\
|
||||||
|
rdwavefile_test\
|
||||||
rdxml_parse_test\
|
rdxml_parse_test\
|
||||||
readcd_test\
|
readcd_test\
|
||||||
reserve_carts_test\
|
reserve_carts_test\
|
||||||
@ -116,7 +117,11 @@ mcast_recv_test_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@
|
|||||||
|
|
||||||
dist_notification_test_SOURCES = notification_test.cpp notification_test.h
|
dist_notification_test_SOURCES = notification_test.cpp notification_test.h
|
||||||
nodist_notification_test_SOURCES = moc_notification_test.cpp
|
nodist_notification_test_SOURCES = moc_notification_test.cpp
|
||||||
notification_test_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@
|
notification_test_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@
|
||||||
|
|
||||||
|
dist_rdwavefile_test_SOURCES = rdwavefile_test.cpp rdwavefile_test.h
|
||||||
|
nodist_rdwavefile_test_SOURCES = moc_rdwavefile_test.cpp
|
||||||
|
rdwavefile_test_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@
|
||||||
|
|
||||||
dist_rdxml_parse_test_SOURCES = rdxml_parse_test.cpp rdxml_parse_test.h
|
dist_rdxml_parse_test_SOURCES = rdxml_parse_test.cpp rdxml_parse_test.h
|
||||||
rdxml_parse_test_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@
|
rdxml_parse_test_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@
|
||||||
|
74
tests/rdwavefile_test.cpp
Normal file
74
tests/rdwavefile_test.cpp
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
// rdwavefile_test.cpp
|
||||||
|
//
|
||||||
|
// Test the Rivendell RDWaveFile class.
|
||||||
|
//
|
||||||
|
// (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
|
// published by the Free Software Foundation.
|
||||||
|
//
|
||||||
|
// This program 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 along with this program; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <QCoreApplication>
|
||||||
|
|
||||||
|
#include <rdcmd_switch.h>
|
||||||
|
#include <rdwavedata.h>
|
||||||
|
#include <rdwavefile.h>
|
||||||
|
|
||||||
|
#include "rdwavefile_test.h"
|
||||||
|
|
||||||
|
MainObject::MainObject(QObject *parent)
|
||||||
|
: QObject(parent)
|
||||||
|
{
|
||||||
|
QString filename;
|
||||||
|
RDWaveData *wavedata=new RDWaveData();
|
||||||
|
RDWaveFile *wavefile=NULL;
|
||||||
|
|
||||||
|
RDCmdSwitch *cmd=new RDCmdSwitch("rdwavefile_test",RDWAVEFILE_TEST_USAGE);
|
||||||
|
for(unsigned i=0;i<cmd->keys();i++) {
|
||||||
|
if(cmd->key(i)=="--filename") {
|
||||||
|
filename=cmd->value(i);
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
|
}
|
||||||
|
if(!cmd->processed(i)) {
|
||||||
|
fprintf(stderr,"rdwavefile_test: unrecognized option \"%s\"\n",
|
||||||
|
cmd->key(i).toUtf8().constData());
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(filename.isEmpty()) {
|
||||||
|
fprintf(stderr,"rdwavefile_test: you must supply --filename=<name>\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
wavefile=new RDWaveFile(filename);
|
||||||
|
if(!wavefile->openWave(wavedata)) {
|
||||||
|
fprintf(stderr,"rdwavefile_test: unable to open file\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("DONE\n");
|
||||||
|
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc,char *argv[])
|
||||||
|
{
|
||||||
|
QCoreApplication a(argc,argv);
|
||||||
|
|
||||||
|
new MainObject();
|
||||||
|
return a.exec();
|
||||||
|
}
|
36
tests/rdwavefile_test.h
Normal file
36
tests/rdwavefile_test.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// rdwavefile_test.h
|
||||||
|
//
|
||||||
|
// Test the Rivendell RDWaveFile class.
|
||||||
|
//
|
||||||
|
// (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License version 2 as
|
||||||
|
// published by the Free Software Foundation.
|
||||||
|
//
|
||||||
|
// This program 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 along with this program; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef RDWAVEFILE_TEST_H
|
||||||
|
#define RDWAVEFILE_TEST_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
#define RDWAVEFILE_TEST_USAGE "--filename=<input-file>\n\n"
|
||||||
|
|
||||||
|
class MainObject : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT;
|
||||||
|
public:
|
||||||
|
MainObject(QObject *parent=0);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif // RDWAVEFILE_TEST_H
|
Loading…
x
Reference in New Issue
Block a user