From 7688cf531ab17562b0d984073891fae4d7d2f773 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 1 Dec 2013 20:28:05 +0100 Subject: Add unit tests. --- configure.in | 7 +++++ test/Makefile.am | 26 +++++++++++++++++++ test/engine.cc | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++ test/gui.cc | 45 ++++++++++++++++++++++++++++++++ test/kit/0000.wav | Bin 0 -> 46 bytes test/kit/1111.wav | Bin 0 -> 46 bytes test/kit/2222.wav | Bin 0 -> 46 bytes test/kit/ffff.wav | Bin 0 -> 46 bytes test/kit/instr1.xml | 16 ++++++++++++ test/kit/instr2.xml | 16 ++++++++++++ test/kit/kit1.xml | 23 +++++++++++++++++ test/kit/kit2.xml | 23 +++++++++++++++++ test/test.cc | 53 ++++++++++++++++++++++++++++++++++++++ 13 files changed, 282 insertions(+) create mode 100644 test/Makefile.am create mode 100644 test/engine.cc create mode 100644 test/gui.cc create mode 100644 test/kit/0000.wav create mode 100644 test/kit/1111.wav create mode 100644 test/kit/2222.wav create mode 100644 test/kit/ffff.wav create mode 100644 test/kit/instr1.xml create mode 100644 test/kit/instr2.xml create mode 100644 test/kit/kit1.xml create mode 100644 test/kit/kit2.xml create mode 100644 test/test.cc diff --git a/configure.in b/configure.in index 8ba213d..2e73f91 100644 --- a/configure.in +++ b/configure.in @@ -45,6 +45,13 @@ if test x$with_pugl == xyes; then AC_SUBST(PUGL_LIBS) fi +AC_ARG_WITH(test, [ --with-test Build unit tests]) +if test x$with_test == xyes; then + AC_MSG_WARN([*** Building unittests!]) + AM_PATH_CPPUNIT(1.9.6) + AC_OUTPUT(test/Makefile) +fi + dnl ====================== dnl Compile LV2 plugin dnl ====================== diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..77a0f96 --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,26 @@ +# Rules for the test code (use `make check` to execute) +include $(top_srcdir)/src/Makefile.am.drumgizmo + +TESTS = engine gui + +check_PROGRAMS = $(TESTS) + +engine_CXXFLAGS = -DOUTPUT=\"engine\" $(CPPUNIT_CFLAGS) \ + -I$(top_srcdir)/src -I$(top_srcdir)/include \ + -I$(top_srcdir)/hugin -DDISABLE_HUGIN + +engine_CFLAGS = -DDISABLE_HUGIN + +engine_LDFLAGS = $(CPPUNIT_LIBS) $(DRUMGIZMO_LIBS) $(PTHREAD_LIBS) + +engine_SOURCES = \ + $(DRUMGIZMO_SOURCES) \ + $(top_srcdir)/hugin/hugin.c \ + test.cc \ + engine.cc + +gui_CXXFLAGS = -DOUTPUT=\"gui\" $(CPPUNIT_CFLAGS) +gui_LDFLAGS = $(CPPUNIT_LIBS) +gui_SOURCES = \ + test.cc \ + gui.cc diff --git a/test/engine.cc b/test/engine.cc new file mode 100644 index 0000000..69d2a37 --- /dev/null +++ b/test/engine.cc @@ -0,0 +1,73 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/*************************************************************************** + * engine.cc + * + * Fri Nov 29 18:09:02 CET 2013 + * Copyright 2013 Bent Bisballe Nyeng + * deva@aasimon.org + ****************************************************************************/ + +/* + * This file is part of DrumGizmo. + * + * DrumGizmo 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. + * + * DrumGizmo 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 DrumGizmo; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ +#include + +#include +#include + +class test_engine : public CppUnit::TestFixture +{ + CPPUNIT_TEST_SUITE(test_engine); + CPPUNIT_TEST(loading); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp() {} + void tearDown() {} + + void loading() { + AudioOutputEngine *oe = NULL; + AudioInputEngine *ie = NULL; + DrumGizmo dg(oe, ie); + + // Switch kits emmidiately with giving the loader time to work: + for(int i = 0; i < 100; i++) { + dg.loadkit("kit/kit1.xml"); + dg.loadkit("kit/kit2.xml"); + } + + // Switch kits with delay with giving the loader time to work a little: + for(int i = 0; i < 100; i++) { + dg.loadkit("kit/kit1.xml"); + usleep(100); + dg.loadkit("kit/kit2.xml"); + usleep(100); + } + + // Switch kits with more delay with giving the loader time to finish + for(int i = 0; i < 100; i++) { + dg.loadkit("kit/kit1.xml"); + usleep(10000); + dg.loadkit("kit/kit2.xml"); + usleep(10000); + } + } +}; + +// Registers the fixture into the 'registry' +CPPUNIT_TEST_SUITE_REGISTRATION(test_engine); + diff --git a/test/gui.cc b/test/gui.cc new file mode 100644 index 0000000..f227747 --- /dev/null +++ b/test/gui.cc @@ -0,0 +1,45 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/*************************************************************************** + * gui.cc + * + * Fri Nov 29 18:08:57 CET 2013 + * Copyright 2013 Bent Bisballe Nyeng + * deva@aasimon.org + ****************************************************************************/ + +/* + * This file is part of DrumGizmo. + * + * DrumGizmo 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. + * + * DrumGizmo 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 DrumGizmo; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ +#include + +class test_gui : public CppUnit::TestFixture +{ + CPPUNIT_TEST_SUITE(test_gui); + CPPUNIT_TEST(test1); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp() {} + void tearDown() {} + + void test1() { + } +}; + +// Registers the fixture into the 'registry' +CPPUNIT_TEST_SUITE_REGISTRATION(test_gui); + diff --git a/test/kit/0000.wav b/test/kit/0000.wav new file mode 100644 index 0000000..76d3db2 Binary files /dev/null and b/test/kit/0000.wav differ diff --git a/test/kit/1111.wav b/test/kit/1111.wav new file mode 100644 index 0000000..ae5b743 Binary files /dev/null and b/test/kit/1111.wav differ diff --git a/test/kit/2222.wav b/test/kit/2222.wav new file mode 100644 index 0000000..aa2f6e6 Binary files /dev/null and b/test/kit/2222.wav differ diff --git a/test/kit/ffff.wav b/test/kit/ffff.wav new file mode 100644 index 0000000..76d3db2 Binary files /dev/null and b/test/kit/ffff.wav differ diff --git a/test/kit/instr1.xml b/test/kit/instr1.xml new file mode 100644 index 0000000..3257c95 --- /dev/null +++ b/test/kit/instr1.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/test/kit/instr2.xml b/test/kit/instr2.xml new file mode 100644 index 0000000..30a988a --- /dev/null +++ b/test/kit/instr2.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/test/kit/kit1.xml b/test/kit/kit1.xml new file mode 100644 index 0000000..41cede4 --- /dev/null +++ b/test/kit/kit1.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/kit/kit2.xml b/test/kit/kit2.xml new file mode 100644 index 0000000..41cede4 --- /dev/null +++ b/test/kit/kit2.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/test.cc b/test/test.cc new file mode 100644 index 0000000..88c72e6 --- /dev/null +++ b/test/test.cc @@ -0,0 +1,53 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/*************************************************************************** + * test.cc + * + * Fri Nov 29 17:45:40 CET 2013 + * Copyright 2013 Bent Bisballe Nyeng + * deva@aasimon.org + ****************************************************************************/ + +/* + * This file is part of DrumGizmo. + * + * DrumGizmo 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. + * + * DrumGizmo 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 DrumGizmo; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ +#include +#include +#include + +#include + +int main(int argc, char* argv[]) +{ + // Get the top level suite from the registry + CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); + + // Adds the test to the list of test to run + CppUnit::TextUi::TestRunner runner; + runner.addTest( suite ); + + std::ofstream myfile; + myfile.open("result_"OUTPUT".xml"); + runner.setOutputter(new CppUnit::XmlOutputter(&runner.result(), myfile)); + + // Run the tests. + bool wasSucessful = runner.run(); + + myfile.close(); + + // Return error code 1 if the one of test failed. + return wasSucessful ? 0 : 1; +} -- cgit v1.2.3