Basic region naming test.
authorCarl Hetherington <carl@carlh.net>
Mon, 18 Jun 2012 15:19:05 +0000 (15:19 +0000)
committerCarl Hetherington <carl@carlh.net>
Mon, 18 Jun 2012 15:19:05 +0000 (15:19 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12751 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/test/region_naming_test.cc [new file with mode: 0644]
libs/ardour/test/region_naming_test.h [new file with mode: 0644]
libs/ardour/wscript

diff --git a/libs/ardour/test/region_naming_test.cc b/libs/ardour/test/region_naming_test.cc
new file mode 100644 (file)
index 0000000..464d322
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+    Copyright (C) 2012 Paul Davis
+
+    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 "ardour/playlist.h"
+#include "ardour/region.h"
+#include "ardour/region_factory.h"
+#include "region_naming_test.h"
+
+CPPUNIT_TEST_SUITE_REGISTRATION (RegionNamingTest);
+
+using namespace std;
+using namespace ARDOUR;
+
+void
+RegionNamingTest::basicsTest ()
+{
+       for (int i = 0; i < 64; ++i) {
+               boost::shared_ptr<Region> r = RegionFactory::create (_r[0], true);
+               stringstream s;
+               s << "ar0." << (i + 1);
+               CPPUNIT_ASSERT_EQUAL (s.str(), r->name());
+       }
+
+       _r[0]->set_name ("foo");
+
+       for (int i = 0; i < 64; ++i) {
+               boost::shared_ptr<Region> r = RegionFactory::create (_r[0], true);
+               stringstream s;
+               s << "foo." << (i + 1);
+               CPPUNIT_ASSERT_EQUAL (s.str(), r->name());
+       }
+
+       for (int i = 0; i < 64; ++i) {
+               boost::shared_ptr<Region> rA = RegionFactory::create (_r[0], true);
+               boost::shared_ptr<Region> rB = RegionFactory::create (rA, true);
+               stringstream s;
+               s << "foo." << (i * 2 + 64 + 1);
+               CPPUNIT_ASSERT_EQUAL (s.str(), rA->name());
+               stringstream t;
+               t << "foo." << (i * 2 + 64 + 2);
+               CPPUNIT_ASSERT_EQUAL (s.str(), rA->name());
+       }
+}
diff --git a/libs/ardour/test/region_naming_test.h b/libs/ardour/test/region_naming_test.h
new file mode 100644 (file)
index 0000000..6957925
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+    Copyright (C) 2012 Paul Davis
+
+    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 "audio_region_test.h"
+
+class RegionNamingTest : public AudioRegionTest
+{
+       CPPUNIT_TEST_SUITE (RegionNamingTest);
+       CPPUNIT_TEST (basicsTest);
+       CPPUNIT_TEST_SUITE_END ();
+
+public:
+       void basicsTest ();
+};
index 89efbdab49d137442a001ec651d184f3a98ab7f3..78a0ab8eb225ecb9e585bd1a33bfda615a0b319e 100644 (file)
@@ -443,6 +443,7 @@ def build(bld):
                 test/playlist_equivalent_regions_test.cc
                 test/control_surfaces_test.cc
                 test/combine_regions_test.cc
+                test/region_naming_test.cc
                 test/mtdm_test.cc
                 test/testrunner.cc
         '''.split()