X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali%2Futc-Dali-Animation.cpp;h=83f3badf6496e6267b135f954c2685e90b1741e8;hb=41e9a0ad46f71f270f69e75a08098f5105275cd3;hp=a11ca7856cd90c73ee62bfdc4930186869d59353;hpb=5af035b463d96ff9ba1f13b4598ea78d475677e7;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/automated-tests/src/dali/utc-Dali-Animation.cpp b/automated-tests/src/dali/utc-Dali-Animation.cpp index a11ca78..83f3bad 100644 --- a/automated-tests/src/dali/utc-Dali-Animation.cpp +++ b/automated-tests/src/dali/utc-Dali-Animation.cpp @@ -6696,19 +6696,15 @@ int UtcDaliAnimationAnimateToActorParentOriginP(void) Animation animation = Animation::New(durationSeconds); Vector3 targetParentOrigin(ParentOrigin::BOTTOM_RIGHT); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::PARENT_ORIGIN), targetParentOrigin ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorParentOriginXP(void) +int UtcDaliAnimationAnimateToActorParentOriginXN(void) { TestApplication application; @@ -6723,19 +6719,15 @@ int UtcDaliAnimationAnimateToActorParentOriginXP(void) Animation animation = Animation::New(durationSeconds); float targetX(1.0f); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::PARENT_ORIGIN_X), targetX ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorParentOriginYP(void) +int UtcDaliAnimationAnimateToActorParentOriginYN(void) { TestApplication application; @@ -6750,19 +6742,15 @@ int UtcDaliAnimationAnimateToActorParentOriginYP(void) Animation animation = Animation::New(durationSeconds); float targetY(1.0f); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::PARENT_ORIGIN_Y), targetY ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorParentOriginZP(void) +int UtcDaliAnimationAnimateToActorParentOriginZN(void) { TestApplication application; @@ -6777,19 +6765,15 @@ int UtcDaliAnimationAnimateToActorParentOriginZP(void) Animation animation = Animation::New(durationSeconds); float targetZ(1.0f); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::PARENT_ORIGIN_Z), targetZ ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorAnchorPointP(void) +int UtcDaliAnimationAnimateToActorAnchorPointN(void) { TestApplication application; @@ -6802,19 +6786,15 @@ int UtcDaliAnimationAnimateToActorAnchorPointP(void) Animation animation = Animation::New(durationSeconds); Vector3 targetAnchorPoint(AnchorPoint::TOP_LEFT); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::ANCHOR_POINT), targetAnchorPoint); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorAnchorPointXP(void) +int UtcDaliAnimationAnimateToActorAnchorPointXN(void) { TestApplication application; @@ -6829,19 +6809,15 @@ int UtcDaliAnimationAnimateToActorAnchorPointXP(void) Animation animation = Animation::New(durationSeconds); float targetX(1.0f); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::ANCHOR_POINT_X), targetX ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorAnchorPointYP(void) +int UtcDaliAnimationAnimateToActorAnchorPointYN(void) { TestApplication application; @@ -6856,19 +6832,15 @@ int UtcDaliAnimationAnimateToActorAnchorPointYP(void) Animation animation = Animation::New(durationSeconds); float targetY(0.0f); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::ANCHOR_POINT_Y), targetY ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } -int UtcDaliAnimationAnimateToActorAnchorPointZP(void) +int UtcDaliAnimationAnimateToActorAnchorPointZN(void) { TestApplication application; @@ -6883,15 +6855,11 @@ int UtcDaliAnimationAnimateToActorAnchorPointZP(void) Animation animation = Animation::New(durationSeconds); float targetZ(100.0f); - try + DALI_TEST_ASSERTION( { animation.AnimateTo( Property(actor, Actor::Property::ANCHOR_POINT_Z), targetZ ); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "IsPropertyAnimatable( index )", TEST_LOCATION); - } + }, "IsPropertyAnimatable( index )" ); + END_TEST; } @@ -8642,7 +8610,7 @@ int UtcDaliAnimationKeyFrames01P(void) END_TEST; } -int UtcDaliAnimationKeyFrames02P(void) +int UtcDaliAnimationKeyFrames02N(void) { TestApplication application; @@ -8658,19 +8626,15 @@ int UtcDaliAnimationKeyFrames02P(void) DALI_TEST_EQUALS(keyFrames.GetType(), Property::FLOAT, TEST_LOCATION); - try + DALI_TEST_ASSERTION( { keyFrames.Add(1.9f, false); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "mType == value.GetType()", TEST_LOCATION); - } + }, "mType == value.GetType()" ); + END_TEST; } -int UtcDaliAnimationKeyFrames03P(void) +int UtcDaliAnimationKeyFrames03N(void) { TestApplication application; @@ -8686,19 +8650,15 @@ int UtcDaliAnimationKeyFrames03P(void) DALI_TEST_EQUALS(keyFrames.GetType(), Property::BOOLEAN, TEST_LOCATION); - try + DALI_TEST_ASSERTION( { keyFrames.Add(0.7f, Vector3(1.0f, 1.0f, 1.0f)); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "mType == value.GetType()", TEST_LOCATION); - } + }, "mType == value.GetType()" ); + END_TEST; } -int UtcDaliAnimationKeyFrames04P(void) +int UtcDaliAnimationKeyFrames04N(void) { TestApplication application; @@ -8714,19 +8674,15 @@ int UtcDaliAnimationKeyFrames04P(void) DALI_TEST_EQUALS(keyFrames.GetType(), Property::VECTOR2, TEST_LOCATION); - try + DALI_TEST_ASSERTION( { keyFrames.Add(0.7f, Vector3(1.0f, 1.0f, 1.0f)); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "mType == value.GetType()", TEST_LOCATION); - } + }, "mType == value.GetType()" ); + END_TEST; } -int UtcDaliAnimationKeyFrames05P(void) +int UtcDaliAnimationKeyFrames05N(void) { TestApplication application; @@ -8742,19 +8698,15 @@ int UtcDaliAnimationKeyFrames05P(void) DALI_TEST_EQUALS(keyFrames.GetType(), Property::VECTOR3, TEST_LOCATION); - try + DALI_TEST_ASSERTION( { keyFrames.Add(0.7f, 1.0f); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "mType == value.GetType()", TEST_LOCATION); - } + }, "mType == value.GetType()" ); + END_TEST; } -int UtcDaliAnimationKeyFrames06P(void) +int UtcDaliAnimationKeyFrames06N(void) { TestApplication application; @@ -8770,19 +8722,15 @@ int UtcDaliAnimationKeyFrames06P(void) DALI_TEST_EQUALS(keyFrames.GetType(), Property::VECTOR4, TEST_LOCATION); - try + DALI_TEST_ASSERTION( { keyFrames.Add(0.7f, Quaternion(Radian(1.717f), Vector3::XAXIS)); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "mType == value.GetType()", TEST_LOCATION); - } + }, "mType == value.GetType()" ); + END_TEST; } -int UtcDaliAnimationKeyFrames07P(void) +int UtcDaliAnimationKeyFrames07N(void) { TestApplication application; @@ -8798,15 +8746,11 @@ int UtcDaliAnimationKeyFrames07P(void) DALI_TEST_EQUALS(keyFrames.GetType(), Property::ROTATION, TEST_LOCATION); - try + DALI_TEST_ASSERTION( { keyFrames.Add(0.7f, 1.1f); - } - catch (Dali::DaliException& e) - { - DALI_TEST_PRINT_ASSERT( e ); - DALI_TEST_ASSERT(e, "mType == value.GetType()", TEST_LOCATION); - } + }, "mType == value.GetType()" ); + END_TEST; } @@ -10709,19 +10653,14 @@ int UtcDaliAnimationAnimateByNonAnimateableTypeN(void) Stage::GetCurrent().Add(actor); DALI_TEST_EQUALS( actor.GetProperty(index), startValue, TEST_LOCATION ); - try + DALI_TEST_ASSERTION( { // Build the animation Animation animation = Animation::New( 2.0f ); std::string relativeValue = "relative string"; animation.AnimateBy( Property(actor, index), relativeValue ); tet_result(TET_FAIL); - } - catch ( Dali::DaliException& e ) - { - DALI_TEST_ASSERT( e, "Animated value and Property type don't match", TEST_LOCATION ); - } - + }, "Target value is not animatable" ); END_TEST; } @@ -10739,19 +10678,13 @@ int UtcDaliAnimationAnimateToNonAnimateableTypeN(void) Stage::GetCurrent().Add(actor); DALI_TEST_EQUALS( actor.GetProperty(index), startValue, TEST_LOCATION ); - try + DALI_TEST_ASSERTION( { // Build the animation Animation animation = Animation::New( 2.0f ); std::string relativeValue = "relative string"; animation.AnimateTo( Property(actor, index), relativeValue ); - - tet_result(TET_FAIL); - } - catch ( Dali::DaliException& e ) - { - DALI_TEST_ASSERT( e, "Animated value and Property type don't match", TEST_LOCATION ); - } + }, "Target value is not animatable" ); END_TEST; } @@ -10768,20 +10701,14 @@ int UtcDaliAnimationAnimateBetweenNonAnimateableTypeN(void) Stage::GetCurrent().Add(actor); DALI_TEST_EQUALS( actor.GetProperty(index), startValue, TEST_LOCATION ); - try + DALI_TEST_ASSERTION( { // Build the animation KeyFrames keyFrames = KeyFrames::New(); keyFrames.Add( 0.0f, std::string("relative string1") ); keyFrames.Add( 1.0f, std::string("relative string2") ); // no need to really create the animation as keyframes do the check - - tet_result(TET_FAIL); - } - catch ( Dali::DaliException& e ) - { - DALI_TEST_ASSERT( e, "Type not animateable", TEST_LOCATION ); - } + }, "Property type is not animatable" ); END_TEST; } @@ -11353,165 +11280,1596 @@ int UtcDaliAnimationProgressCallbackP(void) END_TEST; } -int UtcDaliAnimationProgressSignalConnectionWithoutProgressMarkerP(void) +int UtcDaliAnimationPlayAfterP(void) { TestApplication application; - tet_infoline( "Connect to ProgressReachedSignal but do not set a required Progress marker" ); + tet_printf("Testing that playing after 2 seconds\n"); - Actor actor = Actor::New(); - Stage::GetCurrent().Add(actor); + { + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); - // Build the animation - Animation animation = Animation::New(0.0f); + // Build the animation + float durationSeconds(1.0f); + Animation animation = Animation::New(durationSeconds); - //Set duration - float durationSeconds(1.0f); - animation.SetDuration(durationSeconds); + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); - bool finishedSignalReceived(false); - bool progressSignalReceived(false); + Vector3 targetPosition( 100.0f, 100.0f, 100.0f ); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition, AlphaFunction::LINEAR, TimePeriod( 0.5f, 0.5f ) ); - AnimationFinishCheck finishCheck(finishedSignalReceived); - animation.FinishedSignal().Connect(&application, finishCheck); + // Play animation after the initial delay time + animation.PlayAfter( 0.2f ); + application.SendNotification(); + application.Render(0); // start animation - AnimationProgressCheck progressCheck( progressSignalReceived ); - DevelAnimation::ProgressReachedSignal( animation ).Connect( &application, progressCheck); - application.SendNotification(); + application.Render( durationSeconds * 200.f ); // The intial delay time of PlayAfter + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - Vector3 targetPosition(100.0f, 100.0f, 100.0f); - animation.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 50% animation progress, 0% animator progress */ ); - progressCheck.CheckSignalNotReceived(); + // We didn't expect the animation to finish yet + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of TimePeriod in seconds - animation.Play(); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 75% animation progress, 50% animator progress */ ); - application.SendNotification(); - application.Render(0); // start animation - application.Render(durationSeconds*100.0f ); // 10% progress - application.SendNotification(); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.5f ), TEST_LOCATION ); - tet_infoline( "Ensure after animation has started playing that ProgressReachedSignal not emitted" ); - progressCheck.CheckSignalNotReceived(); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f ) + 1u/*just beyond the animation duration*/ ); - application.Render(static_cast(durationSeconds*900.0f) + 1u/*just beyond the animation duration*/); + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); - application.SendNotification(); - finishCheck.CheckSignalReceived(); - tet_infoline( "Animation finished" ); - DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + // Check that nothing has changed after a couple of buffer swaps + application.Render(0); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + } - END_TEST; -} + tet_printf("Testing that playing after 2 seconds with negative speedfactor\n"); + // SpeedFactor < 0 + { + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); -int UtcDaliAnimationMultipleProgressSignalsP(void) -{ - tet_infoline( "Multiple animations with different progress markers" ); + // Build the animation + float durationSeconds(1.0f); + Animation animation = Animation::New(durationSeconds); + animation.SetSpeedFactor( -1.0f ); // Set SpeedFactor as < 0 - TestApplication application; + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); - Actor actor = Actor::New(); - Stage::GetCurrent().Add(actor); + Vector3 targetPosition( 100.0f, 100.0f, 100.0f ); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition, AlphaFunction::LINEAR, TimePeriod( 0.5f, 0.5f ) ); - // Build the animation - Animation animationAlpha = Animation::New(0.0f); - Animation animationBeta = Animation::New(0.0f); + // Play animation after the initial delay time + animation.PlayAfter( 0.2f ); + application.SendNotification(); + application.Render(0); // start animation - //Set duration - float durationSeconds(1.0f); - animationAlpha.SetDuration(durationSeconds); - animationBeta.SetDuration(durationSeconds); + application.Render( durationSeconds * 200.f ); // The intial delay time of PlayAfter + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 1.0f ), TEST_LOCATION ); // Not move. NOTE SpeedFactor < 0 so 'targetPosition' is start position. - bool progressSignalReceivedAlpha(false); - bool progressSignalReceivedBeta(false); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 25% animation progress, 50% animator progress */ ); - AnimationProgressCheck progressCheckAlpha(progressSignalReceivedAlpha, "animation:Alpha"); - AnimationProgressCheck progressCheckBeta(progressSignalReceivedBeta, "animation:Beta" ); + // We didn't expect the animation to finish yet + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.5f ), TEST_LOCATION ); - DevelAnimation::ProgressReachedSignal( animationAlpha ).Connect( &application, progressCheckAlpha ); - DevelAnimation::ProgressReachedSignal( animationBeta ).Connect( &application, progressCheckBeta); - application.SendNotification(); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 50% animation progress, 100% animator progress */ ); - Vector3 targetPosition(100.0f, 100.0f, 100.0f); - animationAlpha.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); - animationBeta.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); - tet_infoline( "AnimationAlpha Progress notification set to 30%" ); - DevelAnimation::SetProgressNotification( animationAlpha, 0.3f ); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f ) + 1u/*just beyond the animation duration*/ ); - tet_infoline( "AnimationBeta Progress notification set to 50%" ); - DevelAnimation::SetProgressNotification( animationBeta, 0.5f ); + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of Timeperiod in seconds - application.SendNotification(); - application.Render( ); + // Check that nothing has changed after a couple of buffer swaps + application.Render(0); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3(0.0, 0.0, 0.0), TEST_LOCATION ); + } - progressCheckAlpha.CheckSignalNotReceived(); - progressCheckBeta.CheckSignalNotReceived(); + END_TEST; +} - // Start the animations from 10% progress - animationAlpha.SetCurrentProgress( 0.1f ); - animationBeta.SetCurrentProgress( 0.1f ); - animationAlpha.Play(); - animationBeta.Play(); +int UtcDaliAnimationPlayAfterP2(void) +{ + TestApplication application; - tet_infoline( "Animation Playing from 10%" ); + tet_printf("Testing that playing after 2 seconds before looping\n"); - application.SendNotification(); - application.Render(0); // start animation - application.Render(durationSeconds*100.0f ); // 20% progress + { + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); - tet_infoline( "Animation at 20% - No signals to be received" ); + // Build the animation + float durationSeconds(1.0f); + Animation animation = Animation::New(durationSeconds); + animation.SetLooping( true ); - progressCheckAlpha.CheckSignalNotReceived(); - progressCheckBeta.CheckSignalNotReceived(); + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); - application.SendNotification(); - application.Render(durationSeconds*200.0f ); // 40% progress - application.SendNotification(); - tet_infoline( "Animation at 40% - Alpha signal should be received" ); - DALI_TEST_EQUALS( 0.4f, animationAlpha.GetCurrentProgress(), TEST_LOCATION ); + Vector3 targetPosition( 100.0f, 100.0f, 100.0f ); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition, AlphaFunction::LINEAR, TimePeriod( 0.5f, 0.5f ) ); - progressCheckAlpha.CheckSignalReceived(); - progressCheckBeta.CheckSignalNotReceived(); + // Play animation after the initial delay time + animation.PlayAfter( 0.2f ); + application.SendNotification(); + application.Render(0); // start animation - tet_infoline( "Progress check reset" ); - progressCheckAlpha.Reset(); - progressCheckBeta.Reset(); + for( int iterations = 0; iterations < 3; ++iterations ) + { + // The initial delay time of PlayAfter() applies only once in looping mode. + if( iterations == 0 ) + { + application.Render( durationSeconds * 200.f ); // The intial delay time of PlayAfter + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move + } - application.Render(durationSeconds*100.0f ); // 50% progress - tet_infoline( "Animation at 50% - Beta should receive signal, Alpha should not" ); - application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 50% animation progress, 0% animator progress */ ); - DALI_TEST_EQUALS( 0.5f, animationBeta.GetCurrentProgress(), TEST_LOCATION ); + // We didn't expect the animation to finish yet + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of TimePeriod in seconds - progressCheckAlpha.CheckSignalNotReceived(); - progressCheckBeta.CheckSignalReceived(); - tet_infoline( "Progress check reset" ); - progressCheckAlpha.Reset(); - progressCheckBeta.Reset(); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 75% animation progress, 50% animator progress */ ); - application.Render(static_cast(durationSeconds*100.0f)/* 60% progress */); - application.SendNotification(); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.5f ), TEST_LOCATION ); - tet_infoline( "Animation at 60%" ); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f ) /* 100% progress */ ); - progressCheckAlpha.CheckSignalNotReceived(); - progressCheckBeta.CheckSignalNotReceived(); + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + } - application.Render(static_cast(durationSeconds*200.0f)/* 80% progress */); - application.SendNotification(); - tet_infoline( "Animation at 80%" ); + animation.SetLooping(false); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 1000.0f ) + 1u /*just beyond the animation duration*/ ); - progressCheckAlpha.CheckSignalNotReceived(); - progressCheckBeta.CheckSignalNotReceived(); + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + } - application.Render(static_cast(durationSeconds*200.0f) + 1u/*just beyond the animation duration*/); - // We did expect the animation to finish - tet_infoline( "Animation finished" ); + tet_printf("Testing that playing after 2 seconds before looping with negative speedfactor\n"); + // SpeedFactor < 0 + { + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); - END_TEST; + // Build the animation + float durationSeconds(1.0f); + Animation animation = Animation::New(durationSeconds); + animation.SetLooping( true ); + animation.SetSpeedFactor( -1.0f ); //Set SpeedFactor as < 0 + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + Vector3 targetPosition( 100.0f, 100.0f, 100.0f ); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition, AlphaFunction::LINEAR, TimePeriod( 0.5f, 0.5f ) ); + + // Play animation after the initial delay time + animation.PlayAfter( 0.2f ); + application.SendNotification(); + application.Render(0); // start animation + + for( int iterations = 0; iterations < 3; ++iterations ) + { + // The initial delay time of PlayAfter() applies only once in looping mode. + if( iterations == 0 ) + { + application.Render( durationSeconds * 200.f ); // The intial delay time of PlayAfter + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 1.0f ), TEST_LOCATION ); // Not move. NOTE SpeedFactor < 0 so 'targetPosition' is start position. + } + + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 25% animation progress, 50% animator progress */ ); + + // We didn't expect the animation to finish yet + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.5f ), TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 50% animation progress, 100% animator progress */ ); + + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f ) /* 100% progress */ ); + + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of TimePeriod in second + } + + animation.SetLooping(false); + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 1000.0f ) + 1u /*just beyond the animation duration*/ ); + + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3(0.0, 0.0, 0.0), TEST_LOCATION ); + } + + END_TEST; +} + +int UtcDaliAnimationPlayAfterP3(void) +{ + TestApplication application; + + tet_printf("Testing that PlayAfter with the negative delay seconds\n"); + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + float durationSeconds(1.0f); + Animation animation = Animation::New(durationSeconds); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + Vector3 targetPosition( 100.0f, 100.0f, 100.0f ); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition, AlphaFunction::LINEAR, TimePeriod( 0.5f, 0.5f ) ); + + // When the delay time is negative value, it would treat as play immediately. + animation.PlayAfter( -2.0f ); + application.SendNotification(); + application.Render(0); // start animation + + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 50% animation progress, 0% animator progress */ ); + + // We didn't expect the animation to finish yet + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of TimePeriod in seconds + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 75% animation progress, 50% animator progress */ ); + + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.5f ), TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f ) + 1u/*just beyond the animation duration*/ ); + + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + // Check that nothing has changed after a couple of buffer swaps + application.Render(0); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + END_TEST; +} + +int UtcDaliAnimationPlayAfterP4(void) +{ + TestApplication application; + + tet_printf("Testing that PlayAfter with progress value\n"); + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + float durationSeconds(1.0f); + Animation animation = Animation::New(durationSeconds); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + Vector3 targetPosition( 100.0f, 100.0f, 100.0f ); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition, AlphaFunction::LINEAR, TimePeriod( 0.5f, 0.5f ) ); + + // Delay time is 0.3s. So after duration times, progress must be 70%. animation will finished at 1.3s. + animation.PlayAfter( durationSeconds * 0.3f ); + application.SendNotification(); + application.Render(0); // start animation + + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 5/6 delay progress, 0% animation progress, 0% animator progress */ ); + + // We didn't expect the animation to finish yet + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of PlayAfter + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 100% delay progress, 20% animation progress, 0% animator progress */ ); + + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of TimePeriod in seconds + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 100% delay progress, 45% animation progress, 0% animator progress */ ); + + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.0f ), TEST_LOCATION ); // Not move - A delay time of TimePeriod in seconds + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 100% delay progress, 70% animation progress, 40% animator progress */ ); + + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.4f ), TEST_LOCATION ); // 40% of animator progress + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 250.0f )/* 100% delay progress, 95% animation progress, 90% animator progress */ ); + + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), ( targetPosition * 0.9f ), TEST_LOCATION ); // 90% of animator progress + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 50.0f ) + 1u/*just beyond the animation duration*/ ); + + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + // Check that nothing has changed after a couple of buffer swaps + application.Render(0); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + END_TEST; +} + +int UtcDaliAnimationSetLoopingModeP(void) +{ + // Test Loop forever and Loop mode being set + TestApplication application; + Stage stage( Stage::GetCurrent() ); + + // Default: LoopingMode::RESTART + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::RESTART ); + + Vector3 targetPosition(10.0f, 10.0f, 10.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + // Start the animation + animation.Play(); + application.SendNotification(); + application.Render(static_cast(durationSeconds*0.5f*1000.0f)/*Only half the animation*/); + + actor.Unparent(); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + } + + // LoopingMode::AUTO_REVERSE + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + animation.SetLooping( true ); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + animation.SetLoopingMode( Animation::LoopingMode::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + // Start the animation + animation.Play(); + application.SendNotification(); + application.Render(0); + + for( int iterations = 0; iterations < 3; ++iterations ) + { + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 50% time progress */ ); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + + // AUTO_REVERSE mode means, for Animation duration time, the actor starts from the beginning, passes the targetPosition, + // and arrives at the beginning. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 100% time progress */ ); + + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + } + + animation.SetLooping( false ); + application.SendNotification(); + application.Render(static_cast< unsigned int >( durationSeconds * 1000.0f ) + 1u /*just beyond the animation duration*/); + + application.SendNotification(); + finishCheck.CheckSignalReceived(); + + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + } + + // LoopingMode::AUTO_REVERSE in Reverse mode, which begin from the end + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + animation.SetLooping( true ); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + // Specify a negative multiplier to play the animation in reverse + animation.SetSpeedFactor( -1.0f ); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + animation.SetLoopingMode( Animation::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + // Start the animation + animation.Play(); + application.SendNotification(); + application.Render(0); + + for( int iterations = 0; iterations < 3; ++iterations ) + { + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 50% time progress */ ); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + + // Setting a negative speed factor is to play the animation in reverse. + // So, when LoopingMode::AUTO_REVERSE and SetSpeedFactor( -1.0f ) is, for Animation duration time, + // the actor starts from the targetPosition, passes the beginning, and arrives at the targetPosition. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 500.0f )/* 100% time progress */ ); + + // We did expect the animation to finish + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + } + + animation.SetLooping( false ); + application.SendNotification(); + application.Render(static_cast< unsigned int >( durationSeconds * 1000.0f ) + 1u /*just beyond the animation duration*/); + + application.SendNotification(); + finishCheck.CheckSignalReceived(); + + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + } + + END_TEST; +} + +int UtcDaliAnimationSetLoopingModeP2(void) +{ + // Test Loop Count and Loop mode being set + TestApplication application; + Stage stage( Stage::GetCurrent() ); + + // LoopingMode::AUTO_REVERSE + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + animation.SetLoopCount(3); + DALI_TEST_CHECK(animation.IsLooping()); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + animation.SetLoopingMode( Animation::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + // Start the animation + animation.Play(); + + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + + // Loop + float intervalSeconds = 3.0f; + + application.Render(static_cast(durationSeconds*intervalSeconds*1000.0f)); + // AUTO_REVERSE mode means, for Animation duration time, the actor starts from the beginning, passes the targetPosition, + // and arrives at the beginning. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + + application.Render(static_cast(durationSeconds*intervalSeconds*1000.0f)); + + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*intervalSeconds*1000.0f)); + + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + + finishCheck.Reset(); + } + + // LoopingMode::AUTO_REVERSE in Reverse mode, which begin from the end + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + animation.SetLoopCount(3); + DALI_TEST_CHECK(animation.IsLooping()); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + // Specify a negative multiplier to play the animation in reverse + animation.SetSpeedFactor( -1.0f ); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + animation.SetLoopingMode( Animation::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + // Start the animation + animation.Play(); + + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + + // Loop + float intervalSeconds = 3.0f; + + application.Render(static_cast(durationSeconds*intervalSeconds*1000.0f)); + // Setting a negative speed factor is to play the animation in reverse. + // So, when LoopingMode::AUTO_REVERSE and SetSpeedFactor( -1.0f ) is, for Animation duration time, + // the actor starts from the targetPosition, passes the beginning, and arrives at the targetPosition. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + application.Render(static_cast(durationSeconds*intervalSeconds*1000.0f)); + + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + application.Render(0); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*intervalSeconds*1000.0f)); + + application.SendNotification(); + finishCheck.CheckSignalReceived(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + finishCheck.Reset(); + } + + END_TEST; +} + +int UtcDaliAnimationSetLoopingModeP3(void) +{ + // Test Loop Count is 1 (== default) and Loop mode being set + TestApplication application; + Stage stage( Stage::GetCurrent() ); + + // LoopingMode::AUTO_REVERSE + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + DALI_TEST_CHECK(1 == animation.GetLoopCount()); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + animation.SetLoopingMode( Animation::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + // Start the animation + animation.Play(); + application.Render(0); + application.SendNotification(); + + application.Render( static_cast< unsigned int >( durationSeconds * 0.5f * 1000.0f )/* 50% time progress */ ); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + + // AUTO_REVERSE mode means, for Animation duration time, the actor starts from the beginning, passes the targetPosition, + // and arrives at the beginning. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 0.5f * 1000.0f )/* 100% time progress */ ); + + application.SendNotification(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 1.0f * 1000.0f ) + 1u /*just beyond the animation duration*/ ); + + application.SendNotification(); + application.Render(0); + application.SendNotification(); + finishCheck.CheckSignalReceived(); + + // After all animation finished, arrives at the beginning. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + + finishCheck.Reset(); + } + + // LoopingMode::AUTO_REVERSE in Reverse mode, which begin from the end + { + Actor actor = Actor::New(); + stage.Add( actor ); + + float durationSeconds( 1.0f ); + Animation animation = Animation::New( durationSeconds ); + DALI_TEST_CHECK(1 == animation.GetLoopCount()); + + bool signalReceived( false ); + AnimationFinishCheck finishCheck( signalReceived ); + animation.FinishedSignal().Connect( &application, finishCheck ); + application.SendNotification(); + + // Specify a negative multiplier to play the animation in reverse + animation.SetSpeedFactor( -1.0f ); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), targetPosition ); + + animation.SetLoopingMode( Animation::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + // Start the animation + animation.Play(); + application.Render(0); + application.SendNotification(); + + application.Render( static_cast< unsigned int >( durationSeconds * 0.5f * 1000.0f )/* 50% time progress */ ); + application.SendNotification(); + finishCheck.CheckSignalNotReceived(); + + // Setting a negative speed factor is to play the animation in reverse. + // So, when LoopingMode::AUTO_REVERSE and SetSpeedFactor( -1.0f ) is, for Animation duration time, + // the actor starts from the targetPosition, passes the beginning, and arrives at the targetPosition. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), Vector3( 0.0f, 0.0f, 0.0f ), TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 0.5f * 1000.0f )/* 100% time progress */ ); + + application.SendNotification(); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + application.SendNotification(); + application.Render( static_cast< unsigned int >( durationSeconds * 1.0f * 1000.0f ) + 1u /*just beyond the animation duration*/ ); + + application.SendNotification(); + application.Render(0); + application.SendNotification(); + finishCheck.CheckSignalReceived(); + + // After all animation finished, arrives at the target. + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + finishCheck.Reset(); + } + + END_TEST; +} + +int UtcDaliAnimationGetLoopingModeP(void) +{ + TestApplication application; + + Animation animation = Animation::New(1.0f); + + // default mode + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::RESTART ); + + animation.SetLoopingMode( Animation::AUTO_REVERSE ); + DALI_TEST_CHECK( animation.GetLoopingMode() == Animation::AUTO_REVERSE ); + + END_TEST; +} + +int UtcDaliAnimationProgressSignalConnectionWithoutProgressMarkerP(void) +{ + TestApplication application; + + tet_infoline( "Connect to ProgressReachedSignal but do not set a required Progress marker" ); + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animation = Animation::New(0.0f); + + //Set duration + float durationSeconds(1.0f); + animation.SetDuration(durationSeconds); + + bool finishedSignalReceived(false); + bool progressSignalReceived(false); + + AnimationFinishCheck finishCheck(finishedSignalReceived); + animation.FinishedSignal().Connect(&application, finishCheck); + + AnimationProgressCheck progressCheck( progressSignalReceived ); + DevelAnimation::ProgressReachedSignal( animation ).Connect( &application, progressCheck); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + progressCheck.CheckSignalNotReceived(); + + animation.Play(); + + application.SendNotification(); + application.Render(0); // start animation + application.Render(durationSeconds*100.0f ); // 10% progress + application.SendNotification(); + + tet_infoline( "Ensure after animation has started playing that ProgressReachedSignal not emitted" ); + progressCheck.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*900.0f) + 1u/*just beyond the animation duration*/); + + application.SendNotification(); + finishCheck.CheckSignalReceived(); + tet_infoline( "Animation finished" ); + DALI_TEST_EQUALS( actor.GetCurrentPosition(), targetPosition, TEST_LOCATION ); + + END_TEST; +} + +int UtcDaliAnimationMultipleProgressSignalsP(void) +{ + tet_infoline( "Multiple animations with different progress markers" ); + + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animationAlpha = Animation::New(0.0f); + Animation animationBeta = Animation::New(0.0f); + + //Set duration + float durationSeconds(1.0f); + animationAlpha.SetDuration(durationSeconds); + animationBeta.SetDuration(durationSeconds); + + bool progressSignalReceivedAlpha(false); + bool progressSignalReceivedBeta(false); + + AnimationProgressCheck progressCheckAlpha(progressSignalReceivedAlpha, "animation:Alpha"); + AnimationProgressCheck progressCheckBeta(progressSignalReceivedBeta, "animation:Beta" ); + + DevelAnimation::ProgressReachedSignal( animationAlpha ).Connect( &application, progressCheckAlpha ); + DevelAnimation::ProgressReachedSignal( animationBeta ).Connect( &application, progressCheckBeta); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animationAlpha.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + animationBeta.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "AnimationAlpha Progress notification set to 30%" ); + DevelAnimation::SetProgressNotification( animationAlpha, 0.3f ); + + tet_infoline( "AnimationBeta Progress notification set to 50%" ); + DevelAnimation::SetProgressNotification( animationBeta, 0.5f ); + + application.SendNotification(); + application.Render( ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + // Start the animations from 10% progress + animationAlpha.SetCurrentProgress( 0.1f ); + animationBeta.SetCurrentProgress( 0.1f ); + animationAlpha.Play(); + animationBeta.Play(); + + tet_infoline( "Animation Playing from 10%" ); + + application.SendNotification(); + application.Render(0); // start animation + application.Render(durationSeconds*100.0f ); // 20% progress + + tet_infoline( "Animation at 20% - No signals to be received" ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*200.0f ); // 40% progress + application.SendNotification(); + tet_infoline( "Animation at 40% - Alpha signal should be received" ); + DALI_TEST_EQUALS( 0.4f, animationAlpha.GetCurrentProgress(), TEST_LOCATION ); + + progressCheckAlpha.CheckSignalReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + application.Render(durationSeconds*100.0f ); // 50% progress + tet_infoline( "Animation at 50% - Beta should receive signal, Alpha should not" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.5f, animationBeta.GetCurrentProgress(), TEST_LOCATION ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalReceived(); + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + application.Render(static_cast(durationSeconds*100.0f)/* 60% progress */); + application.SendNotification(); + + tet_infoline( "Animation at 60%" ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*200.0f)/* 80% progress */); + application.SendNotification(); + tet_infoline( "Animation at 80%" ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*200.0f) + 1u/*just beyond the animation duration*/); + // We did expect the animation to finish + tet_infoline( "Animation finished" ); + + END_TEST; +} + +int UtcDaliAnimationMultipleProgressSignalsP2(void) +{ + tet_infoline( "Multiple animations with different progress markers and big step time" ); + + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animationAlpha = Animation::New(0.0f); + Animation animationBeta = Animation::New(0.0f); + + //Set duration + const float durationSeconds(1.0f); + animationAlpha.SetDuration(durationSeconds); + animationBeta.SetDuration(durationSeconds); + + bool progressSignalReceivedAlpha(false); + bool progressSignalReceivedBeta(false); + + AnimationProgressCheck progressCheckAlpha(progressSignalReceivedAlpha, "animation:Alpha"); + AnimationProgressCheck progressCheckBeta(progressSignalReceivedBeta, "animation:Beta" ); + + DevelAnimation::ProgressReachedSignal( animationAlpha ).Connect( &application, progressCheckAlpha ); + DevelAnimation::ProgressReachedSignal( animationBeta ).Connect( &application, progressCheckBeta); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animationAlpha.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + animationBeta.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "AnimationAlpha Progress notification set to 1%" ); + DevelAnimation::SetProgressNotification( animationAlpha, 0.01f ); + + tet_infoline( "AnimationBeta Progress notification set to 99%" ); + DevelAnimation::SetProgressNotification( animationBeta, 0.99f ); + + application.SendNotification(); + application.Render( ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + // Start the animations unlimited looping + animationAlpha.SetLooping( true ); + animationBeta.SetLooping( true ); + animationAlpha.Play(); + animationBeta.Play(); + + application.SendNotification(); + application.Render(0); // start animation + application.Render(durationSeconds*20.0f ); // 2% progress + application.SendNotification(); + DALI_TEST_EQUALS( 0.02f, animationAlpha.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 2% - Alpha signals should be received, Beta should not." ); + + progressCheckAlpha.CheckSignalReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + application.SendNotification(); + application.Render(durationSeconds*960.0f ); // 98% progress + application.SendNotification(); + tet_infoline( "Animation at 98% - No signal received" ); + DALI_TEST_EQUALS( 0.98f, animationAlpha.GetCurrentProgress(), TEST_LOCATION ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*40.0f ); // 2% progress + application.SendNotification(); + tet_infoline( "Animation loop once and now 2% - Alpha and Beta should receive signal" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.02f, animationBeta.GetCurrentProgress(), TEST_LOCATION ); + + progressCheckAlpha.CheckSignalReceived(); + progressCheckBeta.CheckSignalReceived(); + + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + application.SendNotification(); + application.Render(durationSeconds*980.0f ); // 100% progress + application.SendNotification(); + tet_infoline( "Animation loop one more time. and now 100% - Beta should receive signal, Alhpa sholud not" ); + application.SendNotification(); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalReceived(); + + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + animationAlpha.SetLooping( false ); + animationBeta.SetLooping( false ); + + application.SendNotification(); + application.Render(static_cast(durationSeconds*2000.0f) + 1u/*just beyond the animation duration*/); + application.SendNotification(); + + // We did expect the animation to finish + tet_infoline( "Animation finished" ); + + END_TEST; +} + +int UtcDaliAnimationProgressSignalWithPlayAfterP(void) +{ + tet_infoline( "Multiple animations with different progress markers" ); + + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animationAlpha = Animation::New(0.0f); + Animation animationBeta = Animation::New(0.0f); + + //Set duration + float durationSeconds(1.0f); + float delaySeconds(0.5f); + animationAlpha.SetDuration(durationSeconds); + animationBeta.SetDuration(durationSeconds); + + bool progressSignalReceivedAlpha(false); + bool progressSignalReceivedBeta(false); + + AnimationProgressCheck progressCheckAlpha(progressSignalReceivedAlpha, "animation:Alpha"); + AnimationProgressCheck progressCheckBeta(progressSignalReceivedBeta, "animation:Beta" ); + + DevelAnimation::ProgressReachedSignal( animationAlpha ).Connect( &application, progressCheckAlpha ); + DevelAnimation::ProgressReachedSignal( animationBeta ).Connect( &application, progressCheckBeta); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animationAlpha.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + animationBeta.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "AnimationAlpha Progress notification set to 30%" ); + DevelAnimation::SetProgressNotification( animationAlpha, 0.3f ); + + tet_infoline( "AnimationBeta Progress notification set to ~0% (==Notify when delay is done)" ); + DevelAnimation::SetProgressNotification( animationBeta, Math::MACHINE_EPSILON_1 ); + + application.SendNotification(); + application.Render( ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + // Start the animations from 10% progress + animationAlpha.PlayAfter(delaySeconds); + animationBeta.PlayAfter(delaySeconds); + + application.SendNotification(); + application.Render(0); // start animation + application.Render(delaySeconds * 500.0f ); // 50% wait progress + + tet_infoline( "Delay at 50% - No signals to be received" ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(delaySeconds * 500.0f + durationSeconds * 50.0f ); // 100% wait, 5% progress + application.SendNotification(); + tet_infoline( "Delay at 100%, Animation at 5% - Beta signal should be received" ); + DALI_TEST_EQUALS( 0.05f, animationBeta.GetCurrentProgress(), TEST_LOCATION ); + + progressCheckBeta.CheckSignalReceived(); + progressCheckAlpha.CheckSignalNotReceived(); + + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + application.Render(durationSeconds * 200.0f ); // 25% progress + tet_infoline( "Animation at 25% - No signals to be received" ); + application.SendNotification(); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.Render(durationSeconds * 200.0f ); // 45% progress + tet_infoline( "Animation at 45% - Alpha should receive signal, Beta should not" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.45f, animationAlpha.GetCurrentProgress(), TEST_LOCATION ); + + progressCheckAlpha.CheckSignalReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + tet_infoline( "Progress check reset" ); + progressCheckAlpha.Reset(); + progressCheckBeta.Reset(); + + application.Render(static_cast(durationSeconds*150.0f)/* 60% progress */); + application.SendNotification(); + + tet_infoline( "Animation at 60%" ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*200.0f)/* 80% progress */); + application.SendNotification(); + tet_infoline( "Animation at 80%" ); + + progressCheckAlpha.CheckSignalNotReceived(); + progressCheckBeta.CheckSignalNotReceived(); + + application.Render(static_cast(durationSeconds*200.0f) + 1u/*just beyond the animation duration*/); + // We did expect the animation to finish + tet_infoline( "Animation finished" ); + + END_TEST; +} + +int UtcDaliAnimationProgressCallbackWithLoopingP(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animation = Animation::New(0.0f); + + //Set duration + const float durationSeconds(1.0f); + animation.SetDuration(durationSeconds); + + // Set Looping Count + const int loopCount( 4 ); + animation.SetLoopCount( loopCount ); + + bool finishedSignalReceived(false); + bool progressSignalReceived(false); + + AnimationFinishCheck finishCheck(finishedSignalReceived); + animation.FinishedSignal().Connect(&application, finishCheck); + + AnimationProgressCheck progressCheck(progressSignalReceived); + DevelAnimation::ProgressReachedSignal( animation ).Connect( &application, progressCheck); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "Animation Progress notification set to 50% with looping count 4" ); + DevelAnimation::SetProgressNotification( animation, 0.5f ); + + application.SendNotification(); + application.Render( ); + + progressCheck.CheckSignalNotReceived(); + + animation.Play(); + + for(int count = 0; count < loopCount; count++) + { + application.SendNotification(); + application.Render(0); // start animation + application.Render(durationSeconds*0.25*1000.0f ); // 25% progress + DALI_TEST_EQUALS( 0.25f, animation.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 25%" ); + + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 50% progress + application.SendNotification(); + tet_infoline( "Animation at 50%" ); + DALI_TEST_EQUALS( 0.5f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalReceived(); + + tet_infoline( "Progress check reset" ); + progressCheck.Reset(); + + application.Render(durationSeconds*0.25*1000.0f ); // 75% progress + tet_infoline( "Animation at 75%" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.75f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalNotReceived(); + + application.Render(durationSeconds*0.25*1000.0f ); // 100% progress + tet_infoline( "Animation at 100%" ); + application.SendNotification(); + + //Nothing check at 100% progress. cause It can be both 100% and 0%. + application.SendNotification(); + } + application.Render(10u); + application.SendNotification(); + application.Render(0u); + application.SendNotification(); + + finishCheck.CheckSignalReceived(); + + END_TEST; +} + +int UtcDaliAnimationProgressCallbackWithLoopingP2(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animation = Animation::New(0.0f); + + //Set duration + const float durationSeconds(1.0f); + animation.SetDuration(durationSeconds); + + // Set Looping Unlmited + animation.SetLooping( true ); + + bool finishedSignalReceived(false); + bool progressSignalReceived(false); + + AnimationFinishCheck finishCheck(finishedSignalReceived); + animation.FinishedSignal().Connect(&application, finishCheck); + + AnimationProgressCheck progressCheck(progressSignalReceived); + DevelAnimation::ProgressReachedSignal( animation ).Connect( &application, progressCheck); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "Animation Progress notification set to 50% with unlimited looping" ); + DevelAnimation::SetProgressNotification( animation, 0.5f ); + + application.SendNotification(); + application.Render( ); + + progressCheck.CheckSignalNotReceived(); + + animation.Play(); + + for(int count = 0; count < 4; count++) + { + application.SendNotification(); + application.Render(0); // start animation + application.Render(durationSeconds*0.25*1000.0f ); // 25% progress + DALI_TEST_EQUALS( 0.25f, animation.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 25%" ); + + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 50% progress + application.SendNotification(); + tet_infoline( "Animation at 50%" ); + DALI_TEST_EQUALS( 0.5f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalReceived(); + + tet_infoline( "Progress check reset" ); + progressCheck.Reset(); + + application.Render(durationSeconds*0.25*1000.0f ); // 75% progress + tet_infoline( "Animation at 75%" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.75f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalNotReceived(); + + application.Render(durationSeconds*0.25*1000.0f ); // 100% progress + tet_infoline( "Animation at 100%" ); + application.SendNotification(); + + //Nothing check at 100% progress. cause It can be both 100% and 0%. + finishCheck.CheckSignalNotReceived(); + application.SendNotification(); + } + finishCheck.CheckSignalNotReceived(); + + animation.SetLooping( false ); + application.Render(0u); + application.SendNotification(); + application.Render(static_cast(durationSeconds * 1000.0f) + 10u); + application.SendNotification(); + application.Render(0u); + application.SendNotification(); + + finishCheck.CheckSignalReceived(); + + END_TEST; +} + +int UtcDaliAnimationProgressCallbackNegativeSpeed(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animation = Animation::New(0.0f); + + //Set duration + const float durationSeconds(1.0f); + animation.SetDuration(durationSeconds); + + //Set speed negative + animation.SetSpeedFactor( -1.0f ); + + // Set Looping Unlmited + animation.SetLooping( true ); + + bool finishedSignalReceived(false); + bool progressSignalReceived(false); + + AnimationFinishCheck finishCheck(finishedSignalReceived); + animation.FinishedSignal().Connect(&application, finishCheck); + + AnimationProgressCheck progressCheck(progressSignalReceived); + DevelAnimation::ProgressReachedSignal( animation ).Connect( &application, progressCheck); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "Animation Progress notification set to 50%" ); + DevelAnimation::SetProgressNotification( animation, 0.5f ); + + application.SendNotification(); + application.Render( ); + + progressCheck.CheckSignalNotReceived(); + + animation.Play(); + + for(int count = 0; count < 4; count++) + { + application.SendNotification(); + application.Render(0); // start animation + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 25% progress + DALI_TEST_EQUALS( 0.75f, animation.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 25%" ); + + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 50% progress + application.SendNotification(); + tet_infoline( "Animation at 50%" ); + DALI_TEST_EQUALS( 0.5f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalReceived(); + + tet_infoline( "Progress check reset" ); + progressCheck.Reset(); + + application.Render(durationSeconds*0.25*1000.0f ); // 75% progress + tet_infoline( "Animation at 75%" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.25f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalNotReceived(); + + application.Render(durationSeconds*0.25*1000.0f ); // 100% progress + tet_infoline( "Animation at 100%" ); + application.SendNotification(); + + //Nothing check at 100% progress. cause It can be both 100% and 0%. + finishCheck.CheckSignalNotReceived(); + application.SendNotification(); + } + finishCheck.CheckSignalNotReceived(); + + animation.Stop(); + animation.SetLooping( false ); + animation.SetLoopCount( 4 ); + animation.Play(); + application.Render(0u); + application.SendNotification(); + + for(int count = 0; count < 4; count++) + { + application.SendNotification(); + application.Render(0); // start animation + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 25% progress + DALI_TEST_EQUALS( 0.75f, animation.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 25%" ); + + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 50% progress + application.SendNotification(); + tet_infoline( "Animation at 50%" ); + DALI_TEST_EQUALS( 0.5f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalReceived(); + + tet_infoline( "Progress check reset" ); + progressCheck.Reset(); + + application.Render(durationSeconds*0.25*1000.0f ); // 75% progress + tet_infoline( "Animation at 75%" ); + application.SendNotification(); + + DALI_TEST_EQUALS( 0.25f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalNotReceived(); + + application.Render(durationSeconds*0.25*1000.0f ); // 100% progress + tet_infoline( "Animation at 100%" ); + application.SendNotification(); + + //Nothing check at 100% progress. cause It can be both 100% and 0%. + application.SendNotification(); + } + application.Render(10u); + application.SendNotification(); + application.Render(0u); + application.SendNotification(); + + finishCheck.CheckSignalReceived(); + + END_TEST; } +int UtcDaliAnimationProgressCallbackInvalidSignalN(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Build the animation + Animation animation = Animation::New(0.0f); + + //Set duration + const float durationSeconds(1.0f); + animation.SetDuration(durationSeconds); + + bool finishedSignalReceived(false); + bool progressSignalReceived(false); + + AnimationFinishCheck finishCheck(finishedSignalReceived); + animation.FinishedSignal().Connect(&application, finishCheck); + + AnimationProgressCheck progressCheck(progressSignalReceived); + DevelAnimation::ProgressReachedSignal( animation ).Connect( &application, progressCheck); + application.SendNotification(); + + Vector3 targetPosition(100.0f, 100.0f, 100.0f); + animation.AnimateTo(Property(actor, Actor::Property::POSITION), targetPosition, AlphaFunction::LINEAR); + + tet_infoline( "Animation Progress PlayRange as 10% ~ 90%" ); + animation.SetPlayRange( Vector2( 0.1f, 0.9f ) ); + + tet_infoline( "Animation Progress notification set to >90% that never can notificated" ); + DevelAnimation::SetProgressNotification( animation, 0.9f + Math::MACHINE_EPSILON_1 ); + + application.SendNotification(); + application.Render( ); + + progressCheck.CheckSignalNotReceived(); + + animation.Play(); + + application.SendNotification(); + application.Render(0); // start animation + application.Render(durationSeconds*0.25*1000.0f ); // 35% progress + DALI_TEST_EQUALS( 0.35f, animation.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 35%" ); + + progressCheck.CheckSignalNotReceived(); + + application.SendNotification(); + application.Render(durationSeconds*0.25*1000.0f ); // 60% progress + application.SendNotification(); + DALI_TEST_EQUALS( 0.6f, animation.GetCurrentProgress(), TEST_LOCATION ); + + tet_infoline( "Animation at 60%" ); + + progressCheck.CheckSignalNotReceived(); + + application.Render(durationSeconds*0.25*1000.0f ); // 85% progress + tet_infoline( "Animation at 85%" ); + application.SendNotification(); + DALI_TEST_EQUALS( 0.85f, animation.GetCurrentProgress(), TEST_LOCATION ); + + progressCheck.CheckSignalNotReceived(); + + application.Render(durationSeconds*0.25*1000.0f ); // 90% progress + tet_infoline( "Animation over 90%" ); + application.SendNotification(); + + // progress never signaled because playrange is 90% + progressCheck.CheckSignalNotReceived(); + + END_TEST; +} int UtcDaliAnimationProgressCallbackLongDurationP(void) { @@ -11580,3 +12938,180 @@ int UtcDaliAnimationProgressCallbackLongDurationP(void) END_TEST; } + +int UtcDaliAnimationAnimateByInvalidParameters(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Create the animation + Animation animation = Animation::New(1.0f); + + DALI_TEST_ASSERTION( + { + // non animateable property (STRING) + animation.AnimateBy( Property( actor, Actor::Property::LAYOUT_DIRECTION ), Property::Value( "new direction" ) ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable property (MATRIX) + Property::Index index = actor.RegisterProperty( "Foobar", Property::Value( Dali::Matrix() ), Property::ANIMATABLE ); + animation.AnimateBy( Property( actor, index ), Property::Value( Property::MATRIX ) ); + }, "Property type is not animatable" ); + + // AnimateBy + DALI_TEST_ASSERTION( + { + // non animateable target (NONE) + animation.AnimateBy( Property( actor, Actor::Property::POSITION ), Property::Value() ); + }, "Target value is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (STRING) + animation.AnimateBy( Property( actor, Actor::Property::POSITION ), Property::Value("foo") ); + }, "Target value is not animatable" ); + + DALI_TEST_ASSERTION( + { + // not mathing properties (VECTOR3, FLOAT) + animation.AnimateBy( Property( actor, Actor::Property::POSITION ), Property::Value( 10.f ) ); + }, "Property and target types don't match" ); + + DALI_TEST_ASSERTION( + { + // not mathing properties (VECTOR3.A, VECTOR2) + animation.AnimateBy( Property( actor, Actor::Property::COLOR_ALPHA ), Property::Value( Property::VECTOR2 ) ); + }, "Property and target types don't match" ); + + DALI_TEST_ASSERTION( + { + // negative duration + animation.AnimateBy( Property( actor, Actor::Property::POSITION ), Property::Value( Vector3(1,2,3) ), TimePeriod(-1) ); + }, "Duration must be >=0" ); + + END_TEST; +} + +int UtcDaliAnimationAnimateToInvalidParameters(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Create the animation + Animation animation = Animation::New(1.0f); + + // AnimateTo + DALI_TEST_ASSERTION( + { + // non animateable property (MAP) + Property::Index index = actor.RegisterProperty( "Foobar", Property::Value( Property::MAP ), Property::ANIMATABLE ); + animation.AnimateTo( Property( actor, index ), Property::Value( Property::MAP ) ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (NONE) + animation.AnimateTo( Property( actor, Actor::Property::CLIPPING_MODE ), Property::Value() ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (ARRAY) + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), Property::Value( Property::ARRAY ) ); + }, "Target value is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (RECTANGLE) + animation.AnimateBy( Property( actor, Actor::Property::POSITION ), Property::Value( Rect() ) ); + }, "Target value is not animatable" ); + + DALI_TEST_ASSERTION( + { + // not mathing properties (FLOAT, INT) + animation.AnimateTo( Property( actor, Actor::Property::SCALE_Y ), Property::Value(10) ); + }, "Property and target types don't match" ); + + DALI_TEST_ASSERTION( + { + // not mathing properties (VECTOR3, VECTOR2) + animation.AnimateTo( Property( actor, Actor::Property::COLOR ), Property::Value( Property::VECTOR2 ) ); + }, "Property and target types don't match" ); + + DALI_TEST_ASSERTION( + { + // negative duration + animation.AnimateTo( Property( actor, Actor::Property::POSITION ), Property::Value( Vector3(1,2,3) ), TimePeriod(-1) ); + }, "Duration must be >=0" ); + + END_TEST; +} + +int UtcDaliAnimationAnimateBetweenInvalidParameters(void) +{ + TestApplication application; + + Actor actor = Actor::New(); + Stage::GetCurrent().Add(actor); + + // Create the animation + Animation animation = Animation::New(1.0f); + + // AnimateBetween + DALI_TEST_ASSERTION( + { + // non animateable property (ARRAY) + Property::Index index = actor.RegisterProperty( "Foobar", Property::Value( Property::ARRAY ), Property::ANIMATABLE ); + KeyFrames keyframes = KeyFrames::New(); + keyframes.Add( 0.5f, Property::Value( Property::ARRAY ) ); + animation.AnimateBetween( Property( actor, index ), keyframes ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (NONE) + KeyFrames keyframes = KeyFrames::New(); + keyframes.Add( 0.5f, Property::Value() ); + animation.AnimateBetween( Property( actor, Actor::Property::CLIPPING_MODE ), keyframes ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (EXTENTS) + KeyFrames keyframes = KeyFrames::New(); + keyframes.Add( 0.5f, Property::Value( Property::EXTENTS ) ); // throws + animation.AnimateBetween( Property( actor, Actor::Property::POSITION ), keyframes ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // non animateable target (RECTANGLE) + KeyFrames keyframes = KeyFrames::New(); + keyframes.Add( 0.5f, Property::Value( Property::MAP ) ); // throws + animation.AnimateBetween( Property( actor, Actor::Property::POSITION ), keyframes ); + }, "Property type is not animatable" ); + + DALI_TEST_ASSERTION( + { + // not mathing properties (VECTOR2, VECTOR4) + KeyFrames keyframes = KeyFrames::New(); + keyframes.Add( 0.5f, Property::Value( Vector4( 1, 2, 3, 4 ) ) ); + animation.AnimateBetween( Property( actor, Actor::Property::MAXIMUM_SIZE ), keyframes ); + }, "Property and target types don't match" ); + + DALI_TEST_ASSERTION( + { + // negative duration + KeyFrames keyframes = KeyFrames::New(); + keyframes.Add( 0.5f, Property::Value(Vector3( 1, 2, 3 ) ) ); + animation.AnimateBetween( Property( actor, Actor::Property::POSITION ), keyframes, TimePeriod(-1) ); + }, "Duration must be >=0" ); + + END_TEST; +}