copy plugin state to all instances when instantiating.
[ardour.git] / libs / ardour / test / test_util.cc
index dfbf40d35175b902eb9d6e8fb243a3430512c92b..88c88c90752ec26d1994fa60c9d8b8229cb5db27 100644 (file)
@@ -1,9 +1,35 @@
-#include <fstream>
+/*
+    Copyright (C) 2011 Paul Davis
+    Copyright (C) 2011 Tim Mayberry
+
+    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.,
+    675 Mass Ave, Cambridge, MA 02139, USA.
+*/
 #include <sstream>
+
+#include <glibmm/fileutils.h>
+#include <glibmm/miscutils.h>
+
 #include "pbd/xml++.h"
-#include "pbd/textreceiver.h"
+#include "pbd/file_utils.h"
+
 #include "ardour/session.h"
 #include "ardour/audioengine.h"
+#include "ardour/filesystem_paths.h"
+
+#include "test_util.h"
+
 #include <cppunit/extensions/HelperMacros.h>
 
 using namespace std;
@@ -13,23 +39,23 @@ using namespace PBD;
 static void
 check_nodes (XMLNode const * p, XMLNode const * q, list<string> const & ignore_properties)
 {
-       CPPUNIT_ASSERT_EQUAL (p->is_content(), q->is_content());
+       CPPUNIT_ASSERT_EQUAL (q->is_content(), p->is_content());
        if (!p->is_content()) {
-               CPPUNIT_ASSERT_EQUAL (p->name(), q->name());
+               CPPUNIT_ASSERT_EQUAL (q->name(), p->name());
        } else {
-               CPPUNIT_ASSERT_EQUAL (p->content(), q->content());
+               CPPUNIT_ASSERT_EQUAL (q->content(), p->content());
        }
 
        XMLPropertyList const & pp = p->properties ();
        XMLPropertyList const & qp = q->properties ();
-       CPPUNIT_ASSERT_EQUAL (pp.size(), qp.size());
+       CPPUNIT_ASSERT_EQUAL (qp.size(), pp.size());
 
        XMLPropertyList::const_iterator i = pp.begin ();
        XMLPropertyList::const_iterator j = qp.begin ();
        while (i != pp.end ()) {
-               CPPUNIT_ASSERT_EQUAL ((*i)->name(), (*j)->name());
+               CPPUNIT_ASSERT_EQUAL ((*j)->name(), (*i)->name());
                if (find (ignore_properties.begin(), ignore_properties.end(), (*i)->name ()) == ignore_properties.end ()) {
-                       CPPUNIT_ASSERT_EQUAL ((*i)->value(), (*j)->value());
+                       CPPUNIT_ASSERT_EQUAL_MESSAGE ((*j)->name(), (*i)->value(), (*i)->value());
                }
                ++i;
                ++j;
@@ -38,10 +64,10 @@ check_nodes (XMLNode const * p, XMLNode const * q, list<string> const & ignore_p
        XMLNodeList const & pc = p->children ();
        XMLNodeList const & qc = q->children ();
 
-       CPPUNIT_ASSERT_EQUAL (pc.size(), qc.size());
+       CPPUNIT_ASSERT_EQUAL (qc.size(), pc.size());
        XMLNodeList::const_iterator k = pc.begin ();
        XMLNodeList::const_iterator l = qc.begin ();
-       
+
        while (k != pc.end ()) {
                check_nodes (*k, *l, ignore_properties);
                ++k;
@@ -65,46 +91,32 @@ write_ref (XMLNode* node, string ref_file)
 {
        XMLTree ref;
        ref.set_root (node);
-       return ref.write (ref_file);
+       bool rv = ref.write (ref_file);
+       ref.set_root (0);
+       return rv;
 }
 
-class TestReceiver : public Receiver 
+void
+create_and_start_dummy_backend ()
 {
-protected:
-       void receive (Transmitter::Channel chn, const char * str) {
-               const char *prefix = "";
-               
-               switch (chn) {
-               case Transmitter::Error:
-                       prefix = ": [ERROR]: ";
-                       break;
-               case Transmitter::Info:
-                       /* ignore */
-                       return;
-               case Transmitter::Warning:
-                       prefix = ": [WARNING]: ";
-                       break;
-               case Transmitter::Fatal:
-                       prefix = ": [FATAL]: ";
-                       break;
-               case Transmitter::Throw:
-                       /* this isn't supposed to happen */
-                       abort ();
-               }
-               
-               /* note: iostreams are already thread-safe: no external
-                  lock required.
-               */
-               
-               cout << prefix << str << endl;
-               
-               if (chn == Transmitter::Fatal) {
-                       exit (9);
-               }
-       }
-};
+       AudioEngine* engine = AudioEngine::create ();
+
+       CPPUNIT_ASSERT (AudioEngine::instance ());
+       CPPUNIT_ASSERT (engine);
+       CPPUNIT_ASSERT (engine->set_backend ("None (Dummy)", "Unit-Test", ""));
+
+       init_post_engine ();
 
-TestReceiver test_receiver;
+       CPPUNIT_ASSERT (engine->start () == 0);
+}
+
+void
+stop_and_destroy_backend ()
+{
+       AudioEngine::instance()->remove_session ();
+       AudioEngine::instance()->stop ();
+       AudioEngine::destroy ();
+}
 
 /** @param dir Session directory.
  *  @param state Session state file, without .ardour suffix.
@@ -112,27 +124,31 @@ TestReceiver test_receiver;
 Session *
 load_session (string dir, string state)
 {
-       SessionEvent::create_per_thread_pool ("test", 512);
-
-       test_receiver.listen_to (error);
-       test_receiver.listen_to (info);
-       test_receiver.listen_to (fatal);
-       test_receiver.listen_to (warning);
-
-       /* We can't use VSTs here as we have a stub instead of the
-          required bits in gtk2_ardour.
-       */
-       Config->set_use_lxvst (false);
-
-       AudioEngine* engine = AudioEngine::create ();
-
-       CPPUNIT_ASSERT (engine->set_default_backend ());
+       Session* session = new Session (*AudioEngine::instance(), dir, state);
+       AudioEngine::instance ()->set_session (session);
+       return session;
+}
 
-       init_post_engine ();
+PBD::Searchpath
+test_search_path ()
+{
+#ifdef PLATFORM_WINDOWS
+       if (!getenv("ARDOUR_TEST_PATH")) {
+               std::string wsp(windows_package_directory_path());
+               return Glib::build_filename (wsp, "ardour_testdata");
+       }
+#endif
+       return Glib::getenv("ARDOUR_TEST_PATH");
+}
 
-       CPPUNIT_ASSERT (engine->start () == 0);
+std::string
+new_test_output_dir (std::string prefix)
+{
+       return PBD::tmp_writable_directory (PACKAGE, prefix);
+}
 
-       Session* session = new Session (*engine, dir, state);
-       engine->set_session (session);
-       return session;
+int
+get_test_sample_rate ()
+{
+       return 44100;
 }