X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Futc-Dali-TextLabel.cpp;h=67dc221b4e52891fefde9c917a2ed33eb83c6791;hp=1087e13f2e6fb24b04f64f8fa03b4ef673e86f06;hb=aa0a27e9a51008fe8d557cd85ad31b057724aa41;hpb=efe1afb741becf694eceb698245ac76afa04b279 diff --git a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp index 1087e13..67dc221 100755 --- a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #include using namespace Dali; @@ -70,55 +71,74 @@ const int DEFAULT_RENDERING_BACKEND = Dali::Toolkit::Text::DEFAULT_RENDERING_BAC const std::string DEFAULT_FONT_DIR( "/resources/fonts" ); const unsigned int EMOJI_FONT_SIZE = 3840u; // 60 * 64 -bool DaliTestCheckMaps( const Property::Map& fontStyleMapGet, const Property::Map& fontStyleMapSet ) +bool DaliTestCheckMaps( const Property::Map& mapGet, const Property::Map& mapSet, const std::vector& indexConversionTable = std::vector() ) { - if( fontStyleMapGet.Count() == fontStyleMapSet.Count() ) + const Property::Map::SizeType size = mapGet.Count(); + + if( size == mapSet.Count() ) { - for( unsigned int index = 0u; index < fontStyleMapGet.Count(); ++index ) + for( unsigned int index = 0u; index < size; ++index ) { - const KeyValuePair& valueGet = fontStyleMapGet.GetKeyValue( index ); + const KeyValuePair& valueGet = mapGet.GetKeyValue( index ); - Property::Value* valueSet = NULL; - if ( valueGet.first.type == Property::Key::INDEX ) - { - valueSet = fontStyleMapSet.Find( valueGet.first.indexKey ); - } - else + // Find the keys of the 'get' map + Property::Index indexKey = valueGet.first.indexKey; + std::string stringKey = valueGet.first.stringKey; + + if( !indexConversionTable.empty() ) { - // Get Key is a string so searching Set Map for a string key - valueSet = fontStyleMapSet.Find( valueGet.first.stringKey ); + if( stringKey.empty() ) + { + stringKey = indexConversionTable[ indexKey ]; + } + + if( ( indexKey == Property::INVALID_INDEX ) && !stringKey.empty() ) + { + Property::Index index = 0u; + for( auto key : indexConversionTable ) + { + if( key == stringKey ) + { + indexKey = index; + break; + } + ++index; + } + } } - if( NULL != valueSet ) + const Property::Value* const valueSet = mapSet.Find( indexKey, stringKey ); + + if( nullptr != valueSet ) { - if( valueSet->GetType() == Dali::Property::STRING && ( valueGet.second.Get() != valueSet->Get() ) ) + if( ( valueSet->GetType() == Dali::Property::STRING ) && ( valueGet.second.Get() != valueSet->Get() ) ) { tet_printf( "Value got : [%s], expected : [%s]", valueGet.second.Get().c_str(), valueSet->Get().c_str() ); return false; } - else if( valueSet->GetType() == Dali::Property::BOOLEAN && ( valueGet.second.Get() != valueSet->Get() ) ) + else if( ( valueSet->GetType() == Dali::Property::BOOLEAN ) && ( valueGet.second.Get() != valueSet->Get() ) ) { tet_printf( "Value got : [%d], expected : [%d]", valueGet.second.Get(), valueSet->Get() ); return false; } - else if( valueSet->GetType() == Dali::Property::INTEGER && ( valueGet.second.Get() != valueSet->Get() ) ) + else if( ( valueSet->GetType() == Dali::Property::INTEGER ) && ( valueGet.second.Get() != valueSet->Get() ) ) { tet_printf( "Value got : [%d], expected : [%d]", valueGet.second.Get(), valueSet->Get() ); return false; } - else if( valueSet->GetType() == Dali::Property::FLOAT && ( valueGet.second.Get() != valueSet->Get() ) ) + else if( ( valueSet->GetType() == Dali::Property::FLOAT ) && ( valueGet.second.Get() != valueSet->Get() ) ) { tet_printf( "Value got : [%f], expected : [%f]", valueGet.second.Get(), valueSet->Get() ); return false; } - else if( valueSet->GetType() == Dali::Property::VECTOR2 && ( valueGet.second.Get() != valueSet->Get() ) ) + else if( ( valueSet->GetType() == Dali::Property::VECTOR2 ) && ( valueGet.second.Get() != valueSet->Get() ) ) { Vector2 vector2Get = valueGet.second.Get(); Vector2 vector2Set = valueSet->Get(); tet_printf( "Value got : [%f, %f], expected : [%f, %f]", vector2Get.x, vector2Get.y, vector2Set.x, vector2Set.y ); return false; } - else if( valueSet->GetType() == Dali::Property::VECTOR4 && ( valueGet.second.Get() != valueSet->Get() ) ) + else if( ( valueSet->GetType() == Dali::Property::VECTOR4 ) && ( valueGet.second.Get() != valueSet->Get() ) ) { Vector4 vector4Get = valueGet.second.Get(); Vector4 vector4Set = valueSet->Get(); @@ -460,13 +480,32 @@ int UtcDaliToolkitTextLabelSetPropertyP(void) DALI_TEST_EQUALS( DaliTestCheckMaps( underlineMapGet, underlineMapSet ), true, TEST_LOCATION ); underlineMapSet.Clear(); + underlineMapSet.Insert( Toolkit::DevelText::Underline::Property::ENABLE, "true" ); + underlineMapSet.Insert( Toolkit::DevelText::Underline::Property::COLOR, "green" ); + underlineMapSet.Insert( Toolkit::DevelText::Underline::Property::HEIGHT, "2" ); + + label.SetProperty( TextLabel::Property::UNDERLINE, underlineMapSet ); + + application.SendNotification(); + application.Render(); + + underlineMapGet = label.GetProperty( TextLabel::Property::UNDERLINE ); + DALI_TEST_EQUALS( underlineMapGet.Count(), underlineMapSet.Count(), TEST_LOCATION ); + std::vector underlineIndicesConversionTable = { "enable", "color", "height" }; + DALI_TEST_EQUALS( DaliTestCheckMaps( underlineMapGet, underlineMapSet, underlineIndicesConversionTable ), true, TEST_LOCATION ); + + underlineMapSet.Clear(); Property::Map underlineDisabledMapGet; underlineDisabledMapGet.Insert( "enable", "false" ); - underlineDisabledMapGet.Insert( "color", "red" ); - underlineDisabledMapGet.Insert( "height", "1" ); + underlineDisabledMapGet.Insert( "color", "green" ); + underlineDisabledMapGet.Insert( "height", "2" ); label.SetProperty( TextLabel::Property::UNDERLINE, underlineMapSet ); + + application.SendNotification(); + application.Render(); + underlineMapGet = label.GetProperty( TextLabel::Property::UNDERLINE ); DALI_TEST_EQUALS( underlineMapGet.Count(), underlineDisabledMapGet.Count(), TEST_LOCATION ); DALI_TEST_EQUALS( DaliTestCheckMaps( underlineMapGet, underlineDisabledMapGet ), true, TEST_LOCATION ); @@ -487,10 +526,29 @@ int UtcDaliToolkitTextLabelSetPropertyP(void) DALI_TEST_EQUALS( DaliTestCheckMaps( shadowMapGet, shadowMapSet ), true, TEST_LOCATION ); shadowMapSet.Clear(); + + shadowMapSet.Insert( Toolkit::DevelText::Shadow::Property::COLOR, Color::BLUE ); + shadowMapSet.Insert( Toolkit::DevelText::Shadow::Property::OFFSET, "3.0 3.0" ); + shadowMapSet.Insert( Toolkit::DevelText::Shadow::Property::BLUR_RADIUS, 3.0f ); + + label.SetProperty( TextLabel::Property::SHADOW, shadowMapSet ); + + // Replace the offset (string) by a vector2 + shadowMapSet.Clear(); + shadowMapSet.Insert( Toolkit::DevelText::Shadow::Property::COLOR, Color::BLUE ); + shadowMapSet.Insert( Toolkit::DevelText::Shadow::Property::OFFSET, Vector2( 3.0, 3.0 ) ); + shadowMapSet.Insert( Toolkit::DevelText::Shadow::Property::BLUR_RADIUS, 3.0f ); + + shadowMapGet = label.GetProperty( TextLabel::Property::SHADOW ); + DALI_TEST_EQUALS( shadowMapGet.Count(), shadowMapSet.Count(), TEST_LOCATION ); + std::vector shadowIndicesConversionTable = { "color", "offset", "blurRadius" }; + DALI_TEST_EQUALS( DaliTestCheckMaps( shadowMapGet, shadowMapSet, shadowIndicesConversionTable ), true, TEST_LOCATION ); + + shadowMapSet.Clear(); Property::Map shadowDisabledMapGet; - shadowDisabledMapGet.Insert( "color", Color::GREEN ); + shadowDisabledMapGet.Insert( "color", Color::BLUE ); shadowDisabledMapGet.Insert( "offset", Vector2(0.0f, 0.0f) ); - shadowDisabledMapGet.Insert( "blurRadius", 5.0f ); + shadowDisabledMapGet.Insert( "blurRadius", 3.0f ); label.SetProperty( TextLabel::Property::SHADOW, shadowMapSet ); @@ -521,6 +579,16 @@ int UtcDaliToolkitTextLabelSetPropertyP(void) DALI_TEST_EQUALS( outlineMapGet.Count(), outlineMapSet.Count(), TEST_LOCATION ); DALI_TEST_EQUALS( DaliTestCheckMaps( outlineMapGet, outlineMapSet ), true, TEST_LOCATION ); + outlineMapSet.Clear(); + outlineMapSet[Toolkit::DevelText::Outline::Property::COLOR] = Color::BLUE; + outlineMapSet[Toolkit::DevelText::Outline::Property::WIDTH] = 3.0f; + label.SetProperty( TextLabel::Property::OUTLINE, outlineMapSet ); + + outlineMapGet = label.GetProperty( TextLabel::Property::OUTLINE ); + DALI_TEST_EQUALS( outlineMapGet.Count(), outlineMapSet.Count(), TEST_LOCATION ); + std::vector outlineIndicesConversionTable = { "color", "width" }; + DALI_TEST_EQUALS( DaliTestCheckMaps( outlineMapGet, outlineMapSet, outlineIndicesConversionTable ), true, TEST_LOCATION ); + // Check the background property Property::Map backgroundMapSet; Property::Map backgroundMapGet; @@ -533,6 +601,16 @@ int UtcDaliToolkitTextLabelSetPropertyP(void) DALI_TEST_EQUALS( backgroundMapGet.Count(), backgroundMapSet.Count(), TEST_LOCATION ); DALI_TEST_EQUALS( DaliTestCheckMaps( backgroundMapGet, backgroundMapSet ), true, TEST_LOCATION ); + backgroundMapSet.Clear(); + backgroundMapSet[Toolkit::DevelText::Background::Property::ENABLE] = true; + backgroundMapSet[Toolkit::DevelText::Background::Property::COLOR] = Color::GREEN; + label.SetProperty( DevelTextLabel::Property::BACKGROUND, backgroundMapSet ); + + backgroundMapGet = label.GetProperty( DevelTextLabel::Property::BACKGROUND ); + DALI_TEST_EQUALS( backgroundMapGet.Count(), backgroundMapSet.Count(), TEST_LOCATION ); + std::vector backgroundIndicesConversionTable = { "enable", "color" }; + DALI_TEST_EQUALS( DaliTestCheckMaps( backgroundMapGet, backgroundMapSet, backgroundIndicesConversionTable ), true, TEST_LOCATION ); + // Check the pixel size of font label.SetProperty( TextLabel::Property::PIXEL_SIZE, 20.f ); DALI_TEST_EQUALS( label.GetProperty( TextLabel::Property::PIXEL_SIZE ), 20.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION );