add to LUA API (new Stripable API)
[ardour.git] / libs / ardour / test / automation_list_property_test.cc
index 073fcf4b098f671ee636d6a55786daf19e7ddb7a..e17ad4f151ce4a6659bcfaa6748537f030b276dd 100644 (file)
@@ -24,7 +24,6 @@
 #include "ardour/automation_list.h"
 #include "automation_list_property_test.h"
 #include "test_util.h"
-#include "test_common.h"
 
 CPPUNIT_TEST_SUITE_REGISTRATION (AutomationListPropertyTest);
 
@@ -32,6 +31,16 @@ using namespace std;
 using namespace PBD;
 using namespace ARDOUR;
 
+void
+write_automation_list_xml (XMLNode* node, std::string filename)
+{
+       // use the same output dir for all of them
+       static std::string test_output_dir = new_test_output_dir ("automation_list_property");
+       std::string output_file = Glib::build_filename (test_output_dir, filename);
+
+       CPPUNIT_ASSERT (write_ref (node, output_file));
+}
+
 void
 AutomationListPropertyTest::basicTest ()
 {
@@ -49,32 +58,38 @@ AutomationListPropertyTest::basicTest ()
 
        /* No change since we just cleared them */
        CPPUNIT_ASSERT_EQUAL (false, property.changed());
-       
-       property->add (1, 2);
-       property->add (3, 4);
+
+       property->add (1, 2, false, false);
+       property->add (3, 4, false, false);
 
        /* Now it has changed */
        CPPUNIT_ASSERT_EQUAL (true, property.changed());
 
-       std::string test_data_file1 = Glib::build_filename (test_search_path().front(), "automation_list_property_test1.ref");
+       std::string test_data_filename = "automation_list_property_test1.ref";
+       std::string test_data_file1 = Glib::build_filename (test_search_path().front(), test_data_filename);
        CPPUNIT_ASSERT (Glib::file_test (test_data_file1, Glib::FILE_TEST_EXISTS));
 
        XMLNode* foo = new XMLNode ("test");
        property.get_changes_as_xml (foo);
+       write_automation_list_xml (foo, test_data_filename);
        check_xml (foo, test_data_file1, ignore_properties);
 
-       std::string test_data_file2 = Glib::build_filename (test_search_path().front(), "automation_list_property_test2.ref");
+       test_data_filename = "automation_list_property_test2.ref";
+       std::string test_data_file2 = Glib::build_filename (test_search_path().front(), test_data_filename);
        CPPUNIT_ASSERT (Glib::file_test (test_data_file2, Glib::FILE_TEST_EXISTS));
 
        /* Do some more */
        property.clear_changes ();
        CPPUNIT_ASSERT_EQUAL (false, property.changed());
-       property->add (5, 6);
-       property->add (7, 8);
+       property->add (5, 6, false, false);
+       property->add (7, 8, false, false);
        CPPUNIT_ASSERT_EQUAL (true, property.changed());
+       delete foo;
        foo = new XMLNode ("test");
        property.get_changes_as_xml (foo);
+       write_automation_list_xml (foo, test_data_filename);
        check_xml (foo, test_data_file2, ignore_properties);
+       delete foo;
 }
 
 /** Here's a StatefulDestructible class that has a AutomationListProperty */
@@ -120,26 +135,30 @@ AutomationListPropertyTest::undoTest ()
        boost::shared_ptr<Fred> sheila (new Fred);
 
        /* Add some data */
-       sheila->_jim->add (1, 2);
-       sheila->_jim->add (3, 4);
+       sheila->_jim->add (1, 2, false, false);
+       sheila->_jim->add (3, 4, false, false);
 
        /* Do a `command' */
        sheila->clear_changes ();
-       sheila->_jim->add (5, 6);
-       sheila->_jim->add (7, 8);
+       sheila->_jim->add (5, 6, false, false);
+       sheila->_jim->add (7, 8, false, false);
        StatefulDiffCommand sdc (sheila);
 
-       std::string test_data_file3 = Glib::build_filename (test_search_path().front(), "automation_list_property_test3.ref");
+       std::string test_data_filename = "automation_list_property_test3.ref";
+       std::string test_data_file3 = Glib::build_filename (test_search_path().front(), test_data_filename);
        CPPUNIT_ASSERT (Glib::file_test (test_data_file3, Glib::FILE_TEST_EXISTS));
 
        /* Undo */
        sdc.undo ();
+       write_automation_list_xml (&sheila->get_state(), test_data_filename);
        check_xml (&sheila->get_state(), test_data_file3, ignore_properties);
 
-       std::string test_data_file4 = Glib::build_filename (test_search_path().front(), "automation_list_property_test4.ref");
+       test_data_filename = "automation_list_property_test4.ref";
+       std::string test_data_file4 = Glib::build_filename (test_search_path().front(), test_data_filename);
        CPPUNIT_ASSERT (Glib::file_test (test_data_file4, Glib::FILE_TEST_EXISTS));
 
        /* Redo */
        sdc.redo ();
+       write_automation_list_xml (&sheila->get_state(), test_data_filename);
        check_xml (&sheila->get_state(), test_data_file4, ignore_properties);
 }