1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
// ------------------------------------------------------------------------
// eca-test-repository.cpp: A testing subsystem implemented as a
// singleton class.
// Copyright (C) 2002,2003,2009 Kai Vehmanen
//
// Attributes:
// eca-style-version: 3 (see Ecasound Programmer's Guide)
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// ------------------------------------------------------------------------
#include "kvu_locks.h"
#include "kvu_numtostr.h"
#include "eca-logger.h"
#include "eca-test-repository.h"
using namespace std;
ECA_TEST_REPOSITORY* ECA_TEST_REPOSITORY::interface_impl_repp = 0;
pthread_mutex_t ECA_TEST_REPOSITORY::lock_rep = PTHREAD_MUTEX_INITIALIZER;
ECA_TEST_REPOSITORY& ECA_TEST_REPOSITORY::instance(void)
{
//
// Note! Below we use the Double-Checked Locking Pattern
// to protect against concurrent access
if (interface_impl_repp == 0) {
KVU_GUARD_LOCK guard(&ECA_TEST_REPOSITORY::lock_rep);
if (interface_impl_repp == 0) {
interface_impl_repp = new ECA_TEST_REPOSITORY();
}
}
return(*interface_impl_repp);
}
/**
* List of unit tests defined in libecasound.
*/
#include "audiofx_amplitude_test.h"
#include "eca-audio-time_test.h"
#include "eca-control_test.h"
#include "eca-session_test.h"
#include "eca-object-factory_test.h"
#include "eca-sample-conversion_test.h"
#include "eca-chainsetup_test.h"
#include "eca-chainsetup-parser_test.h"
#include "generic-linear-envelope_test.h"
#include "samplebuffer_test.h"
/**
* Class constructor.
*
* Registers known tests in libecasound to
* the repository.
*/
ECA_TEST_REPOSITORY::ECA_TEST_REPOSITORY(void)
{
test_cases_rep.push_back(new EFFECT_AMPLIFY_TEST());
test_cases_rep.push_back(new EFFECT_AMPLIFY_CHANNEL_TEST());
test_cases_rep.push_back(new ECA_AUDIO_TIME_TEST());
test_cases_rep.push_back(new ECA_SESSION_TEST());
test_cases_rep.push_back(new ECA_CONTROL_TEST());
test_cases_rep.push_back(new ECA_OBJECT_FACTORY_TEST());
test_cases_rep.push_back(new ECA_SAMPLE_CONVERSION_TEST());
test_cases_rep.push_back(new ECA_CHAINSETUP_TEST());
test_cases_rep.push_back(new ECA_CHAINSETUP_PARSER_TEST());
test_cases_rep.push_back(new GENERIC_LINEAR_ENVELOPE_TEST());
test_cases_rep.push_back(new SAMPLE_BUFFER_TEST());
}
/**
* Class destructor.
*/
ECA_TEST_REPOSITORY::~ECA_TEST_REPOSITORY(void)
{
}
void ECA_TEST_REPOSITORY::do_run_worker(ECA_TEST_CASE* testcase)
{
ECA_LOG_MSG(ECA_LOGGER::info, "Running test case '" + testcase->name() + "'.");
testcase->run();
if (testcase->success() != true) {
string errormsg = (string("Test case ") + testcase->name() + string(" FAILED."));
ECA_LOG_MSG(ECA_LOGGER::user_objects, errormsg);
ECA_TEST_FAILURE(errormsg);
const list<string>& failures = testcase->failures();
list<string>::const_iterator q = failures.begin();
int m = 1;
while(q != failures.end()) {
ECA_TEST_FAILURE(testcase->name() + ":" + kvu_numtostr(m++) + ". " + *q);
++q;
}
}
else {
ECA_LOG_MSG(ECA_LOGGER::user_objects, "Test case '" + testcase->name() + "' passed.");
}
}
void ECA_TEST_REPOSITORY::do_run(const std::string& name)
{
list<ECA_TEST_CASE*>::const_iterator p = test_cases_rep.begin();
while(p != test_cases_rep.end()) {
if ((*p)->name() == name) {
do_run_worker(*p);
return;
}
++p;
}
ECA_TEST_FAILURE("Test case with name '" + name + "' not found.");
}
void ECA_TEST_REPOSITORY::do_run(void)
{
list<ECA_TEST_CASE*>::const_iterator p = test_cases_rep.begin();
while(p != test_cases_rep.end()) {
do_run_worker(*p);
++p;
}
}
|