separated troublesome helix problems into separate test cases
This commit is contained in:
parent
978f9e0998
commit
c5107f715b
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: maroy $
|
Author : $Author: maroy $
|
||||||
Version : $Revision: 1.3 $
|
Version : $Revision: 1.4 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/Attic/HelixPlayerTest.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/Attic/HelixPlayerTest.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -209,10 +209,24 @@ HelixPlayerTest :: smilTest(void)
|
||||||
TimeConversion::sleep(sleepT);
|
TimeConversion::sleep(sleepT);
|
||||||
}
|
}
|
||||||
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*------------------------------------------------------------------------------
|
||||||
|
* Test different SMIL file features
|
||||||
|
*----------------------------------------------------------------------------*/
|
||||||
|
void
|
||||||
|
HelixPlayerTest :: smilParallelTest(void)
|
||||||
|
throw (CPPUNIT_NS::Exception)
|
||||||
|
{
|
||||||
|
Ptr<time_duration>::Ref sleepT(new time_duration(microseconds(10)));
|
||||||
|
|
||||||
|
helixPlayer->initialize();
|
||||||
|
|
||||||
/* TODO: there is a bug with playing parallel, as it doesn't end
|
/* TODO: there is a bug with playing parallel, as it doesn't end
|
||||||
for some reason.
|
for some reason.
|
||||||
see https://bugs.helixcommunity.org/show_bug.cgi?id=3311
|
see https://bugs.helixcommunity.org/show_bug.cgi?id=3311
|
||||||
|
*/
|
||||||
helixPlayer->playThis("file:var/parallel.smil");
|
helixPlayer->playThis("file:var/parallel.smil");
|
||||||
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
||||||
helixPlayer->start();
|
helixPlayer->start();
|
||||||
|
@ -221,10 +235,23 @@ HelixPlayerTest :: smilTest(void)
|
||||||
TimeConversion::sleep(sleepT);
|
TimeConversion::sleep(sleepT);
|
||||||
}
|
}
|
||||||
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
||||||
*/
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*------------------------------------------------------------------------------
|
||||||
|
* Test different SMIL file features
|
||||||
|
*----------------------------------------------------------------------------*/
|
||||||
|
void
|
||||||
|
HelixPlayerTest :: smilSoundAnimationTest(void)
|
||||||
|
throw (CPPUNIT_NS::Exception)
|
||||||
|
{
|
||||||
|
Ptr<time_duration>::Ref sleepT(new time_duration(microseconds(10)));
|
||||||
|
|
||||||
|
helixPlayer->initialize();
|
||||||
|
|
||||||
/* TODO: there is a bug with sound level animation, it causes a segfault
|
/* TODO: there is a bug with sound level animation, it causes a segfault
|
||||||
see https://bugs.helixcommunity.org/show_bug.cgi?id=3310
|
see https://bugs.helixcommunity.org/show_bug.cgi?id=3310
|
||||||
|
*/
|
||||||
helixPlayer->playThis("file:var/animateSound.smil");
|
helixPlayer->playThis("file:var/animateSound.smil");
|
||||||
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
||||||
helixPlayer->start();
|
helixPlayer->start();
|
||||||
|
@ -235,7 +262,6 @@ HelixPlayerTest :: smilTest(void)
|
||||||
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
CPPUNIT_ASSERT(!helixPlayer->isPlaying());
|
||||||
|
|
||||||
helixPlayer->deInitialize();
|
helixPlayer->deInitialize();
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: maroy $
|
Author : $Author: maroy $
|
||||||
Version : $Revision: 1.3 $
|
Version : $Revision: 1.4 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/Attic/HelixPlayerTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/Attic/HelixPlayerTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -58,7 +58,7 @@ namespace PlaylistExecutor {
|
||||||
* Unit test for the HelixPlayer class.
|
* Unit test for the HelixPlayer class.
|
||||||
*
|
*
|
||||||
* @author $Author: maroy $
|
* @author $Author: maroy $
|
||||||
* @version $Revision: 1.3 $
|
* @version $Revision: 1.4 $
|
||||||
* @see HelixPlayer
|
* @see HelixPlayer
|
||||||
*/
|
*/
|
||||||
class HelixPlayerTest : public CPPUNIT_NS::TestFixture
|
class HelixPlayerTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -68,6 +68,8 @@ class HelixPlayerTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(simplePlayTest);
|
CPPUNIT_TEST(simplePlayTest);
|
||||||
CPPUNIT_TEST(checkErrorConditions);
|
CPPUNIT_TEST(checkErrorConditions);
|
||||||
CPPUNIT_TEST(smilTest);
|
CPPUNIT_TEST(smilTest);
|
||||||
|
// CPPUNIT_TEST(smilParallelTest);
|
||||||
|
// CPPUNIT_TEST(smilSoundAnimationTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -112,6 +114,22 @@ class HelixPlayerTest : public CPPUNIT_NS::TestFixture
|
||||||
void
|
void
|
||||||
smilTest(void) throw (CPPUNIT_NS::Exception);
|
smilTest(void) throw (CPPUNIT_NS::Exception);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test SMIL files, when playing audio clips in parallel.
|
||||||
|
*
|
||||||
|
* @exception CPPUNIT_NS::Exception on test failures.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
smilParallelTest(void) throw (CPPUNIT_NS::Exception);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test SMIL files, when animating the sound of a played clip.
|
||||||
|
*
|
||||||
|
* @exception CPPUNIT_NS::Exception on test failures.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
smilSoundAnimationTest(void) throw (CPPUNIT_NS::Exception);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue