Basic region naming test.

git-svn-id: svn://localhost/ardour2/branches/3.0@12751 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-06-18 15:19:05 +00:00
parent a8773900a8
commit 2a5bfa6dcb
3 changed files with 88 additions and 0 deletions

View file

@ -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());
}
}

View file

@ -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 ();
};

View 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()