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-ImageView.cpp;h=2be7c5a76232a09d3ac4be7e61e2aa77261c598a;hp=7d709d85b82a8aff9f079700be42630d6bd69d58;hb=HEAD;hpb=4af8225dd04de11ab0085f2cab0e55f43eddf275 diff --git a/automated-tests/src/dali-toolkit/utc-Dali-ImageView.cpp b/automated-tests/src/dali-toolkit/utc-Dali-ImageView.cpp index 7d709d8..4eb38b8 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-ImageView.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-ImageView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2024 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,26 +15,32 @@ * */ +#include +#include + // Need to override adaptor classes for toolkit test harness, so include // test harness headers before dali headers. + #include #include +#include +#include "dummy-control.h" + +#include +#include #include -#include #include #include +#include #include -#include +#include #include +#include #include - -#include -#include -#include - - -#include "dummy-control.h" +#include +#include +#include using namespace Dali; using namespace Toolkit; @@ -51,41 +57,22 @@ void utc_dali_toolkit_image_view_cleanup(void) namespace { +const char* TEST_IMAGE_FILE_NAME = "gallery_image_01.jpg"; +const char* TEST_IMAGE_FILE_NAME2 = "gallery_image_02.jpg"; -const char* VERTEX_SHADER = DALI_COMPOSE_SHADER( - attribute mediump vec2 aPosition;\n - varying mediump vec2 vTexCoord;\n - uniform mediump mat4 uMvpMatrix;\n - uniform mediump vec3 uSize;\n - \n - void main()\n - {\n - mediump vec4 vertexPosition = vec4(aPosition, 0.0, 1.0);\n - vertexPosition.xyz *= uSize;\n - vertexPosition = uMvpMatrix * vertexPosition;\n - \n - vTexCoord = aPosition + vec2(0.5);\n - gl_Position = vertexPosition;\n - }\n -); - -const char* FRAGMENT_SHADER = DALI_COMPOSE_SHADER( - varying mediump vec2 vTexCoord;\n - uniform sampler2D sTexture;\n - uniform lowp vec4 uColor;\n - \n - void main()\n - {\n - gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor;\n - }\n -); - -const char* TEST_IMAGE_FILE_NAME = "gallery_image_01.jpg"; -const char* TEST_IMAGE_FILE_NAME2 = "gallery_image_02.jpg"; - +// resolution: 1024*1024 const char* TEST_IMAGE_1 = TEST_RESOURCE_DIR "/TB-gloss.png"; const char* TEST_IMAGE_2 = TEST_RESOURCE_DIR "/tb-norm.png"; +const char* TEST_BROKEN_IMAGE_DEFAULT = TEST_RESOURCE_DIR "/broken.png"; +const char* TEST_BROKEN_IMAGE_S = TEST_RESOURCE_DIR "/broken_s.9.png"; +const char* TEST_BROKEN_IMAGE_M = TEST_RESOURCE_DIR "/broken_m.9.png"; +const char* TEST_BROKEN_IMAGE_L = TEST_RESOURCE_DIR "/broken_l.9.png"; +const char* TEST_BROKEN_IMAGE_01 = TEST_RESOURCE_DIR "/button-up.9.png"; +const char* TEST_BROKEN_IMAGE_02 = TEST_RESOURCE_DIR "/heartsframe.9.png"; + +const char* TEST_INVALID_NPATCH_FILE_NAME_01 = "invalid1.9.png"; + // resolution: 34*34, pixel format: RGBA8888 static const char* gImage_34_RGBA = TEST_RESOURCE_DIR "/icon-edit.png"; // resolution: 600*600, pixel format: RGB888 @@ -94,69 +81,51 @@ static const char* gImage_600_RGB = TEST_RESOURCE_DIR "/test-image-600.jpg"; // resolution: 50*50, frame count: 4, frame delay: 0.2 second for each frame const char* TEST_GIF_FILE_NAME = TEST_RESOURCE_DIR "/anim.gif"; -void TestImage( ImageView imageView, BufferImage image ) -{ - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - - Property::Map map; - DALI_TEST_CHECK( value.Get( map ) ); - - DALI_TEST_CHECK( map.Find( "width" ) ); - DALI_TEST_CHECK( map.Find( "height" ) ); - DALI_TEST_CHECK( map.Find( "type" ) ); +const char* TEST_SVG_FILE_NAME = TEST_RESOURCE_DIR "/svg1.svg"; +const char* TEST_ANIMATED_VECTOR_IMAGE_FILE_NAME = TEST_RESOURCE_DIR "/insta_camera.json"; +const char* TEST_WEBP_FILE_NAME = TEST_RESOURCE_DIR "/dali-logo.webp"; - int width = 0; - DALI_TEST_CHECK( map[ "width" ].Get( width ) ); - DALI_TEST_EQUALS( (unsigned int)width, image.GetWidth(), TEST_LOCATION ); +const char* TEST_OVERWRITABLE_IMAGE_FILE_NAME = TEST_RESOURCE_DIR "/overwritable-image.jpg"; - int height = 0; - DALI_TEST_CHECK( map[ "height" ].Get( height ) ); - DALI_TEST_EQUALS( (unsigned int)height, image.GetHeight(), TEST_LOCATION ); +void TestUrl(ImageView imageView, const std::string url) +{ + Property::Value value = imageView.GetProperty(imageView.GetPropertyIndex("image")); - std::string type; - DALI_TEST_CHECK( map[ "type" ].Get( type ) ); - DALI_TEST_EQUALS( type, "BufferImage", TEST_LOCATION ); + std::string urlActual; + DALI_TEST_CHECK(value.Get(urlActual)); + DALI_TEST_EQUALS(urlActual, url, TEST_LOCATION); } -void TestImage( ImageView imageView, ResourceImage image ) +void OverwriteImage(const char* sourceFilename) { - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - - Property::Map map; - DALI_TEST_CHECK( value.Get( map ) ); - - if( map.Find( "width" ) ) - { - int width = 0; - DALI_TEST_CHECK( map[ "width" ].Get( width ) ); - DALI_TEST_EQUALS( (unsigned int)width, image.GetWidth(), TEST_LOCATION ); - } - - if( map.Find( "height" ) ) + FILE* fpOut = fopen(TEST_OVERWRITABLE_IMAGE_FILE_NAME, "wb"); + DALI_TEST_CHECK(fpOut); + if(fpOut) { - int height = 0; - DALI_TEST_CHECK( map[ "height" ].Get( height ) ); - DALI_TEST_EQUALS( (unsigned int)height, image.GetHeight(), TEST_LOCATION ); + FILE* fpIn = fopen(sourceFilename, "rb"); + if(fpIn) + { + fseek(fpIn, 0, SEEK_END); + size_t size = ftell(fpIn); + + tet_printf("Open %s success! file size : %zu byte\n", sourceFilename, size); + Dali::Vector data; + data.Resize(size); + fseek(fpIn, 0, SEEK_SET); + size_t realSize = fread(data.Begin(), sizeof(uint8_t), size, fpIn); + fclose(fpIn); + data.Resize(realSize); + + // Overwrite + fwrite(data.Begin(), sizeof(uint8_t), size, fpOut); + } + else + { + tet_printf("Open %s failed! write invalid\n", sourceFilename); + fprintf(fpOut, "invalid\n"); + } + fclose(fpOut); } - - DALI_TEST_CHECK( map.Find( "type" ) ); - - std::string type; - DALI_TEST_CHECK( map[ "type" ].Get( type ) ); - DALI_TEST_EQUALS( type, "ResourceImage", TEST_LOCATION ); - - std::string filename; - DALI_TEST_CHECK( map[ "filename" ].Get( filename ) ); - DALI_TEST_EQUALS( filename, image.GetUrl(), TEST_LOCATION ); -} - -void TestUrl( ImageView imageView, const std::string url ) -{ - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - - std::string urlActual; - DALI_TEST_CHECK( value.Get( urlActual ) ); - DALI_TEST_EQUALS( urlActual, url, TEST_LOCATION ); } } // namespace @@ -167,20 +136,7 @@ int UtcDaliImageViewNewP(void) ImageView imageView = ImageView::New(); - DALI_TEST_CHECK( imageView ); - - END_TEST; -} - -int UtcDaliImageViewNewImageP(void) -{ - ToolkitTestApplication application; - - BufferImage image = CreateBufferImage( 100, 200, Vector4( 1.f, 1.f, 1.f, 1.f ) ); - ImageView imageView = ImageView::New( image ); - - DALI_TEST_CHECK( imageView ); - TestImage( imageView, image ); + DALI_TEST_CHECK(imageView); END_TEST; } @@ -189,10 +145,10 @@ int UtcDaliImageViewNewUrlP(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME ); - DALI_TEST_CHECK( imageView ); + ImageView imageView = ImageView::New(TEST_IMAGE_FILE_NAME); + DALI_TEST_CHECK(imageView); - TestUrl( imageView, TEST_IMAGE_FILE_NAME ); + TestUrl(imageView, TEST_IMAGE_FILE_NAME); END_TEST; } @@ -203,7 +159,7 @@ int UtcDaliImageViewConstructorP(void) ImageView imageView; - DALI_TEST_CHECK( !imageView ); + DALI_TEST_CHECK(!imageView); END_TEST; } @@ -215,164 +171,124 @@ int UtcDaliImageViewCopyConstructorP(void) // Initialize an object, ref count == 1 ImageView imageView = ImageView::New(); - ImageView copy( imageView ); - DALI_TEST_CHECK( copy ); + ImageView copy(imageView); + DALI_TEST_CHECK(copy); END_TEST; } -int UtcDaliImageViewAssignmentOperatorP(void) +int UtcDaliImageViewMoveConstructor(void) { ToolkitTestApplication application; ImageView imageView = ImageView::New(); + DALI_TEST_EQUALS(1, imageView.GetBaseObject().ReferenceCount(), TEST_LOCATION); + imageView.SetProperty(Actor::Property::SENSITIVE, false); + DALI_TEST_CHECK(false == imageView.GetProperty(Actor::Property::SENSITIVE)); - ImageView copy( imageView ); - DALI_TEST_CHECK( copy ); - DALI_TEST_EQUALS( imageView, copy, TEST_LOCATION ); + ImageView moved = std::move(imageView); + DALI_TEST_CHECK(moved); + DALI_TEST_EQUALS(1, moved.GetBaseObject().ReferenceCount(), TEST_LOCATION); + DALI_TEST_CHECK(false == moved.GetProperty(Actor::Property::SENSITIVE)); + DALI_TEST_CHECK(!imageView); END_TEST; } -int UtcDaliImageViewDownCastP(void) +int UtcDaliImageViewAssignmentOperatorP(void) { ToolkitTestApplication application; ImageView imageView = ImageView::New(); - BaseHandle object(imageView); - - ImageView imageView2 = ImageView::DownCast( object ); - DALI_TEST_CHECK(imageView2); - - ImageView imageView3 = DownCast< ImageView >( object ); - DALI_TEST_CHECK(imageView3); + ImageView copy(imageView); + DALI_TEST_CHECK(copy); + DALI_TEST_EQUALS(imageView, copy, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewDownCastN(void) +int UtcDaliImageViewMoveAssignment(void) { ToolkitTestApplication application; - BaseHandle unInitializedObject; - - ImageView imageView1 = ImageView::DownCast( unInitializedObject ); - DALI_TEST_CHECK( !imageView1 ); + ImageView imageView = ImageView::New(); + DALI_TEST_EQUALS(1, imageView.GetBaseObject().ReferenceCount(), TEST_LOCATION); + imageView.SetProperty(Actor::Property::SENSITIVE, false); + DALI_TEST_CHECK(false == imageView.GetProperty(Actor::Property::SENSITIVE)); - ImageView imageView2 = DownCast< ImageView >( unInitializedObject ); - DALI_TEST_CHECK( !imageView2 ); + ImageView moved; + moved = std::move(imageView); + DALI_TEST_CHECK(moved); + DALI_TEST_EQUALS(1, moved.GetBaseObject().ReferenceCount(), TEST_LOCATION); + DALI_TEST_CHECK(false == moved.GetProperty(Actor::Property::SENSITIVE)); + DALI_TEST_CHECK(!imageView); END_TEST; } -int UtcDaliImageViewTypeRegistry(void) +int UtcDaliImageViewDownCastP(void) { ToolkitTestApplication application; - TypeRegistry typeRegistry = TypeRegistry::Get(); - DALI_TEST_CHECK( typeRegistry ); + ImageView imageView = ImageView::New(); - TypeInfo typeInfo = typeRegistry.GetTypeInfo( "ImageView" ); - DALI_TEST_CHECK( typeInfo ); + BaseHandle object(imageView); - BaseHandle handle = typeInfo.CreateInstance(); - DALI_TEST_CHECK( handle ); + ImageView imageView2 = ImageView::DownCast(object); + DALI_TEST_CHECK(imageView2); - ImageView imageView = ImageView::DownCast( handle ); - DALI_TEST_CHECK( imageView ); + ImageView imageView3 = DownCast(object); + DALI_TEST_CHECK(imageView3); END_TEST; } -int UtcDaliImageViewSetGetProperty01(void) +int UtcDaliImageViewDownCastN(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + BaseHandle unInitializedObject; - Property::Index idx = imageView.GetPropertyIndex( "image" ); - DALI_TEST_EQUALS( idx, (Property::Index)ImageView::Property::IMAGE, TEST_LOCATION ); + ImageView imageView1 = ImageView::DownCast(unInitializedObject); + DALI_TEST_CHECK(!imageView1); - imageView.SetProperty( idx, TEST_IMAGE_FILE_NAME ); - TestUrl( imageView, TEST_IMAGE_FILE_NAME ); + ImageView imageView2 = DownCast(unInitializedObject); + DALI_TEST_CHECK(!imageView2); END_TEST; } -int UtcDaliImageViewSetGetProperty02(void) +int UtcDaliImageViewTypeRegistry(void) { ToolkitTestApplication application; - Image image = CreateBufferImage( 10, 10, Color::WHITE ); - ImageView imageView = ImageView::New(image); - Vector4 fullImageRect( 0.f, 0.f, 1.f, 1.f ); - - Stage::GetCurrent().Add( imageView ); - - application.SendNotification(); - application.Render(); - TestGlAbstraction& gl = application.GetGlAbstraction(); - - Vector4 pixelAreaUniform; - DALI_TEST_CHECK( gl.GetUniformValue( "pixelArea", pixelAreaUniform ) ); - DALI_TEST_EQUALS( pixelAreaUniform, fullImageRect, TEST_LOCATION ); - - Property::Value value = imageView.GetProperty( ImageView::Property::PIXEL_AREA ); - Vector4 pixelAreaValue; - DALI_TEST_CHECK( value.Get(pixelAreaValue) ); - DALI_TEST_EQUALS( pixelAreaValue, fullImageRect, TEST_LOCATION ); - - Vector4 pixelAreaSet( 0.2f, 0.2f, 0.3f, 0.3f ); - imageView.SetProperty( ImageView::Property::PIXEL_AREA, pixelAreaSet); + TypeRegistry typeRegistry = TypeRegistry::Get(); + DALI_TEST_CHECK(typeRegistry); - application.SendNotification(); - application.Render(); + TypeInfo typeInfo = typeRegistry.GetTypeInfo("ImageView"); + DALI_TEST_CHECK(typeInfo); - value = imageView.GetProperty( ImageView::Property::PIXEL_AREA ); - value.Get(pixelAreaValue); - DALI_TEST_EQUALS( pixelAreaValue, pixelAreaSet, TEST_LOCATION ); + BaseHandle handle = typeInfo.CreateInstance(); + DALI_TEST_CHECK(handle); - DALI_TEST_CHECK( gl.GetUniformValue( "pixelArea", pixelAreaUniform ) ); - DALI_TEST_EQUALS( pixelAreaUniform, pixelAreaSet, TEST_LOCATION ); + ImageView imageView = ImageView::DownCast(handle); + DALI_TEST_CHECK(imageView); END_TEST; } -int UtcDaliImageViewSetGetProperty03(void) +int UtcDaliImageViewSetGetProperty01(void) { ToolkitTestApplication application; - Image image = CreateBufferImage( 10, 10, Color::WHITE ); - ImageView imageView = ImageView::New(image); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(); - - // conventional alpha blending - Renderer renderer = imageView.GetRendererAt( 0 ); - Property::Value value = renderer.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - bool enable; - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); - - // pre-multiplied alpha blending - imageView.SetProperty( Toolkit::ImageView::Property::PRE_MULTIPLIED_ALPHA, true ); - application.SendNotification(); - application.Render(); + ImageView imageView = ImageView::New(); - int srcFactorRgb = renderer.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_RGB ); - int destFactorRgb = renderer.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_RGB ); - int srcFactorAlpha = renderer.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_ALPHA ); - int destFactorAlpha = renderer.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_ALPHA ); - DALI_TEST_CHECK( srcFactorRgb == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA ); - DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA ); + Property::Index idx = imageView.GetPropertyIndex("image"); + DALI_TEST_EQUALS(idx, (Property::Index)ImageView::Property::IMAGE, TEST_LOCATION); - value = renderer.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); + imageView.SetProperty(idx, TEST_IMAGE_FILE_NAME); + TestUrl(imageView, TEST_IMAGE_FILE_NAME); END_TEST; } @@ -382,110 +298,110 @@ int UtcDaliImageViewPreMultipliedAlphaPng(void) ToolkitTestApplication application; // Set up trace debug - TestGlAbstraction& gl = application.GetGlAbstraction(); - TraceCallStack& textureTrace = gl.GetTextureTrace(); - textureTrace.Enable( true ); + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); Property::Map imageMap; - imageMap[ ImageVisual::Property::URL ] = gImage_34_RGBA; - imageMap[ ImageVisual::Property::RELEASE_POLICY] = ImageVisual::ReleasePolicy::NEVER; // To keep the texture cache + imageMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageMap[ImageVisual::Property::RELEASE_POLICY] = ImageVisual::ReleasePolicy::NEVER; // To keep the texture cache ImageView imageView1 = ImageView::New(); - imageView1.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageView1.SetProperty(ImageView::Property::IMAGE, imageMap); - Stage::GetCurrent().Add( imageView1 ); + application.GetScene().Add(imageView1); - Property::Value value = imageView1.GetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA ); - bool enable; - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); // Default value is true + Property::Value value = imageView1.GetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA); + bool enable; + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(enable); // Default value is true // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(); - value = imageView1.GetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); // Keep true + value = imageView1.GetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(enable); // Keep true // conventional alpha blending - Renderer renderer1 = imageView1.GetRendererAt( 0 ); - value = renderer1.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); - - int srcFactorRgb = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_RGB ); - int destFactorRgb = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_RGB ); - int srcFactorAlpha = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_ALPHA ); - int destFactorAlpha = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_ALPHA ); - DALI_TEST_CHECK( srcFactorRgb == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA ); - DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA ); - - DALI_TEST_EQUALS( textureTrace.FindMethod("GenTextures"), true, TEST_LOCATION ); // A new texture should be generated. + Renderer renderer1 = imageView1.GetRendererAt(0); + value = renderer1.GetProperty(Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(enable); + + int srcFactorRgb = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_RGB); + int destFactorRgb = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_RGB); + int srcFactorAlpha = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_ALPHA); + int destFactorAlpha = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_ALPHA); + DALI_TEST_CHECK(srcFactorRgb == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA); + DALI_TEST_CHECK(srcFactorAlpha == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA); + + DALI_TEST_EQUALS(textureTrace.FindMethod("GenTextures"), true, TEST_LOCATION); // A new texture should be generated. textureTrace.Reset(); // Disable pre-multiplied alpha blending - imageView1.SetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA, false ); + imageView1.SetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA, false); // Reload the image Property::Map attributes; - DevelControl::DoAction( imageView1, ImageView::Property::IMAGE, DevelImageVisual::Action::RELOAD, attributes ); + DevelControl::DoAction(imageView1, ImageView::Property::IMAGE, DevelImageVisual::Action::RELOAD, attributes); // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(); - value = imageView1.GetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( !enable ); + value = imageView1.GetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(!enable); // conventional alpha blending - value = renderer1.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( !enable ); - - srcFactorRgb = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_RGB ); - destFactorRgb = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_RGB ); - srcFactorAlpha = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_ALPHA ); - destFactorAlpha = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_ALPHA ); - DALI_TEST_CHECK( srcFactorRgb == BlendFactor::SRC_ALPHA ); - DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA ); - DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA ); - - DALI_TEST_EQUALS( textureTrace.FindMethod("GenTextures"), true, TEST_LOCATION ); // A new texture should be generated. + value = renderer1.GetProperty(Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(!enable); + + srcFactorRgb = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_RGB); + destFactorRgb = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_RGB); + srcFactorAlpha = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_ALPHA); + destFactorAlpha = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_ALPHA); + DALI_TEST_CHECK(srcFactorRgb == BlendFactor::SRC_ALPHA); + DALI_TEST_CHECK(destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA); + DALI_TEST_CHECK(srcFactorAlpha == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA); + + DALI_TEST_EQUALS(textureTrace.FindMethod("GenTextures"), true, TEST_LOCATION); // A new texture should be generated. textureTrace.Reset(); // Make a new ImageView using the same image ImageView imageView2 = ImageView::New(); - imageView2.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageView2.SetProperty(ImageView::Property::IMAGE, imageMap); - Stage::GetCurrent().Add( imageView2 ); + application.GetScene().Add(imageView2); application.SendNotification(); application.Render(); - Renderer renderer2 = imageView2.GetRendererAt( 0 ); - value = renderer2.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); + Renderer renderer2 = imageView2.GetRendererAt(0); + value = renderer2.GetProperty(Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(enable); - srcFactorRgb = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_RGB ); - destFactorRgb = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_RGB ); - srcFactorAlpha = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_ALPHA ); - destFactorAlpha = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_ALPHA ); - DALI_TEST_CHECK( srcFactorRgb == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA ); - DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA ); + srcFactorRgb = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_RGB); + destFactorRgb = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_RGB); + srcFactorAlpha = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_ALPHA); + destFactorAlpha = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_ALPHA); + DALI_TEST_CHECK(srcFactorRgb == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA); + DALI_TEST_CHECK(srcFactorAlpha == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA); - DALI_TEST_EQUALS( textureTrace.FindMethod("GenTextures"), false, TEST_LOCATION ); // The cached texture should be used. + DALI_TEST_EQUALS(textureTrace.FindMethod("GenTextures"), false, TEST_LOCATION); // The cached texture should be used. END_TEST; } @@ -495,83 +411,83 @@ int UtcDaliImageViewPreMultipliedAlphaJpg(void) ToolkitTestApplication application; // Set up trace debug - TestGlAbstraction& gl = application.GetGlAbstraction(); - TraceCallStack& textureTrace = gl.GetTextureTrace(); - textureTrace.Enable( true ); + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); Property::Map imageMap; - imageMap[ ImageVisual::Property::URL ] = gImage_600_RGB; - imageMap[ ImageVisual::Property::RELEASE_POLICY] = ImageVisual::ReleasePolicy::NEVER; // To keep the texture cache + imageMap[ImageVisual::Property::URL] = gImage_600_RGB; + imageMap[ImageVisual::Property::RELEASE_POLICY] = ImageVisual::ReleasePolicy::NEVER; // To keep the texture cache ImageView imageView1 = ImageView::New(); - imageView1.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageView1.SetProperty(ImageView::Property::IMAGE, imageMap); - Stage::GetCurrent().Add( imageView1 ); + application.GetScene().Add(imageView1); - Property::Value value = imageView1.GetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA ); - bool enable; - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( enable ); // Default value is true + Property::Value value = imageView1.GetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA); + bool enable; + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(enable); // Default value is true // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(); - value = imageView1.GetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( !enable ); // Should be false after loading + value = imageView1.GetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(!enable); // Should be false after loading // conventional alpha blending - Renderer renderer1 = imageView1.GetRendererAt( 0 ); - value = renderer1.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( !enable ); - - int srcFactorRgb = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_RGB ); - int destFactorRgb = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_RGB ); - int srcFactorAlpha = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_ALPHA ); - int destFactorAlpha = renderer1.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_ALPHA ); - DALI_TEST_CHECK( srcFactorRgb == BlendFactor::SRC_ALPHA ); - DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA ); - DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA ); - - DALI_TEST_EQUALS( textureTrace.FindMethod("GenTextures"), true, TEST_LOCATION ); // A new texture should be generated. + Renderer renderer1 = imageView1.GetRendererAt(0); + value = renderer1.GetProperty(Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(!enable); + + int srcFactorRgb = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_RGB); + int destFactorRgb = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_RGB); + int srcFactorAlpha = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_ALPHA); + int destFactorAlpha = renderer1.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_ALPHA); + DALI_TEST_CHECK(srcFactorRgb == BlendFactor::SRC_ALPHA); + DALI_TEST_CHECK(destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA); + DALI_TEST_CHECK(srcFactorAlpha == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA); + + DALI_TEST_EQUALS(textureTrace.FindMethod("GenTextures"), true, TEST_LOCATION); // A new texture should be generated. textureTrace.Reset(); ImageView imageView2 = ImageView::New(); - imageView2.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageView2.SetProperty(ImageView::Property::IMAGE, imageMap); // Disable pre-multiplied alpha blending - imageView2.SetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA, false ); + imageView2.SetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA, false); - Stage::GetCurrent().Add( imageView2 ); + application.GetScene().Add(imageView2); application.SendNotification(); application.Render(); - value = imageView2.GetProperty( ImageView::Property::PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( !enable ); + value = imageView2.GetProperty(ImageView::Property::PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(!enable); // conventional alpha blending - Renderer renderer2 = imageView2.GetRendererAt( 0 ); - value = renderer2.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA ); - DALI_TEST_CHECK( value.Get( enable ) ); - DALI_TEST_CHECK( !enable ); - - srcFactorRgb = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_RGB ); - destFactorRgb = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_RGB ); - srcFactorAlpha = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_SRC_ALPHA ); - destFactorAlpha = renderer2.GetProperty( Renderer::Property::BLEND_FACTOR_DEST_ALPHA ); - DALI_TEST_CHECK( srcFactorRgb == BlendFactor::SRC_ALPHA ); - DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA ); - DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE ); - DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA ); - - DALI_TEST_EQUALS( textureTrace.FindMethod("GenTextures"), false, TEST_LOCATION ); // The cached texture should be used. + Renderer renderer2 = imageView2.GetRendererAt(0); + value = renderer2.GetProperty(Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA); + DALI_TEST_CHECK(value.Get(enable)); + DALI_TEST_CHECK(!enable); + + srcFactorRgb = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_RGB); + destFactorRgb = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_RGB); + srcFactorAlpha = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_SRC_ALPHA); + destFactorAlpha = renderer2.GetProperty(Renderer::Property::BLEND_FACTOR_DEST_ALPHA); + DALI_TEST_CHECK(srcFactorRgb == BlendFactor::SRC_ALPHA); + DALI_TEST_CHECK(destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA); + DALI_TEST_CHECK(srcFactorAlpha == BlendFactor::ONE); + DALI_TEST_CHECK(destFactorAlpha == BlendFactor::ONE_MINUS_SRC_ALPHA); + + DALI_TEST_EQUALS(textureTrace.FindMethod("GenTextures"), false, TEST_LOCATION); // The cached texture should be used. END_TEST; } @@ -581,82 +497,91 @@ int UtcDaliImageViewPixelArea(void) // Test pixel area property ToolkitTestApplication application; + static std::vector customUniforms = + { + UniformData("pixelArea", Property::Type::VECTOR4), + }; + + TestGraphicsController& graphics = application.GetGraphicsController(); + graphics.AddCustomUniforms(customUniforms); + // Gif image, use AnimatedImageVisual internally // Atlasing is applied to pack multiple frames, use custom wrap mode - ImageView gifView = ImageView::New(); - const Vector4 pixelAreaVisual( 0.f, 0.f, 2.f, 2.f ); - gifView.SetProperty( ImageView::Property::IMAGE, - Property::Map().Add( ImageVisual::Property::URL, TEST_GIF_FILE_NAME ) - .Add( ImageVisual::Property::PIXEL_AREA, pixelAreaVisual ) ); + ImageView gifView = ImageView::New(); + const Vector4 pixelAreaVisual(0.f, 0.f, 2.f, 2.f); + gifView.SetProperty(ImageView::Property::IMAGE, + Property::Map().Add(ImageVisual::Property::URL, TEST_GIF_FILE_NAME).Add(ImageVisual::Property::PIXEL_AREA, pixelAreaVisual)); // Add to stage - Stage stage = Stage::GetCurrent(); - stage.Add( gifView ); + Integration::Scene stage = application.GetScene(); + stage.Add(gifView); // loading started application.SendNotification(); application.Render(16); - DALI_TEST_CHECK( gifView.GetRendererCount() == 1u ); - const Vector4 fullTextureRect( 0.f, 0.f, 1.f, 1.f ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + DALI_TEST_CHECK(gifView.GetRendererCount() == 1u); + + const Vector4 fullTextureRect(0.f, 0.f, 1.f, 1.f); // test that the pixel area value defined in the visual property map is registered on renderer - Renderer renderer = gifView.GetRendererAt(0); - Property::Value pixelAreaValue = renderer.GetProperty( renderer.GetPropertyIndex( "pixelArea" ) ); - DALI_TEST_EQUALS( pixelAreaValue.Get(), pixelAreaVisual, TEST_LOCATION ); + Renderer renderer = gifView.GetRendererAt(0); + Property::Value pixelAreaValue = renderer.GetProperty(renderer.GetPropertyIndex("pixelArea")); + DALI_TEST_EQUALS(pixelAreaValue.Get(), pixelAreaVisual, TEST_LOCATION); // test that the shader has the default pixel area value registered. - Shader shader = renderer.GetShader(); - pixelAreaValue = shader.GetProperty( shader.GetPropertyIndex( "pixelArea" ) ); - DALI_TEST_EQUALS( pixelAreaValue.Get(), fullTextureRect, TEST_LOCATION ); + Shader shader = renderer.GetShader(); + pixelAreaValue = shader.GetProperty(shader.GetPropertyIndex("pixelArea")); + DALI_TEST_EQUALS(pixelAreaValue.Get(), fullTextureRect, TEST_LOCATION); // test that the uniform uses the pixelArea property on the renderer. TestGlAbstraction& gl = application.GetGlAbstraction(); - Vector4 pixelAreaUniform; - DALI_TEST_CHECK( gl.GetUniformValue( "pixelArea", pixelAreaUniform ) ); - DALI_TEST_EQUALS( pixelAreaVisual, pixelAreaUniform, Math::MACHINE_EPSILON_100, TEST_LOCATION ); + Vector4 pixelAreaUniform; + DALI_TEST_CHECK(gl.GetUniformValue("pixelArea", pixelAreaUniform)); + DALI_TEST_EQUALS(pixelAreaVisual, pixelAreaUniform, Math::MACHINE_EPSILON_100, TEST_LOCATION); // set the pixelArea property on the control - const Vector4 pixelAreaControl( -1.f, -1.f, 3.f, 3.f ); - gifView.SetProperty( ImageView::Property::PIXEL_AREA, pixelAreaControl ); + const Vector4 pixelAreaControl(-1.f, -1.f, 3.f, 3.f); + gifView.SetProperty(ImageView::Property::PIXEL_AREA, pixelAreaControl); application.SendNotification(); application.Render(16); // check the pixelArea property on the control - pixelAreaValue = gifView.GetProperty( gifView.GetPropertyIndex( "pixelArea" ) ); - DALI_TEST_EQUALS( pixelAreaValue.Get(), pixelAreaControl, TEST_LOCATION ); + pixelAreaValue = gifView.GetProperty(gifView.GetPropertyIndex("pixelArea")); + DALI_TEST_EQUALS(pixelAreaValue.Get(), pixelAreaControl, TEST_LOCATION); // test that the uniform uses the pixelArea property on the control. - DALI_TEST_CHECK( gl.GetUniformValue( "pixelArea", pixelAreaUniform ) ); - DALI_TEST_EQUALS( pixelAreaControl, pixelAreaUniform, Math::MACHINE_EPSILON_100, TEST_LOCATION ); - + DALI_TEST_CHECK(gl.GetUniformValue("pixelArea", pixelAreaUniform)); + DALI_TEST_EQUALS(pixelAreaControl, pixelAreaUniform, Math::MACHINE_EPSILON_100, TEST_LOCATION); END_TEST; } int UtcDaliImageViewAsyncLoadingWithoutAltasing(void) { - ToolkitTestApplication application; - TestGlAbstraction& gl = application.GetGlAbstraction(); - const std::vector& textures = gl.GetBoundTextures(); - size_t numTextures = textures.size(); + ToolkitTestApplication application; + TestGlAbstraction& gl = application.GetGlAbstraction(); + const std::vector& textures = gl.GetBoundTextures(); + size_t numTextures = textures.size(); // Async loading, no atlasing for big size image - ImageView imageView = ImageView::New( gImage_600_RGB ); + ImageView imageView = ImageView::New(gImage_600_RGB); // By default, Aysnc loading is used - Stage::GetCurrent().Add( imageView ); - imageView.SetSize(100, 100); - imageView.SetParentOrigin( ParentOrigin::CENTER ); + application.GetScene().Add(imageView); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100, 100)); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(16); application.SendNotification(); const std::vector& textures2 = gl.GetBoundTextures(); - DALI_TEST_GREATER( textures2.size(), numTextures, TEST_LOCATION ); - - + DALI_TEST_GREATER(textures2.size(), numTextures, TEST_LOCATION); END_TEST; } @@ -672,32 +597,24 @@ int UtcDaliImageViewAsyncLoadingWithAtlasing(void) Property::Map imageMap; - imageMap[ ImageVisual::Property::URL ] = gImage_34_RGBA; - imageMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 34; - imageMap[ ImageVisual::Property::DESIRED_WIDTH ] = 34; - imageMap[ ImageVisual::Property::ATLASING] = true; + imageMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageMap[ImageVisual::Property::DESIRED_HEIGHT] = 34; + imageMap[ImageVisual::Property::DESIRED_WIDTH] = 34; + imageMap[ImageVisual::Property::ATLASING] = true; ImageView imageView = ImageView::New(); - imageView.SetProperty( ImageView::Property::IMAGE, imageMap ); - imageView.SetProperty( Toolkit::Control::Property::PADDING, Extents( 10u, 10u, 10u, 10u ) ); + imageView.SetProperty(ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Toolkit::Control::Property::PADDING, Extents(10u, 10u, 10u, 10u)); // By default, Aysnc loading is used - // loading is not started if the actor is offStage + // loading is not started if the actor is offScene - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(16); - application.Render(16); - application.SendNotification(); + application.GetScene().Add(imageView); - imageView.SetProperty( Dali::Actor::Property::LAYOUT_DIRECTION, Dali::LayoutDirection::RIGHT_TO_LEFT ); - application.SendNotification(); - application.Render(16); - application.Render(16); - application.SendNotification(); + imageView.SetProperty(Dali::Actor::Property::LAYOUT_DIRECTION, Dali::LayoutDirection::RIGHT_TO_LEFT); // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(16); @@ -705,9 +622,9 @@ int UtcDaliImageViewAsyncLoadingWithAtlasing(void) callStack.Enable(false); TraceCallStack::NamedParams params; - params["width"] = ToString(34); - params["height"] = ToString(34); - DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), true, TEST_LOCATION ); + params["width"] << 34; + params["height"] << 34; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params), true, TEST_LOCATION); END_TEST; } @@ -722,23 +639,19 @@ int UtcDaliImageViewAsyncLoadingWithAtlasing02(void) callStack.Enable(true); Property::Map asyncLoadingMap; - asyncLoadingMap[ "url" ] = gImage_34_RGBA; - asyncLoadingMap[ "desiredHeight" ] = 34; - asyncLoadingMap[ "desiredWidth" ] = 34; - asyncLoadingMap[ "synchronousLoading" ] = false; - asyncLoadingMap[ "atlasing" ] = true; + asyncLoadingMap["url"] = gImage_34_RGBA; + asyncLoadingMap["desiredHeight"] = 34; + asyncLoadingMap["desiredWidth"] = 34; + asyncLoadingMap["synchronousLoading"] = false; + asyncLoadingMap["atlasing"] = true; ImageView imageView = ImageView::New(); - imageView.SetProperty( ImageView::Property::IMAGE, asyncLoadingMap ); + imageView.SetProperty(ImageView::Property::IMAGE, asyncLoadingMap); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(16); - application.Render(16); - application.SendNotification(); + application.GetScene().Add(imageView); // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(16); @@ -746,9 +659,9 @@ int UtcDaliImageViewAsyncLoadingWithAtlasing02(void) callStack.Enable(false); TraceCallStack::NamedParams params; - params["width"] = ToString(34); - params["height"] = ToString(34); - DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), true, TEST_LOCATION ); + params["width"] << 34; + params["height"] << 34; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params), true, TEST_LOCATION); END_TEST; } @@ -760,16 +673,16 @@ int UtcDaliImageViewSyncLoading(void) tet_infoline("ImageView Testing sync loading and size using index key property map"); Property::Map syncLoadingMap; - syncLoadingMap[ ImageVisual::Property::SYNCHRONOUS_LOADING ] = true; - syncLoadingMap[ ImageVisual::Property::ATLASING ] = true; + syncLoadingMap[ImageVisual::Property::SYNCHRONOUS_LOADING] = true; + syncLoadingMap[ImageVisual::Property::ATLASING] = true; // Sync loading, no atlasing for big size image { ImageView imageView = ImageView::New(); // Sync loading is used - syncLoadingMap[ ImageVisual::Property::URL ] = gImage_600_RGB; - imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap ); + syncLoadingMap[ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); } // Sync loading, automatic atlasing for small size image @@ -778,23 +691,24 @@ int UtcDaliImageViewSyncLoading(void) callStack.Reset(); callStack.Enable(true); - ImageView imageView = ImageView::New( ); + ImageView imageView = ImageView::New(); // Sync loading is used - syncLoadingMap[ ImageVisual::Property::URL ] = gImage_34_RGBA; - syncLoadingMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 34; - syncLoadingMap[ ImageVisual::Property::DESIRED_WIDTH ] = 34; - imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap ); + syncLoadingMap[ImageVisual::Property::URL] = gImage_34_RGBA; + syncLoadingMap[ImageVisual::Property::DESIRED_HEIGHT] = 34; + syncLoadingMap[ImageVisual::Property::DESIRED_WIDTH] = 34; + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(16); TraceCallStack::NamedParams params; - params["width"] = ToString(34); - params["height"] = ToString(34); - DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), - true, TEST_LOCATION ); + params["width"] << 34; + params["height"] << 34; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params), + true, + TEST_LOCATION); } END_TEST; } @@ -811,904 +725,781 @@ int UtcDaliImageViewSyncLoading02(void) callStack.Reset(); callStack.Enable(true); - ImageView imageView = ImageView::New( ); + ImageView imageView = ImageView::New(); // Sync loading is used Property::Map syncLoadingMap; - syncLoadingMap[ "url" ] = gImage_34_RGBA; - syncLoadingMap[ "desiredHeight" ] = 34; - syncLoadingMap[ "desiredWidth" ] = 34; - syncLoadingMap[ "synchronousLoading" ] = true; - syncLoadingMap[ "atlasing" ] = true; - imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap ); - - Stage::GetCurrent().Add( imageView ); + syncLoadingMap["url"] = gImage_34_RGBA; + syncLoadingMap["desiredHeight"] = 34; + syncLoadingMap["desiredWidth"] = 34; + syncLoadingMap["synchronousLoading"] = true; + syncLoadingMap["atlasing"] = true; + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); + + application.GetScene().Add(imageView); application.SendNotification(); application.Render(16); TraceCallStack::NamedParams params; - params["width"] = ToString(34); - params["height"] = ToString(34); - DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), - true, TEST_LOCATION ); + params["width"] << 34; + params["height"] << 34; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params), + true, + TEST_LOCATION); } END_TEST; } -int UtcDaliImageViewAddedTexture(void) +int UtcDaliImageViewAsyncLoadingEncodedBuffer(void) { - ToolkitTestApplication application; + ToolkitTestApplication application; + TestGlAbstraction& gl = application.GetGlAbstraction(); + const std::vector& textures = gl.GetBoundTextures(); + size_t numTextures = textures.size(); - tet_infoline("ImageView Testing image view with texture provided manager url"); + // Get encoded raw-buffer image and generate url + EncodedImageBuffer buffer = ConvertFileToEncodedImageBuffer(gImage_600_RGB); + ImageUrl url = Toolkit::Image::GenerateUrl(buffer); - ImageView imageView = ImageView::New(); + // Async loading, no atlasing for big size image + ImageView imageView = ImageView::New(url.GetUrl()); - // empty texture is ok, though pointless from app point of view - TextureSet empty; - std::string url = TextureManager::AddTexture(empty); - DALI_TEST_CHECK(url.size() > 0u); + // By default, Aysnc loading is used + application.GetScene().Add(imageView); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100, 100)); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - Property::Map propertyMap; - propertyMap[ImageVisual::Property::URL] = url; - imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - Stage::GetCurrent().Add( imageView ); application.SendNotification(); - application.Render(); + application.Render(16); + application.SendNotification(); + + const std::vector& textures2 = gl.GetBoundTextures(); + DALI_TEST_GREATER(textures2.size(), numTextures, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewSizeWithBackground(void) +int UtcDaliImageViewAsyncLoadingEncodedBufferWithAtlasing(void) { ToolkitTestApplication application; - int width = 100; - int height = 200; - ImageView imageView = ImageView::New(); + // Get encoded raw-buffer image and generate url + EncodedImageBuffer buffer = ConvertFileToEncodedImageBuffer(gImage_600_RGB); + ImageUrl url = Toolkit::Image::GenerateUrl(buffer); + ImageUrl url2 = Toolkit::Image::GenerateUrl(buffer); - imageView.SetProperty( Control::Property::BACKGROUND, - { - { Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE }, - { Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg" }, - { ImageVisual::Property::DESIRED_WIDTH, width }, - { ImageVisual::Property::DESIRED_HEIGHT, height }, - } - ); + // Generate url is not equal to url2 + // NOTE : This behavior may changed when ImageUrl compare operator changed. + DALI_TEST_CHECK(url != url2); + // Generate url's string is equal to url2's string + DALI_TEST_CHECK(url.GetUrl() == url2.GetUrl()); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(); + EncodedImageBuffer buffer2 = ConvertFileToEncodedImageBuffer(gImage_600_RGB); + url2 = Toolkit::Image::GenerateUrl(buffer2); - DALI_TEST_EQUALS( imageView.GetCurrentSize().width, (float)width, TEST_LOCATION ); - DALI_TEST_EQUALS( imageView.GetCurrentSize().height, (float)height, TEST_LOCATION ); + // Check whethere two url are not equal + DALI_TEST_CHECK(url.GetUrl() != url2.GetUrl()); - END_TEST; -} + // Async loading, automatic atlasing for small size image + TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace(); + callStack.Reset(); + callStack.Enable(true); -int UtcDaliImageViewSizeWithBackgroundAndImage(void) -{ - ToolkitTestApplication application; + Property::Map imageMap; - int widthBackground = 100; - int heightBackground = 200; - int width = 300; - int height = 400; - Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) ); + imageMap[ImageVisual::Property::URL] = url.GetUrl(); + imageMap[ImageVisual::Property::DESIRED_HEIGHT] = 600; + imageMap[ImageVisual::Property::DESIRED_WIDTH] = 600; + imageMap[ImageVisual::Property::ATLASING] = true; - ImageView imageView = ImageView::New(); + // No atlasing with big image + ImageView imageView_bigdesired = ImageView::New(); + imageView_bigdesired.SetProperty(ImageView::Property::IMAGE, imageMap); + imageView_bigdesired.SetProperty(Toolkit::Control::Property::PADDING, Extents(10u, 10u, 10u, 10u)); - imageView.SetProperty( Control::Property::BACKGROUND, - { - { Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE }, - { Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg" }, - { ImageVisual::Property::DESIRED_WIDTH, widthBackground }, - { ImageVisual::Property::DESIRED_HEIGHT, heightBackground }, - } - ); + imageMap[ImageVisual::Property::DESIRED_HEIGHT] = 0; + imageMap[ImageVisual::Property::DESIRED_WIDTH] = 0; - imageView.SetImage( image ); + // No atlasing with zero desired size + ImageView imageView_nodesired = ImageView::New(); + imageView_nodesired.SetProperty(ImageView::Property::IMAGE, imageMap); + imageView_nodesired.SetProperty(Toolkit::Control::Property::PADDING, Extents(10u, 10u, 10u, 10u)); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(); + imageMap[ImageVisual::Property::DESIRED_HEIGHT] = 34; + imageMap[ImageVisual::Property::DESIRED_WIDTH] = 34; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Toolkit::Control::Property::PADDING, Extents(10u, 10u, 10u, 10u)); - DALI_TEST_EQUALS( imageView.GetCurrentSize().width, (float)width, TEST_LOCATION ); - DALI_TEST_EQUALS( imageView.GetCurrentSize().height, (float)height, TEST_LOCATION ); + // By default, Aysnc loading is used + // loading is not started if the actor is offScene + application.GetScene().Add(imageView); + application.GetScene().Add(imageView_bigdesired); + application.GetScene().Add(imageView_nodesired); + application.SendNotification(); + application.Render(16); - END_TEST; -} + // loading started, this waits for the loader thread for max 30 seconds + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); -int UtcDaliImageViewHeightForWidthBackground(void) -{ - ToolkitTestApplication application; + application.Render(16); + application.SendNotification(); - int widthBackground = 100; - int heightBackground = 200; + // Change url to url2 + imageMap[ImageVisual::Property::URL] = url2.GetUrl(); + imageView.SetProperty(ImageView::Property::IMAGE, imageMap); - ImageView imageView = ImageView::New(); + imageView.SetProperty(Dali::Actor::Property::LAYOUT_DIRECTION, Dali::LayoutDirection::RIGHT_TO_LEFT); - imageView.SetProperty( Control::Property::BACKGROUND, - { - { Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE }, - { Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg" }, - { ImageVisual::Property::DESIRED_WIDTH, widthBackground }, - { ImageVisual::Property::DESIRED_HEIGHT, heightBackground } - } - ); + // loading started, this waits for the loader thread for max 30 seconds + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - Stage::GetCurrent().Add( imageView ); application.SendNotification(); - application.Render(); + application.Render(16); + + callStack.Enable(false); - Control control = Control::DownCast( imageView ); - DALI_TEST_CHECK( control ); - DALI_TEST_EQUALS( imageView.GetHeightForWidth( 123.f ), control.GetHeightForWidth( 123.f ), TEST_LOCATION ); - DALI_TEST_EQUALS( imageView.GetWidthForHeight( 321.f ), control.GetWidthForHeight( 321.f ), TEST_LOCATION ); + TraceCallStack::NamedParams params; + params["width"] << 34; + params["height"] << 34; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params), true, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewHeightForWidthBackgroundAndImage(void) +int UtcDaliImageViewSyncLoadingEncodedBuffer(void) { ToolkitTestApplication application; - int widthBackground = 100; - int heightBackground = 200; - int width = 300; - int height = 400; - - Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) ); + tet_infoline("ImageView Testing sync loading from EncodedImageBuffer"); - ImageView imageView = ImageView::New(); + // Get encoded raw-buffer image and generate url + EncodedImageBuffer buffer = ConvertFileToEncodedImageBuffer(gImage_34_RGBA); + ImageUrl url = Toolkit::Image::GenerateUrl(buffer); - imageView.SetProperty( Control::Property::BACKGROUND, - { - { Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE }, - { Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg" }, - { ImageVisual::Property::DESIRED_WIDTH, widthBackground }, - { ImageVisual::Property::DESIRED_HEIGHT, heightBackground } - } - ); + // Sync loading, automatic atlasing for small size image + { + TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace(); + callStack.Reset(); + callStack.Enable(true); - imageView.SetImage( image ); + ImageView imageView = ImageView::New(); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(); + // Sync loading is used + Property::Map syncLoadingMap; + syncLoadingMap["url"] = url.GetUrl(); + syncLoadingMap["alphaMaskUrl"] = gImage_34_RGBA; + syncLoadingMap["desiredHeight"] = 34; + syncLoadingMap["desiredWidth"] = 34; + syncLoadingMap["synchronousLoading"] = true; + syncLoadingMap["atlasing"] = true; + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); - DALI_TEST_EQUALS( imageView.GetHeightForWidth( width ), (float)height, TEST_LOCATION ); - DALI_TEST_EQUALS( imageView.GetWidthForHeight( height ), (float)width, TEST_LOCATION ); + TraceCallStack::NamedParams params; + params["width"] << 34; + params["height"] << 34; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params), + true, + TEST_LOCATION); + } END_TEST; } -int UtcDaliImageViewSetBufferImage(void) +int UtcDaliImageViewEncodedBufferWithSvg(void) { - ToolkitTestApplication application; - - int width1 = 300; - int height1 = 400; - BufferImage image1 = CreateBufferImage( width1, height1, Vector4( 1.f, 1.f, 1.f, 1.f ) ); - ImageView imageView = ImageView::New(); - imageView.SetImage( image1 ); + ToolkitTestApplication application; + TestGlAbstraction& gl = application.GetGlAbstraction(); + const std::vector& textures = gl.GetBoundTextures(); + size_t numTextures = textures.size(); - TestImage( imageView, image1 ); + // Get encoded raw-buffer svg image and generate url + EncodedImageBuffer buffer = ConvertFileToEncodedImageBuffer(TEST_SVG_FILE_NAME, EncodedImageBuffer::ImageType::VECTOR_IMAGE); + ImageUrl url = Toolkit::Image::GenerateUrl(buffer); - int width2 = 600; - int height2 = 500; - BufferImage image2 = CreateBufferImage( width2, height2, Vector4( 1.f, 1.f, 1.f, 1.f ) ); - imageView.SetImage( image2 ); + // Async loading, no atlasing for big size image + ImageView imageView = ImageView::New(url.GetUrl()); - TestImage( imageView, image2 ); + // By default, Aysnc loading is used + application.GetScene().Add(imageView); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100, 100)); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - END_TEST; -} + application.SendNotification(); + application.Render(16); -int UtcDaliImageViewSetImageUrl(void) -{ - ToolkitTestApplication application; + // Load svg image + rasterize. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); - ImageView imageView = ImageView::New(); - imageView.SetImage( TEST_IMAGE_FILE_NAME ); - TestUrl( imageView, TEST_IMAGE_FILE_NAME ); + application.SendNotification(); + application.Render(16); + application.SendNotification(); + const std::vector& textures2 = gl.GetBoundTextures(); + DALI_TEST_GREATER(textures2.size(), numTextures, TEST_LOCATION); - imageView.SetImage( TEST_IMAGE_FILE_NAME2 ); - TestUrl( imageView, TEST_IMAGE_FILE_NAME2 ); + // Remove visual, for line coverage. + imageView.Unparent(); + application.SendNotification(); + application.Render(16); END_TEST; } -int UtcDaliImageViewSetImageOnstageP(void) +int UtcDaliImageViewEncodedBufferWithAnimatedVectorImage(void) { - ToolkitTestApplication application; + ToolkitTestApplication application; + TestGlAbstraction& gl = application.GetGlAbstraction(); + const std::vector& textures = gl.GetBoundTextures(); + size_t numTextures = textures.size(); - ImageView imageView = ImageView::New(); + // Get encoded raw-buffer lottie image and generate url + EncodedImageBuffer buffer = ConvertFileToEncodedImageBuffer(TEST_ANIMATED_VECTOR_IMAGE_FILE_NAME, EncodedImageBuffer::ImageType::ANIMATED_VECTOR_IMAGE); + ImageUrl url = Toolkit::Image::GenerateUrl(buffer); + + // Async loading, no atlasing for big size image + ImageView imageView = ImageView::New(url.GetUrl()); + + // By default, Aysnc loading is used + application.GetScene().Add(imageView); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100, 100)); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - Stage::GetCurrent().Add( imageView ); application.SendNotification(); - application.Render(); + application.Render(16); + + // Load lottie image is sync. Only wait rasterize. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + application.SendNotification(); - ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME ); - imageView.SetImage( image1 ); - TestImage( imageView, image1 ); + const std::vector& textures2 = gl.GetBoundTextures(); + DALI_TEST_GREATER(textures2.size(), numTextures, TEST_LOCATION); - int width = 300; - int height = 400; - BufferImage image2 = CreateBufferImage( width, height, Vector4( 1.f, 1.f, 1.f, 1.f ) ); - imageView.SetImage( image2 ); - TestImage( imageView, image2 ); + // Remove visual, for line coverage. + imageView.Unparent(); + application.SendNotification(); + application.Render(16); END_TEST; } -int UtcDaliImageViewSetImageOnstageN(void) +int UtcDaliImageViewEncodedBufferWithInvalidImageType(void) { - ToolkitTestApplication application; + ToolkitTestApplication application; + TestGlAbstraction& gl = application.GetGlAbstraction(); + const std::vector& textures = gl.GetBoundTextures(); + size_t numTextures = textures.size(); - ImageView imageView = ImageView::New(); + // Get encoded raw-buffer jpg image with invalid image type, and generate url + EncodedImageBuffer buffer = ConvertFileToEncodedImageBuffer(gImage_34_RGBA, static_cast(-1)); + ImageUrl url = Toolkit::Image::GenerateUrl(buffer); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(); + // Async loading, no atlasing for big size image + ImageView imageView = ImageView::New(url.GetUrl()); + + // By default, Aysnc loading is used + application.GetScene().Add(imageView); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100, 100)); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME ); - imageView.SetImage( image1 ); - TestImage( imageView, image1 ); + application.SendNotification(); + application.Render(16); - Image image2; - imageView.SetImage( image2 ); + // Load image + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); + application.SendNotification(); + application.Render(16); + application.SendNotification(); - //the value should be empty - std::string url; - DALI_TEST_CHECK( !value.Get( url ) ); + const std::vector& textures2 = gl.GetBoundTextures(); + DALI_TEST_GREATER(textures2.size(), numTextures, TEST_LOCATION); - Property::Map map; - value.Get( map ); - DALI_TEST_CHECK( map.Empty() ); + // Remove visual, for line coverage. + imageView.Unparent(); + application.SendNotification(); + application.Render(16); END_TEST; } -int UtcDaliImageViewSetImageOffstageP(void) +int UtcDaliImageViewAddedTexture(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + tet_infoline("ImageView Testing image view with texture provided manager url"); - Stage::GetCurrent().Add( imageView ); - application.SendNotification(); - application.Render(); - Stage::GetCurrent().Remove( imageView ); + ImageView imageView = ImageView::New(); - ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME ); - imageView.SetImage( image1 ); - TestImage( imageView, image1 ); - - int width = 300; - int height = 400; - BufferImage image2 = CreateBufferImage( width, height, Vector4( 1.f, 1.f, 1.f, 1.f ) ); - imageView.SetImage( image2 ); - TestImage( imageView, image2 ); - - END_TEST; -} - -bool gResourceReadySignalFired = false; -Vector3 gNaturalSize; - -void ResourceReadySignal( Control control ) -{ - gResourceReadySignalFired = true; -} - -int UtcDaliImageViewCheckResourceReady(void) -{ - ToolkitTestApplication application; - - gResourceReadySignalFired = false; - - // Check ImageView with background and main image, to ensure both visuals are marked as loaded - ImageView imageView = ImageView::New( TEST_GIF_FILE_NAME ); - - imageView.SetProperty( Control::Property::BACKGROUND, - { - { Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE }, - { Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg" }, - { ImageVisual::Property::DESIRED_WIDTH, 100 }, - { ImageVisual::Property::DESIRED_HEIGHT, 200 } - } - ); - - DALI_TEST_EQUALS( imageView.IsResourceReady(), false, TEST_LOCATION ); - - imageView.ResourceReadySignal().Connect( &ResourceReadySignal); - - Stage::GetCurrent().Add( imageView ); + // empty texture is ok, though pointless from app point of view + TextureSet empty; + std::string url = TextureManager::AddTexture(empty); + DALI_TEST_CHECK(url.size() > 0u); - // loading started, this waits for the loader thread - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + Property::Map propertyMap; + propertyMap[ImageVisual::Property::URL] = url; + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); + application.GetScene().Add(imageView); application.SendNotification(); - application.Render(16); - - DALI_TEST_EQUALS( imageView.IsResourceReady(), true, TEST_LOCATION ); - - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + application.Render(); END_TEST; } -int UtcDaliImageViewSetImageOffstageN(void) +int UtcDaliImageViewSizeWithBackground(void) { ToolkitTestApplication application; + int width = 100; + int height = 200; ImageView imageView = ImageView::New(); - Stage::GetCurrent().Add( imageView ); + imageView.SetProperty(Control::Property::BACKGROUND, + { + {Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE}, + {Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg"}, + {ImageVisual::Property::DESIRED_WIDTH, width}, + {ImageVisual::Property::DESIRED_HEIGHT, height}, + }); + + application.GetScene().Add(imageView); application.SendNotification(); application.Render(); - Stage::GetCurrent().Remove( imageView ); - - ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME ); - imageView.SetImage( image1 ); - TestImage( imageView, image1 ); - - Image image2; - imageView.SetImage( image2 ); - - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - - //the value should be empty - std::string url; - DALI_TEST_CHECK( !value.Get( url ) ); - Property::Map map; - value.Get( map ); - DALI_TEST_CHECK( map.Empty() ); + DALI_TEST_EQUALS(imageView.GetCurrentProperty(Actor::Property::SIZE).width, (float)width, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetCurrentProperty(Actor::Property::SIZE).height, (float)height, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewSetImageN(void) +int UtcDaliImageViewSizeWithBackgroundAndImage(void) { ToolkitTestApplication application; - Image image1; + int widthBackground = 100; + int heightBackground = 200; + int width = 600; + int height = 600; + ImageView imageView = ImageView::New(); - imageView.SetImage( image1 ); - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); + imageView.SetProperty(Control::Property::BACKGROUND, + { + {Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE}, + {Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg"}, + {ImageVisual::Property::DESIRED_WIDTH, widthBackground}, + {ImageVisual::Property::DESIRED_HEIGHT, heightBackground}, + }); - //the value should be empty - std::string url; - DALI_TEST_CHECK( !value.Get( url ) ); + imageView.SetImage(gImage_600_RGB); // 1 to 1 ratio, 600x600 pixels - Property::Map map; - value.Get( map ); - DALI_TEST_CHECK( map.Empty() ); + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(); - std::string resource_url; - Property::Value val = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - DALI_TEST_CHECK( !val.Get( resource_url ) ); + DALI_TEST_EQUALS(imageView.GetCurrentProperty(Actor::Property::SIZE).width, (float)width, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetCurrentProperty(Actor::Property::SIZE).height, (float)height, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewSetImageTypeChangesP(void) +int UtcDaliImageViewHeightForWidthBackground(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New(); - Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation( imageView ); - - Stage::GetCurrent().Add( imageView ); - - std::string url; - Property::Map map; - Toolkit::Visual::Base visual; - - Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - - application.SendNotification(); - application.Render( 16 ); - - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - value.Get( map ); - DALI_TEST_CHECK( map.Empty() ); // Value should be empty - DALI_TEST_CHECK( ! visual ); // Visual should be invalid - - // Set a URL - imageView.SetImage( "TEST_URL" ); - - application.SendNotification(); - application.Render( 16 ); - - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - - DALI_TEST_CHECK( value.Get( url ) ); // Value should NOT be empty - DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty - DALI_TEST_CHECK( visual ); // Visual should be valid - - // Set an empty Image - imageView.SetImage( Image() ); - - application.SendNotification(); - application.Render( 16 ); - - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - value.Get( map ); - DALI_TEST_CHECK( map.Empty() ); // Value should be empty - DALI_TEST_CHECK( ! visual ); // Visual should be invalid - - // Set an Image - ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME ); - imageView.SetImage( image1 ); - - application.SendNotification(); - application.Render( 16 ); - - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - DALI_TEST_CHECK( value.Get( map ) ); // Value should NOT be empty - DALI_TEST_CHECK( visual ); // Visual should be valid - - // Set an empty URL - imageView.SetImage( "" ); - - application.SendNotification(); - application.Render( 16 ); - - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); + int widthBackground = 100; + int heightBackground = 200; - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - value.Get( map ); - DALI_TEST_CHECK( map.Empty() ); // Value should be empty - DALI_TEST_CHECK( ! visual ); // Visual should be invalid + ImageView imageView = ImageView::New(); - // Set a URL in property map - Property::Map propertyMap; - propertyMap[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; - imageView.SetProperty( ImageView::Property::IMAGE, propertyMap ); + imageView.SetProperty(Control::Property::BACKGROUND, + {{Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE}, + {Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg"}, + {ImageVisual::Property::DESIRED_WIDTH, widthBackground}, + {ImageVisual::Property::DESIRED_HEIGHT, heightBackground}}); + application.GetScene().Add(imageView); application.SendNotification(); - application.Render( 16 ); + application.Render(); - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); + Control control = Control::DownCast(imageView); + DALI_TEST_CHECK(control); + DALI_TEST_EQUALS(imageView.GetHeightForWidth(123.f), control.GetHeightForWidth(123.f), TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetWidthForHeight(321.f), control.GetWidthForHeight(321.f), TEST_LOCATION); - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - DALI_TEST_CHECK( value.Get( map ) ); // Value should NOT be empty - DALI_TEST_CHECK( visual ); // Visual should be valid + END_TEST; +} - // Set a URL in property map again - propertyMap[ImageVisual::Property::URL] = gImage_34_RGBA; - imageView.SetProperty( ImageView::Property::IMAGE, propertyMap ); +int UtcDaliImageViewHeightForWidthBackgroundAndImage(void) +{ + ToolkitTestApplication application; - application.SendNotification(); - application.Render( 16 ); + int widthBackground = 100; + int heightBackground = 200; + int width = 300; + int height = 300; - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); + ImageView imageView = ImageView::New(); - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - DALI_TEST_CHECK( value.Get( map ) ); // Value should NOT be empty - DALI_TEST_CHECK( visual ); // Visual should be valid + imageView.SetProperty(Control::Property::BACKGROUND, + {{Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE}, + {Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg"}, + {ImageVisual::Property::DESIRED_WIDTH, widthBackground}, + {ImageVisual::Property::DESIRED_HEIGHT, heightBackground}}); // 1 to 2 ratio - // Set an empty URL in property map - propertyMap[ImageVisual::Property::URL] = std::string(); - imageView.SetProperty( ImageView::Property::IMAGE, propertyMap ); + imageView.SetImage(gImage_600_RGB); // 1 to 1 ratio + application.GetScene().Add(imageView); application.SendNotification(); - application.Render( 16 ); - - value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) ); - visual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); + application.Render(); - DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty - DALI_TEST_CHECK( value.Get( map ) ); // Value should NOT be empty - DALI_TEST_CHECK( ! visual ); // Visual should be invalid + DALI_TEST_EQUALS(imageView.GetHeightForWidth(width), (float)height, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetWidthForHeight(height), (float)width, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewResourceUrlP(void) +int UtcDaliImageViewSetImageUrl(void) { ToolkitTestApplication application; ImageView imageView = ImageView::New(); - DALI_TEST_CHECK( imageView.GetProperty( ImageView::Property::IMAGE ).Get< std::string >().empty() ); + imageView.SetImage(TEST_IMAGE_FILE_NAME); + TestUrl(imageView, TEST_IMAGE_FILE_NAME); - imageView.SetProperty( ImageView::Property::IMAGE, "TestString" ); - DALI_TEST_EQUALS( imageView.GetProperty( ImageView::Property::IMAGE ).Get< std::string >(), "TestString", TEST_LOCATION ); + imageView.SetImage(TEST_IMAGE_FILE_NAME2); + TestUrl(imageView, TEST_IMAGE_FILE_NAME2); END_TEST; } -// Scenarios 1: ImageView from regular image -int UtcDaliImageViewSetImageBufferImage(void) -{ - ToolkitTestApplication application; +bool gResourceReadySignalFired = false; +Vector3 gNaturalSize; - ImageView imageView = ImageView::New(); - Stage::GetCurrent().Add( imageView ); +void ResourceReadySignal(Control control) +{ + gResourceReadySignalFired = true; +} - TestGlAbstraction& gl = application.GetGlAbstraction(); - gl.EnableTextureCallTrace( true ); +void OnResourceReadySignalSVG(Control control) +{ + // Check whether Image Visual transforms on ImageVieiw::OnRelayout() + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(control); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); - std::vector< GLuint > ids; - ids.push_back( 23 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); + Property::Map* retMap = transformValue->GetMap(); + DALI_TEST_CHECK(retMap); - int width = 300; - int height = 400; - BufferImage image = CreateBufferImage( width, height, Color::WHITE ); + // Fitting mode should not be applied at this point + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::SIZE)->Get(), Vector2::ZERO, TEST_LOCATION); +} - imageView.SetImage( image ); +int UtcDaliImageViewCheckResourceReady(void) +{ + ToolkitTestApplication application; - application.SendNotification(); - application.Render(); + gResourceReadySignalFired = false; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + // Check ImageView with background and main image, to ensure both visuals are marked as loaded + ImageView imageView = ImageView::New(TEST_GIF_FILE_NAME); - std::stringstream params; - params << GL_TEXTURE_2D << ", " << 23; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) ); + imageView.SetProperty(Control::Property::BACKGROUND, + {{Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE}, + {Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/gallery-small-1.jpg"}, + {ImageVisual::Property::DESIRED_WIDTH, 100}, + {ImageVisual::Property::DESIRED_HEIGHT, 200}}); - END_TEST; -} + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); -// Scenarios 2: ImageView from Native image -int UtcDaliImageViewSetImageNativeImage(void) -{ - ToolkitTestApplication application; + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); - ImageView imageView = ImageView::New(); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); - TestGlAbstraction& gl = application.GetGlAbstraction(); - gl.EnableTextureCallTrace( true ); + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - std::vector< GLuint > ids; - ids.push_back( 23 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + application.SendNotification(); + application.Render(16); - int width = 200; - int height = 500; - TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height ); - NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); - imageView.SetImage( nativeImage ); application.SendNotification(); application.Render(); - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); - std::stringstream params; - params << GL_TEXTURE_EXTERNAL_OES << ", " << 23; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); END_TEST; } -// Scenarios 3: ImageView initially from regular image but then SetImage called with Native image -int UtcDaliImageViewSetImageBufferImageToNativeImage(void) +int UtcDaliImageViewSetImageTypeChangesP(void) { ToolkitTestApplication application; - int width = 300; - int height = 400; - BufferImage image = CreateBufferImage( width, height, Color::WHITE ); + ImageView imageView = ImageView::New(); + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); - ImageView imageView = ImageView::New( image ); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); - TestGlAbstraction& gl = application.GetGlAbstraction(); - gl.EnableTextureCallTrace( true ); + std::string url; + Property::Map map; + Toolkit::Visual::Base visual; - std::vector< GLuint > ids; - ids.push_back( 23 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + Property::Value value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); application.SendNotification(); - application.Render(); - - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); - - std::stringstream params; - params << GL_TEXTURE_2D << ", " << 23; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) ); + application.Render(16); - width = 200; - height = 500; - TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height ); - NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) ); - imageView.SetImage( nativeImage ); + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + value.Get(map); + DALI_TEST_CHECK(map.Empty()); // Value should be empty + DALI_TEST_CHECK(!visual); // Visual should be invalid - ids.clear(); - ids.push_back( 24 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + // Set a URL + imageView.SetImage("TEST_URL"); application.SendNotification(); - application.Render(); - - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + application.Render(16); - std::stringstream nextTextureParams; - nextTextureParams << GL_TEXTURE_EXTERNAL_OES << ", " << 24; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nextTextureParams.str()) ); + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); - END_TEST; -} + DALI_TEST_CHECK(value.Get(url)); // Value should NOT be empty + DALI_TEST_CHECK(!value.Get(map)); // Value should be empty + DALI_TEST_CHECK(visual); // Visual should be valid -// Scenarios 4: ImageView initially from Native image but then SetImage called with regular image -int UtcDaliImageViewSetImageNativeImageToBufferImage(void) -{ - ToolkitTestApplication application; + // Set an empty URL + imageView.SetImage(""); - int width = 300; - int height = 400; - TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height ); - NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) ); + application.SendNotification(); + application.Render(16); - ImageView imageView = ImageView::New( nativeImage ); - Stage::GetCurrent().Add( imageView ); + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); - TestGlAbstraction& gl = application.GetGlAbstraction(); - gl.EnableTextureCallTrace( true ); + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + value.Get(map); + DALI_TEST_CHECK(map.Empty()); // Value should be empty + DALI_TEST_CHECK(!visual); // Visual should be invalid - std::vector< GLuint > ids; - ids.push_back( 23 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + // Set a URL in property map + Property::Map propertyMap; + propertyMap[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); application.SendNotification(); - application.Render(); - - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + application.Render(16); - std::stringstream params; - params << GL_TEXTURE_EXTERNAL_OES << ", " << 23; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) ); + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); - width = 200; - height = 500; - BufferImage image = CreateBufferImage( width, height, Color::WHITE ); - imageView.SetImage( image ); + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + DALI_TEST_CHECK(value.Get(map)); // Value should NOT be empty + DALI_TEST_CHECK(visual); // Visual should be valid - ids.clear(); - ids.push_back( 24 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + // Set a URL in property map again + propertyMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); application.SendNotification(); - application.Render(); - - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); - - std::stringstream nextTextureParams; - nextTextureParams << GL_TEXTURE_2D << ", " << 24; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nextTextureParams.str()) ); + application.Render(16); - END_TEST; -} + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); -// Scenarios 5: ImageView from Native image with custom shader -int UtcDaliImageViewSetImageNativeImageWithCustomShader(void) -{ - ToolkitTestApplication application; + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + DALI_TEST_CHECK(value.Get(map)); // Value should NOT be empty + DALI_TEST_CHECK(visual); // Visual should be valid - int width = 300; - int height = 400; + // Set an empty URL in property map + propertyMap[ImageVisual::Property::URL] = std::string(); + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); - Property::Map customShader; - customShader.Insert( "vertexShader", VERTEX_SHADER ); - customShader.Insert( "fragmentShader", FRAGMENT_SHADER ); + application.SendNotification(); + application.Render(16); - Property::Array shaderHints; - shaderHints.PushBack( "requiresSelfDepthTest" ); - shaderHints.PushBack( "outputIsTransparent" ); - shaderHints.PushBack( "outputIsOpaque" ); - shaderHints.PushBack( "modifiesGeometry" ); + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); - customShader.Insert( "hints", shaderHints ); + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + DALI_TEST_CHECK(value.Get(map)); // Value should NOT be empty + DALI_TEST_CHECK(!visual); // Visual should be invalid - Property::Map map; - map.Insert( "shader", customShader ); + // Set a URL in property map again + propertyMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); - TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height ); - NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) ); + application.SendNotification(); + application.Render(16); - ImageView imageView = ImageView::New( nativeImage ); - imageView.SetProperty( ImageView::Property::IMAGE, map ); - Stage::GetCurrent().Add( imageView ); + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); - TestGlAbstraction& gl = application.GetGlAbstraction(); - gl.EnableTextureCallTrace( true ); + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + DALI_TEST_CHECK(value.Get(map)); // Value should NOT be empty + DALI_TEST_CHECK(visual); // Visual should be valid - std::vector< GLuint > ids; - ids.push_back( 23 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + // Set an empty property map + propertyMap.Clear(); + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); application.SendNotification(); - application.Render(); + application.Render(16); - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + value = imageView.GetProperty(imageView.GetPropertyIndex("image")); + visual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); - std::stringstream params; - params << GL_TEXTURE_EXTERNAL_OES << ", " << 23; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) ); + DALI_TEST_CHECK(!value.Get(url)); // Value should be empty + DALI_TEST_CHECK(value.Get(map)); // Value should NOT be empty + DALI_TEST_CHECK(map.Empty()); // But PropertyMap should be empty + DALI_TEST_CHECK(!visual); // Visual should be invalid END_TEST; } -// Scenarios 6: ImageView initially from regular image with custom shader but then SetImage called with Native -int UtcDaliImageViewSetImageBufferImageWithCustomShaderToNativeImage(void) +int UtcDaliImageViewResourceUrlP(void) { ToolkitTestApplication application; - int width = 300; - int height = 400; - - Property::Map customShader; - customShader.Insert( "vertexShader", VERTEX_SHADER ); - customShader.Insert( "fragmentShader", FRAGMENT_SHADER ); - - Property::Array shaderHints; - shaderHints.PushBack( "requiresSelfDepthTest" ); - shaderHints.PushBack( "outputIsTransparent" ); - shaderHints.PushBack( "outputIsOpaque" ); - shaderHints.PushBack( "modifiesGeometry" ); - - customShader.Insert( "hints", shaderHints ); - - Property::Map map; - map.Insert( "shader", customShader ); - - BufferImage image = CreateBufferImage( width, height, Color::WHITE ); + ImageView imageView = ImageView::New(); + DALI_TEST_CHECK(imageView.GetProperty(ImageView::Property::IMAGE).Get().empty()); - ImageView imageView = ImageView::New( image ); - imageView.SetProperty( ImageView::Property::IMAGE, map ); - Stage::GetCurrent().Add( imageView ); + imageView.SetProperty(ImageView::Property::IMAGE, "TestString"); + DALI_TEST_EQUALS(imageView.GetProperty(ImageView::Property::IMAGE).Get(), "TestString", TEST_LOCATION); - TestGlAbstraction& gl = application.GetGlAbstraction(); - gl.EnableTextureCallTrace( true ); + END_TEST; +} - std::vector< GLuint > ids; - ids.push_back( 23 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); +int UtcDaliImageViewReplaceImage(void) +{ + ToolkitTestApplication application; - application.SendNotification(); - application.Render(); + gResourceReadySignalFired = false; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + // Check ImageView with background and main image, to ensure both visuals are marked as loaded + ImageView imageView = ImageView::New(TEST_IMAGE_1); - std::stringstream params; - params << GL_TEXTURE_2D << ", " << 23; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) ); + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); - TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height ); - NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) ); - imageView.SetImage( nativeImage ); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); - ids.clear(); - ids.push_back( 24 ); - application.GetGlAbstraction().SetNextTextureIds( ids ); + application.GetScene().Add(imageView); application.SendNotification(); - application.Render(); + application.Render(16); - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") ); + // loading started, this waits for the loader thread for max 30 seconds + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - std::stringstream nativeImageParams; - nativeImageParams << GL_TEXTURE_EXTERNAL_OES << ", " << 24; - DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nativeImageParams.str()) ); + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); - END_TEST; -} + gResourceReadySignalFired = false; -int UtcDaliImageViewGetImageP1(void) -{ - ToolkitTestApplication application; + imageView.SetImage(TEST_IMAGE_2); - ImageView imageView = ImageView::New(); - DALI_TEST_CHECK( ! imageView.GetImage() ); + application.SendNotification(); + application.Render(16); - Image image = CreateBufferImage(); - imageView.SetImage( image ); - DALI_TEST_CHECK( imageView.GetImage() == image ); + // loading started, this waits for the loader thread for max 30 seconds + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - END_TEST; -} + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); -int UtcDaliImageViewGetImageP2(void) -{ - ToolkitTestApplication application; + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); - BufferImage image = CreateBufferImage(); - ImageView imageView = ImageView::New( image ); - DALI_TEST_CHECK( imageView.GetImage() == image ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); END_TEST; } -int UtcDaliImageViewGetImageN(void) +int UtcDaliImageViewReloadAlphaMaskImage(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME ); - DALI_TEST_CHECK( ! imageView.GetImage() ); - - Image image = CreateBufferImage(); - imageView.SetImage( image ); - DALI_TEST_CHECK( imageView.GetImage() == image ); + gResourceReadySignalFired = false; - imageView.SetImage( TEST_IMAGE_FILE_NAME ); - DALI_TEST_CHECK( ! imageView.GetImage() ); + ImageView dummy = ImageView::New(); + ImageView imageView = ImageView::New(); + Property::Map propertyMap; - END_TEST; -} + // To keep alpha mask cached, scene on some dummy image. + // Note : If we don't cache alpha mask image, the reference count of mask image become zero. + // In this case, we might need to wait mask image loading, which is not neccesary & can be changed behavior. + propertyMap[ImageVisual::Property::URL] = gImage_600_RGB; + propertyMap[ImageVisual::Property::ALPHA_MASK_URL] = TEST_BROKEN_IMAGE_DEFAULT; + dummy.SetProperty(ImageView::Property::IMAGE, propertyMap); + application.GetScene().Add(dummy); -int UtcDaliImageViewReplaceImage(void) -{ - ToolkitTestApplication application; + application.SendNotification(); + application.Render(16); - gResourceReadySignalFired = false; + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(3), true, TEST_LOCATION); - int width = 100; - int height = 200; - Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) ); + application.SendNotification(); + application.Render(16); - // Check ImageView with background and main image, to ensure both visuals are marked as loaded - ImageView imageView = ImageView::New( TEST_IMAGE_1 ); + propertyMap.Clear(); + propertyMap[ImageVisual::Property::URL] = gImage_34_RGBA; + propertyMap[ImageVisual::Property::ALPHA_MASK_URL] = TEST_BROKEN_IMAGE_DEFAULT; + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); - DALI_TEST_EQUALS( imageView.IsResourceReady(), false, TEST_LOCATION ); + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); - imageView.ResourceReadySignal().Connect( &ResourceReadySignal); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(16); - // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); - - DALI_TEST_EQUALS( imageView.GetRendererCount(), 1u, TEST_LOCATION ); + // Load image and use cached mask. Now we try to apply masking. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(gResourceReadySignalFired, false, TEST_LOCATION); - gResourceReadySignalFired = false; - - imageView.SetImage(TEST_IMAGE_2); + // Cancel apply masking. + imageView.Unparent(); application.SendNotification(); application.Render(16); - // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + // Reload same image again. + application.GetScene().Add(imageView); - DALI_TEST_EQUALS( imageView.GetRendererCount(), 1u, TEST_LOCATION ); + application.SendNotification(); + application.Render(16); - DALI_TEST_EQUALS( imageView.IsResourceReady(), true, TEST_LOCATION ); + // Finish apply masking. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); END_TEST; } -void OnRelayoutOverride( Size size ) +void OnRelayoutOverride(Size size) { gNaturalSize = size; // Size Relayout is using } @@ -1718,25 +1509,25 @@ int UtcDaliImageViewReplaceImageAndGetNaturalSize(void) ToolkitTestApplication application; // Check ImageView with background and main image, to ensure both visuals are marked as loaded - ImageView imageView = ImageView::New( TEST_IMAGE_1 ); - imageView.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS ); + ImageView imageView = ImageView::New(TEST_IMAGE_1); + imageView.SetResizePolicy(ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS); - DummyControl dummyControl = DummyControl::New( true ); - Impl::DummyControl& dummyImpl = static_cast(dummyControl.GetImplementation()); - dummyControl.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS ); + DummyControl dummyControl = DummyControl::New(true); + Impl::DummyControl& dummyImpl = static_cast(dummyControl.GetImplementation()); + dummyControl.SetResizePolicy(ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS); - dummyControl.Add( imageView ); - dummyImpl.SetRelayoutCallback( &OnRelayoutOverride ); - Stage::GetCurrent().Add( dummyControl ); + dummyControl.Add(imageView); + dummyImpl.SetRelayoutCallback(&OnRelayoutOverride); + application.GetScene().Add(dummyControl); application.SendNotification(); application.Render(); // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); - DALI_TEST_EQUALS( gNaturalSize.width, 1024.0f, TEST_LOCATION ); - DALI_TEST_EQUALS( gNaturalSize.height, 1024.0f, TEST_LOCATION ); + DALI_TEST_EQUALS(gNaturalSize.width, 1024.0f, TEST_LOCATION); + DALI_TEST_EQUALS(gNaturalSize.height, 1024.0f, TEST_LOCATION); gNaturalSize = Vector3::ZERO; @@ -1745,14 +1536,14 @@ int UtcDaliImageViewReplaceImageAndGetNaturalSize(void) // Waiting for resourceReady so SendNotifcation not called here. // loading started, this waits for the loader thread for max 30 seconds - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); // Trigger a potential relayout application.SendNotification(); application.Render(); - DALI_TEST_EQUALS( gNaturalSize.width, 600.0f, TEST_LOCATION ); - DALI_TEST_EQUALS( gNaturalSize.height, 600.0f, TEST_LOCATION ); + DALI_TEST_EQUALS(gNaturalSize.width, 600.0f, TEST_LOCATION); + DALI_TEST_EQUALS(gNaturalSize.height, 600.0f, TEST_LOCATION); END_TEST; } @@ -1767,23 +1558,23 @@ int UtcDaliImageViewResourceReadySignalWithImmediateLoad(void) Property::Map imageMap; - imageMap[ ImageVisual::Property::URL ] = gImage_34_RGBA; - imageMap[ ImageVisual::Property::LOAD_POLICY ] = ImageVisual::LoadPolicy::IMMEDIATE; + imageMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageMap[ImageVisual::Property::LOAD_POLICY] = ImageVisual::LoadPolicy::IMMEDIATE; tet_infoline("Creating ImageView without URL so image does not start loading"); ImageView imageView = ImageView::New(); tet_infoline("Connect to image loaded signal before setting image"); - imageView.ResourceReadySignal().Connect( &ResourceReadySignal); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); tet_infoline("Setting Image with IMMEDIATE load, signal already connected so will be triggered."); - imageView.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageView.SetProperty(ImageView::Property::IMAGE, imageMap); // loading started, this waits for the loader thread - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(16); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); END_TEST; } @@ -1798,27 +1589,27 @@ int UtcDaliImageViewResourceReadySignalWithReusedImage(void) Property::Map imageMap; - imageMap[ ImageVisual::Property::URL ] = gImage_34_RGBA; - imageMap[ ImageVisual::Property::LOAD_POLICY ] = ImageVisual::LoadPolicy::IMMEDIATE; + imageMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageMap[ImageVisual::Property::LOAD_POLICY] = ImageVisual::LoadPolicy::IMMEDIATE; ImageView imageView = ImageView::New(); - imageView.ResourceReadySignal().Connect( &ResourceReadySignal); - imageView.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + imageView.SetProperty(ImageView::Property::IMAGE, imageMap); // loading started, this waits for the loader thread - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(16); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); gResourceReadySignalFired = false; ImageView imageViewWithExistingImage = ImageView::New(); - imageViewWithExistingImage.ResourceReadySignal().Connect( &ResourceReadySignal); - imageViewWithExistingImage.SetProperty( ImageView::Property::IMAGE, imageMap ); + imageViewWithExistingImage.ResourceReadySignal().Connect(&ResourceReadySignal); + imageViewWithExistingImage.SetProperty(ImageView::Property::IMAGE, imageMap); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); END_TEST; } @@ -1832,32 +1623,32 @@ int UtcDaliImageViewResourceReadySignalWithReusedImage02(void) gResourceReadySignalFired = false; Property::Map imageImmediateLoadingMap; - imageImmediateLoadingMap[ ImageVisual::Property::URL ] = gImage_34_RGBA; - imageImmediateLoadingMap[ ImageVisual::Property::LOAD_POLICY ] = ImageVisual::LoadPolicy::IMMEDIATE; + imageImmediateLoadingMap[ImageVisual::Property::URL] = gImage_34_RGBA; + imageImmediateLoadingMap[ImageVisual::Property::LOAD_POLICY] = ImageVisual::LoadPolicy::IMMEDIATE; tet_infoline("Immediate load an image"); ImageView imageView = ImageView::New(); - imageView.ResourceReadySignal().Connect( &ResourceReadySignal); - imageView.SetProperty( ImageView::Property::IMAGE, imageImmediateLoadingMap ); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + imageView.SetProperty(ImageView::Property::IMAGE, imageImmediateLoadingMap); // loading started, this waits for the loader thread - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); application.SendNotification(); application.Render(16); tet_infoline("Check image loaded"); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); gResourceReadySignalFired = false; tet_infoline("Create another ImageView with the same URL"); - ImageView imageViewWithExistingImage = ImageView::New( gImage_34_RGBA ); + ImageView imageViewWithExistingImage = ImageView::New(gImage_34_RGBA); tet_infoline("Connect to ResourceReady signal for second ImageView, it should still fire as resource is ready"); - imageViewWithExistingImage.ResourceReadySignal().Connect( &ResourceReadySignal); + imageViewWithExistingImage.ResourceReadySignal().Connect(&ResourceReadySignal); - Stage::GetCurrent().Add( imageViewWithExistingImage ); + application.GetScene().Add(imageViewWithExistingImage); - DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION ); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); END_TEST; } @@ -1866,47 +1657,47 @@ int UtcDaliImageViewPaddingProperty(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imagePropertyMap; - imagePropertyMap[ Toolkit::Visual::Property::TYPE ] = Toolkit::Visual::IMAGE; - imagePropertyMap[ Toolkit::ImageVisual::Property::URL ] = TEST_RESOURCE_DIR "/gallery-small-1.jpg" ; - imagePropertyMap[ ImageVisual::Property::DESIRED_WIDTH ] = 128; - imagePropertyMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 128; - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE , imagePropertyMap ); - imageView.SetAnchorPoint( AnchorPoint::TOP_LEFT ); - imageView.SetParentOrigin( ParentOrigin::TOP_LEFT ); - imageView.SetProperty( Control::Property::PADDING, Extents( 15, 10, 5, 10 ) ); - Stage::GetCurrent().Add( imageView ); + imagePropertyMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imagePropertyMap[Toolkit::ImageVisual::Property::URL] = TEST_RESOURCE_DIR "/gallery-small-1.jpg"; + imagePropertyMap[ImageVisual::Property::DESIRED_WIDTH] = 128; + imagePropertyMap[ImageVisual::Property::DESIRED_HEIGHT] = 128; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imagePropertyMap); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Control::Property::PADDING, Extents(15, 10, 5, 10)); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(); - DALI_TEST_EQUALS( imageView.GetProperty( Control::Property::PADDING ), Extents( 15, 10, 5, 10 ), TEST_LOCATION ); + DALI_TEST_EQUALS(imageView.GetProperty(Control::Property::PADDING), Extents(15, 10, 5, 10), TEST_LOCATION); ImageView childImage = ImageView::New(); - childImage.SetBackgroundColor( Color::BLACK ); - childImage.SetSize( 10.f, 10.f ); - imageView.Add( childImage ); + childImage.SetBackgroundColor(Color::BLACK); + childImage.SetProperty(Actor::Property::SIZE, Vector2(10.f, 10.f)); + imageView.Add(childImage); application.SendNotification(); application.Render(); // Child ImageView should be positioned dependinig on Parent ImageView's Padding value - DALI_TEST_EQUALS( childImage.GetProperty( Dali::Actor::Property::POSITION ), Vector3( 15, 5, 0 ), TEST_LOCATION ); + DALI_TEST_EQUALS(childImage.GetProperty(Dali::Actor::Property::POSITION), Vector3(15, 5, 0), TEST_LOCATION); // Check whether Image Visual transforms on ImageVieiw::OnRelayout() - Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation( imageView ); - Toolkit::Visual::Base imageVisual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - Property::Map resultMap; - imageVisual.CreatePropertyMap( resultMap ); + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); - Property::Value* transformValue = resultMap.Find( Visual::Property::TRANSFORM ); - DALI_TEST_CHECK( transformValue ); + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); Property::Map* retMap = transformValue->GetMap(); - DALI_TEST_CHECK( retMap ); + DALI_TEST_CHECK(retMap); // Image Visual should be positioned depending on ImageView's padding - DALI_TEST_EQUALS( retMap->Find( Visual::Transform::Property::OFFSET )->Get< Vector2 >(), Vector2( 15, 5 ), TEST_LOCATION ); + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::OFFSET)->Get(), Vector2(15, 5), TEST_LOCATION); END_TEST; } @@ -1915,37 +1706,37 @@ int UtcDaliImageViewPaddingProperty02(void) { ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imagePropertyMap; - imagePropertyMap[ Toolkit::Visual::Property::TYPE ] = Toolkit::Visual::IMAGE; - imagePropertyMap[ Toolkit::ImageVisual::Property::URL ] = TEST_RESOURCE_DIR "/Kid1.svg" ; - imagePropertyMap[ ImageVisual::Property::DESIRED_WIDTH ] = 128; - imagePropertyMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 128; - imagePropertyMap[ DevelVisual::Property::VISUAL_FITTING_MODE ] = Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO; - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE , imagePropertyMap ); - imageView.SetAnchorPoint( AnchorPoint::TOP_LEFT ); - imageView.SetParentOrigin( ParentOrigin::TOP_LEFT ); - imageView.SetProperty( Control::Property::PADDING, Extents( 15, 10, 5, 10 ) ); - Stage::GetCurrent().Add( imageView ); + imagePropertyMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imagePropertyMap[Toolkit::ImageVisual::Property::URL] = TEST_RESOURCE_DIR "/Kid1.svg"; + imagePropertyMap[ImageVisual::Property::DESIRED_WIDTH] = 128; + imagePropertyMap[ImageVisual::Property::DESIRED_HEIGHT] = 128; + imagePropertyMap[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imagePropertyMap); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Control::Property::PADDING, Extents(15, 10, 5, 10)); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(); - DALI_TEST_EQUALS( imageView.GetProperty( Control::Property::PADDING ), Extents( 15, 10, 5, 10 ), TEST_LOCATION ); + DALI_TEST_EQUALS(imageView.GetProperty(Control::Property::PADDING), Extents(15, 10, 5, 10), TEST_LOCATION); // Check whether Image Visual transforms on ImageVieiw::OnRelayout() - Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation( imageView ); - Toolkit::Visual::Base imageVisual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - Property::Map resultMap; - imageVisual.CreatePropertyMap( resultMap ); + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); - Property::Value* transformValue = resultMap.Find( Visual::Property::TRANSFORM ); - DALI_TEST_CHECK( transformValue ); + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); Property::Map* retMap = transformValue->GetMap(); - DALI_TEST_CHECK( retMap ); + DALI_TEST_CHECK(retMap); // Image Visual should be positioned depending on ImageView's padding - DALI_TEST_EQUALS( retMap->Find( Visual::Transform::Property::OFFSET )->Get< Vector2 >(), Vector2( 15, 5 ), TEST_LOCATION ); + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::OFFSET)->Get(), Vector2(15, 5), TEST_LOCATION); END_TEST; } @@ -1956,44 +1747,44 @@ int UtcDaliImageViewPaddingProperty03(void) ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imagePropertyMap; - imagePropertyMap[ Toolkit::Visual::Property::TYPE ] = Toolkit::Visual::IMAGE; - imagePropertyMap[ Toolkit::ImageVisual::Property::URL ] = TEST_RESOURCE_DIR "/Kid1.svg" ; - imagePropertyMap[ ImageVisual::Property::DESIRED_WIDTH ] = 128; - imagePropertyMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 128; - imagePropertyMap[ DevelVisual::Property::VISUAL_FITTING_MODE ] = Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO; - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE , imagePropertyMap ); - imageView.SetAnchorPoint( AnchorPoint::TOP_LEFT ); - imageView.SetParentOrigin( ParentOrigin::TOP_LEFT ); - imageView.SetProperty( Control::Property::PADDING, Extents( 15, 10, 5, 10 ) ); - Stage::GetCurrent().Add( imageView ); + imagePropertyMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imagePropertyMap[Toolkit::ImageVisual::Property::URL] = TEST_RESOURCE_DIR "/Kid1.svg"; + imagePropertyMap[ImageVisual::Property::DESIRED_WIDTH] = 128; + imagePropertyMap[ImageVisual::Property::DESIRED_HEIGHT] = 128; + imagePropertyMap[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imagePropertyMap); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Control::Property::PADDING, Extents(15, 10, 5, 10)); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(); - DALI_TEST_EQUALS( imageView.GetProperty( Control::Property::PADDING ), Extents( 15, 10, 5, 10 ), TEST_LOCATION ); + DALI_TEST_EQUALS(imageView.GetProperty(Control::Property::PADDING), Extents(15, 10, 5, 10), TEST_LOCATION); tet_infoline("Remove Padding and test Visual is position correctly"); - imageView.SetProperty( Control::Property::PADDING, Extents( 0, 0, 0, 0 ) ); + imageView.SetProperty(Control::Property::PADDING, Extents(0, 0, 0, 0)); application.SendNotification(); application.Render(); // Check whether Image Visual transforms on ImageVieiw::OnRelayout() - Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation( imageView ); - Toolkit::Visual::Base imageVisual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - Property::Map resultMap; - imageVisual.CreatePropertyMap( resultMap ); + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); - Property::Value* transformValue = resultMap.Find( Visual::Property::TRANSFORM ); - DALI_TEST_CHECK( transformValue ); + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); Property::Map* retMap = transformValue->GetMap(); - DALI_TEST_CHECK( retMap ); + DALI_TEST_CHECK(retMap); // Image Visual should be positioned depending on ImageView's padding - DALI_TEST_EQUALS( retMap->Find( Visual::Transform::Property::OFFSET )->Get< Vector2 >(), Vector2( 0, 0 ), TEST_LOCATION ); + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::OFFSET)->Get(), Vector2(0, 0), TEST_LOCATION); END_TEST; } @@ -2004,44 +1795,44 @@ int UtcDaliImageViewPaddingProperty04(void) ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imagePropertyMap; - imagePropertyMap[ Toolkit::Visual::Property::TYPE ] = Toolkit::Visual::IMAGE; - imagePropertyMap[ Toolkit::ImageVisual::Property::URL ] = TEST_RESOURCE_DIR "/Kid1.svg" ; - imagePropertyMap[ ImageVisual::Property::DESIRED_WIDTH ] = 128; - imagePropertyMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 128; - imagePropertyMap[ DevelVisual::Property::VISUAL_FITTING_MODE ] = Toolkit::DevelVisual::FILL; - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE , imagePropertyMap ); - imageView.SetAnchorPoint( AnchorPoint::TOP_LEFT ); - imageView.SetParentOrigin( ParentOrigin::TOP_LEFT ); - imageView.SetProperty( Control::Property::PADDING, Extents( 15, 10, 5, 10 ) ); - Stage::GetCurrent().Add( imageView ); + imagePropertyMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imagePropertyMap[Toolkit::ImageVisual::Property::URL] = TEST_RESOURCE_DIR "/Kid1.svg"; + imagePropertyMap[ImageVisual::Property::DESIRED_WIDTH] = 128; + imagePropertyMap[ImageVisual::Property::DESIRED_HEIGHT] = 128; + imagePropertyMap[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::FILL; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imagePropertyMap); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Control::Property::PADDING, Extents(15, 10, 5, 10)); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(); - DALI_TEST_EQUALS( imageView.GetProperty( Control::Property::PADDING ), Extents( 15, 10, 5, 10 ), TEST_LOCATION ); + DALI_TEST_EQUALS(imageView.GetProperty(Control::Property::PADDING), Extents(15, 10, 5, 10), TEST_LOCATION); tet_infoline("Remove Padding and test Visual is position correctly"); - imageView.SetProperty( Control::Property::PADDING, Extents( 0, 0, 0, 0 ) ); + imageView.SetProperty(Control::Property::PADDING, Extents(0, 0, 0, 0)); application.SendNotification(); application.Render(); // Check whether Image Visual transforms on ImageVieiw::OnRelayout() - Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation( imageView ); - Toolkit::Visual::Base imageVisual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - Property::Map resultMap; - imageVisual.CreatePropertyMap( resultMap ); + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); - Property::Value* transformValue = resultMap.Find( Visual::Property::TRANSFORM ); - DALI_TEST_CHECK( transformValue ); + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); Property::Map* retMap = transformValue->GetMap(); - DALI_TEST_CHECK( retMap ); + DALI_TEST_CHECK(retMap); // Image Visual should be positioned depending on ImageView's padding - DALI_TEST_EQUALS( retMap->Find( Visual::Transform::Property::OFFSET )->Get< Vector2 >(), Vector2( 0, 0 ), TEST_LOCATION ); + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::OFFSET)->Get(), Vector2(0, 0), TEST_LOCATION); END_TEST; } @@ -2052,40 +1843,40 @@ int UtcDaliImageViewTransformTest01(void) ToolkitTestApplication application; - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imagePropertyMap; - imagePropertyMap.Add( Toolkit::Visual::Property::TYPE,Toolkit::Visual::IMAGE ) - .Add( Toolkit::ImageVisual::Property::URL,TEST_RESOURCE_DIR "/Kid1.svg" ) - .Add( ImageVisual::Property::DESIRED_WIDTH,120 ) - .Add( ImageVisual::Property::DESIRED_HEIGHT,120 ) - .Add( DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FILL ) - .Add( Visual::Property::TRANSFORM, - Property::Map().Add( Toolkit::Visual::Transform::Property::OFFSET_POLICY, - Vector2( Visual::Transform::Policy::ABSOLUTE, Visual::Transform::Policy::ABSOLUTE ) ) - .Add( Toolkit::Visual::Transform::Property::OFFSET, Vector2( 8, 8 ) ) ); - - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE , imagePropertyMap ); - imageView.SetAnchorPoint( AnchorPoint::TOP_LEFT ); - imageView.SetParentOrigin( ParentOrigin::TOP_LEFT ); - Stage::GetCurrent().Add( imageView ); + imagePropertyMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE) + .Add(Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/Kid1.svg") + .Add(ImageVisual::Property::DESIRED_WIDTH, 120) + .Add(ImageVisual::Property::DESIRED_HEIGHT, 120) + .Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FILL) + .Add(Visual::Property::TRANSFORM, + Property::Map().Add(Toolkit::Visual::Transform::Property::OFFSET_POLICY, + Vector2(Visual::Transform::Policy::ABSOLUTE, Visual::Transform::Policy::ABSOLUTE)) + .Add(Toolkit::Visual::Transform::Property::OFFSET, Vector2(8, 8))); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imagePropertyMap); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + application.GetScene().Add(imageView); application.SendNotification(); application.Render(); // Check whether Image Visual transforms on ImageVieiw::OnRelayout() - Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation( imageView ); - Toolkit::Visual::Base imageVisual = DevelControl::GetVisual( controlImpl, ImageView::Property::IMAGE ); - Property::Map resultMap; - imageVisual.CreatePropertyMap( resultMap ); + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); - Property::Value* transformValue = resultMap.Find( Visual::Property::TRANSFORM ); - DALI_TEST_CHECK( transformValue ); + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); Property::Map* retMap = transformValue->GetMap(); - DALI_TEST_CHECK( retMap ); + DALI_TEST_CHECK(retMap); // Image Visual should be positioned depending on ImageView's padding - DALI_TEST_EQUALS( retMap->Find( Visual::Transform::Property::OFFSET )->Get< Vector2 >(), Vector2( 8, 8 ), TEST_LOCATION ); - DALI_TEST_EQUALS( retMap->Find( Visual::Transform::Property::OFFSET_POLICY )->Get< Vector2 >(), Vector2( Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE ), TEST_LOCATION ); + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::OFFSET)->Get(), Vector2(8, 8), TEST_LOCATION); + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::OFFSET_POLICY)->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); END_TEST; } @@ -2095,13 +1886,13 @@ int UtcDaliImageViewUsingAtlasAndGetNaturalSize(void) ToolkitTestApplication application; // Check ImageView with background and main image, to ensure both visuals are marked as loaded - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imageMap; - imageMap[ Toolkit::Visual::Property::TYPE ] = Toolkit::Visual::IMAGE; - imageMap[ Toolkit::ImageVisual::Property::URL ] = gImage_34_RGBA; - imageMap[ Toolkit::ImageVisual::Property::ATLASING ] = true; - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, imageMap ); - Stage::GetCurrent().Add( imageView ); + imageMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap[Toolkit::ImageVisual::Property::URL] = gImage_34_RGBA; + imageMap[Toolkit::ImageVisual::Property::ATLASING] = true; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + application.GetScene().Add(imageView); // Trigger a potential relayout application.SendNotification(); @@ -2109,8 +1900,8 @@ int UtcDaliImageViewUsingAtlasAndGetNaturalSize(void) Vector3 naturalSize = imageView.GetNaturalSize(); - DALI_TEST_EQUALS( naturalSize.width, 34.0f, TEST_LOCATION ); - DALI_TEST_EQUALS( naturalSize.height, 34.0f, TEST_LOCATION ); + DALI_TEST_EQUALS(naturalSize.width, 34.0f, TEST_LOCATION); + DALI_TEST_EQUALS(naturalSize.height, 34.0f, TEST_LOCATION); END_TEST; } @@ -2119,284 +1910,3837 @@ int UtcDaliImageViewFillMode(void) { ToolkitTestApplication application; - tet_infoline( "Create an ImageVisual without padding and set the fill-mode to fill" ); - tet_infoline( " There should be no need to change the transform, our size-policy should be relative and size should be [1,1]"); + tet_infoline("Create an ImageVisual without padding and set the fill-mode to fill"); - ImageView imageView = ImageView::New(); + ImageView imageView = ImageView::New(); Property::Map imageMap; - imageMap.Add( Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE ); - imageMap.Add( Toolkit::ImageVisual::Property::URL, gImage_600_RGB ); - imageMap.Add( DevelVisual::Property::VISUAL_FITTING_MODE, DevelVisual::FittingMode::FILL ); + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, DevelVisual::FittingMode::FILL); - imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, imageMap ); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); // Trigger a potential relayout application.SendNotification(); application.Render(); - Toolkit::Visual::Base visual = DevelControl::GetVisual( Toolkit::Internal::GetImplementation( imageView ), Toolkit::ImageView::Property::IMAGE ); - Property::Map returnedMap; - visual.CreatePropertyMap( returnedMap ); + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); - Property::Value* value = returnedMap.Find( Toolkit::Visual::Property::TRANSFORM ); - DALI_TEST_CHECK( value ); + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); Property::Map* map = value->GetMap(); - DALI_TEST_CHECK( map ); + DALI_TEST_CHECK(map); - // If there's - value = map->Find( Toolkit::Visual::Transform::Property::SIZE ); - DALI_TEST_CHECK( value ); - DALI_TEST_EQUALS( value->Get< Vector2 >(), Vector2::ONE, TEST_LOCATION ); // Relative size so will take up 100% + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2::ONE, TEST_LOCATION); - value = map->Find( Toolkit::Visual::Transform::Property::SIZE_POLICY ); - DALI_TEST_CHECK( value ); - DALI_TEST_CHECK( value->Get< int >() == Toolkit::Visual::Transform::Policy::RELATIVE ); + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_CHECK(value->Get() == Toolkit::Visual::Transform::Policy::RELATIVE); END_TEST; } -int UtcDaliImageViewCustomShader(void) +int UtcDaliImageViewFittingModeFitKeepAspectRatio(void) { ToolkitTestApplication application; - // Set a custom shader with an image url - { - Property::Map properties; - Property::Map shader; - const std::string vertexShader = "Foobar"; - const std::string fragmentShader = "Foobar"; - shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; - shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + tet_infoline("Create an ImageVisual using FitKeepAspectRatio ( image: [600,600], view: [600,700] )"); + tet_infoline(" There should be need to change the transform, offset is adjusted to fit inside"); - properties[Visual::Property::TYPE] = Visual::IMAGE; - properties[Visual::Property::SHADER] = shader; - properties[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO); - ImageView imageView = ImageView::New(); - imageView.SetProperty( ImageView::Property::IMAGE, properties ); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(600, 700)); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); - application.SendNotification(); - application.Render(); + // Trigger a potential relayout + application.SendNotification(); + application.Render(); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); - Renderer renderer = imageView.GetRendererAt( 0 ); - Shader shader2 = renderer.GetShader(); - Property::Value value = shader2.GetProperty( Shader::Property::PROGRAM ); - Property::Map* map = value.GetMap(); - DALI_TEST_CHECK( map ); + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); - Property::Value* fragment = map->Find( "fragment" ); // fragment key name from shader-impl.cpp - DALI_TEST_EQUALS( fragmentShader, fragment->Get< std::string >(), TEST_LOCATION ); + // If there's + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); - Property::Value* vertex = map->Find( "vertex" ); // vertex key name from shader-impl.cpp - DALI_TEST_EQUALS( vertexShader, vertex->Get< std::string >(), TEST_LOCATION ); - } + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); - // Set a custom shader after setting an image url - { - Property::Map properties; - Property::Map shader; - const std::string vertexShader = "Foobar"; - const std::string fragmentShader = "Foobar"; - shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; - shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 50), TEST_LOCATION); - properties[Visual::Property::SHADER] = shader; + END_TEST; +} - ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME ); - imageView.SetProperty( ImageView::Property::IMAGE, properties ); +int UtcDaliImageViewFittingModesFill(void) +{ + ToolkitTestApplication application; - Stage::GetCurrent().Add( imageView ); + tet_infoline("Create an ImageVisual using Fill ( image: [600,600], view: [600,700] )"); + tet_infoline(" There should be no need to change the transform, only size is changed to fit view"); - application.SendNotification(); - application.Render(); + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FILL); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(600, 700)); - Renderer renderer = imageView.GetRendererAt( 0 ); - Shader shader2 = renderer.GetShader(); - Property::Value value = shader2.GetProperty( Shader::Property::PROGRAM ); - Property::Map* map = value.GetMap(); - DALI_TEST_CHECK( map ); + application.GetScene().Add(imageView); - Property::Value* fragment = map->Find( "fragment" ); // fragment key name from shader-impl.cpp - DALI_TEST_EQUALS( fragmentShader, fragment->Get< std::string >(), TEST_LOCATION ); + // Trigger a potential relayout + application.SendNotification(); + application.Render(); - Property::Value* vertex = map->Find( "vertex" ); // vertex key name from shader-impl.cpp - DALI_TEST_EQUALS( vertexShader, vertex->Get< std::string >(), TEST_LOCATION ); - } + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); - // Set a custom shader before setting an image url - { - Property::Map properties; - Property::Map shader; - const std::string vertexShader = "Foobar"; - const std::string fragmentShader = "Foobar"; - shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; - shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); - properties[Visual::Property::SHADER] = shader; + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2::ONE, TEST_LOCATION); // Change the internal size according to the image view size - ImageView imageView = ImageView::New(); - imageView.SetProperty( ImageView::Property::IMAGE, properties ); - imageView.SetProperty( ImageView::Property::IMAGE, TEST_IMAGE_FILE_NAME ); + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_CHECK(value->Get() == Toolkit::Visual::Transform::Policy::RELATIVE); - Stage::GetCurrent().Add( imageView ); + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); // OFFSET is zero - application.SendNotification(); - application.Render(); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + END_TEST; +} - Renderer renderer = imageView.GetRendererAt( 0 ); - Shader shader2 = renderer.GetShader(); - Property::Value value = shader2.GetProperty( Shader::Property::PROGRAM ); - Property::Map* map = value.GetMap(); - DALI_TEST_CHECK( map ); +int UtcDaliImageViewFittingModesOverfitKeepAspectRatio(void) +{ + ToolkitTestApplication application; - Property::Value* fragment = map->Find( "fragment" ); // fragment key name from shader-impl.cpp - DALI_TEST_EQUALS( fragmentShader, fragment->Get< std::string >(), TEST_LOCATION ); + tet_infoline("Create an ImageVisual using OverFitKeepAspectRatio ( image: [600,600], view: [600,500] )"); + tet_infoline(" offset or size is the same as view, but adjust internally using pixelArea "); - Property::Value* vertex = map->Find( "vertex" ); // vertex key name from shader-impl.cpp - DALI_TEST_EQUALS( vertexShader, vertex->Get< std::string >(), TEST_LOCATION ); - } + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::OVER_FIT_KEEP_ASPECT_RATIO); - // Set a custom shader after setting a property map - { - Property::Map properties; - Property::Map shader; - const std::string vertexShader = "Foobar"; - const std::string fragmentShader = "Foobar"; - shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; - shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(600, 500)); - properties[Visual::Property::SHADER] = shader; + application.GetScene().Add(imageView); - Property::Map properties1; - properties1[Visual::Property::TYPE] = Visual::IMAGE; - properties1[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + // Trigger a potential relayout + application.SendNotification(); + application.Render(); - ImageView imageView = ImageView::New(); - imageView.SetProperty( ImageView::Property::IMAGE, properties1 ); - imageView.SetProperty( ImageView::Property::IMAGE, properties ); + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); - Stage::GetCurrent().Add( imageView ); + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); - application.SendNotification(); - application.Render(); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + // If there's + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 500), TEST_LOCATION); // Change the internal size according to the image view size - Renderer renderer = imageView.GetRendererAt( 0 ); - Shader shader2 = renderer.GetShader(); - Property::Value value = shader2.GetProperty( Shader::Property::PROGRAM ); - Property::Map* map = value.GetMap(); - DALI_TEST_CHECK( map ); + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); - Property::Value* fragment = map->Find( "fragment" ); // fragment key name from shader-impl.cpp - DALI_TEST_EQUALS( fragmentShader, fragment->Get< std::string >(), TEST_LOCATION ); + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); // OFFSET is zero - Property::Value* vertex = map->Find( "vertex" ); // vertex key name from shader-impl.cpp - DALI_TEST_EQUALS( vertexShader, vertex->Get< std::string >(), TEST_LOCATION ); - } + END_TEST; +} - // Set a custom shader before setting a property map - { - Property::Map properties; - Property::Map shader; - const std::string vertexShader = "Foobar"; - const std::string fragmentShader = "Foobar"; - shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; - shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; +int UtcDaliImageViewFittingModesCenter01(void) +{ + ToolkitTestApplication application; - properties[Visual::Property::SHADER] = shader; + tet_infoline("Create an ImageVisual using Center ( image: [600,600], view: [700,700] )"); + tet_infoline(" There should be need to change the transform, offset is adjusted to fit inside"); - Property::Map properties1; - properties1[Visual::Property::TYPE] = Visual::IMAGE; - properties1[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::CENTER); - ImageView imageView = ImageView::New(); - imageView.SetProperty( ImageView::Property::IMAGE, properties ); - imageView.SetProperty( ImageView::Property::IMAGE, properties1 ); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(700, 700)); - Stage::GetCurrent().Add( imageView ); + application.GetScene().Add(imageView); - application.SendNotification(); - application.Render(); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + // Trigger a potential relayout + application.SendNotification(); + application.Render(); - Renderer renderer = imageView.GetRendererAt( 0 ); - Shader shader2 = renderer.GetShader(); - Property::Value value = shader2.GetProperty( Shader::Property::PROGRAM ); - Property::Map* map = value.GetMap(); - DALI_TEST_CHECK( map ); + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); - Property::Value* fragment = map->Find( "fragment" ); // fragment key name from shader-impl.cpp - DALI_TEST_EQUALS( fragmentShader, fragment->Get< std::string >(), TEST_LOCATION ); + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); - Property::Value* vertex = map->Find( "vertex" ); // vertex key name from shader-impl.cpp - DALI_TEST_EQUALS( vertexShader, vertex->Get< std::string >(), TEST_LOCATION ); - } + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(50, 50), TEST_LOCATION); END_TEST; } - -namespace +int UtcDaliImageViewFittingModesCenter02(void) { -static int gFailCounter = 0; -const int MAX_RETRIES(3); + ToolkitTestApplication application; -void ReloadImage(ImageView imageView) + tet_infoline("Create an ImageVisual using Center ( image: [600,600], view: [500,500] )"); + tet_infoline(" There should be need to change the transform, offset is adjusted to fit inside"); + + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::CENTER); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(700, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(50, 50), TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewFittingModesFitHeight01(void) { - Property::Map imageImmediateLoadingMap; - imageImmediateLoadingMap[ ImageVisual::Property::URL ] = "Non-existant-image.jpg"; - imageImmediateLoadingMap[ ImageVisual::Property::LOAD_POLICY ] = ImageVisual::LoadPolicy::IMMEDIATE; + ToolkitTestApplication application; - tet_infoline("Immediate load an image"); - imageView.SetProperty( ImageView::Property::IMAGE, imageImmediateLoadingMap ); + tet_infoline("Create an ImageVisual using FitHeight ( image: [600,600], view: [600,700] )"); + + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FIT_HEIGHT); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(600, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 700), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); // OFFSET is zero + + value = returnedMap.Find(DevelVisual::Property::VISUAL_FITTING_MODE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), "FIT_HEIGHT", TEST_LOCATION); // OFFSET is zero + + END_TEST; } -void ResourceFailedReload( Control control ) +int UtcDaliImageViewFittingModesFitHeight02(void) { - gFailCounter++; - if( gFailCounter < MAX_RETRIES ) - { - ReloadImage(ImageView::DownCast(control)); - } + ToolkitTestApplication application; + + tet_infoline("Create an ImageVisual using FitHeight ( image: [600,600], view: [700,600] )"); + + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 249x169 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FIT_HEIGHT); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(700, 600)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(50, 0), TEST_LOCATION); + + END_TEST; } + +int UtcDaliImageViewFittingModesFitWidth01(void) +{ + ToolkitTestApplication application; + + tet_infoline("Create an ImageVisual using FitWidth ( image: [600,600], view: [600,700] )"); + + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 600x600 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FIT_WIDTH); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(600, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 50), TEST_LOCATION); + + value = returnedMap.Find(DevelVisual::Property::VISUAL_FITTING_MODE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), "FIT_WIDTH", TEST_LOCATION); // OFFSET is zero + + END_TEST; } -int UtcDaliImageViewReloadFailedOnResourceReadySignal(void) +int UtcDaliImageViewFittingModesFitWidth02(void) { - tet_infoline("Test reloading failed image from within signal handler."); + ToolkitTestApplication application; + + tet_infoline("Create an ImageVisual using FitWidth ( image: [600,600], view:[700,600] )"); + + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, gImage_600_RGB); // 249x169 image + imageMap.Add(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FIT_WIDTH); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(700, 600)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(700, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); // OFFSET is zero + + END_TEST; +} + +int UtcDaliImageViewFittingModesChangeFittingMode01(void) +{ ToolkitTestApplication application; - gFailCounter = 0; + tet_infoline("UtcDaliImageViewFittingModesChangeFittingMode, image: [600,600], view:[800,700]"); ImageView imageView = ImageView::New(); - imageView.ResourceReadySignal().Connect( &ResourceFailedReload ); - DALI_TEST_EQUALS( gFailCounter, 0, TEST_LOCATION ); - ReloadImage(imageView); - // loading started, this waits for the loader thread to complete - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + // 1. Render using FittingMode::SHRINK_TO_FIT + Property::Map imageMap; + imageMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageMap[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO; + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(800, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout application.SendNotification(); + application.Render(); - DALI_TEST_EQUALS( gFailCounter, 1, TEST_LOCATION ); + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(700, 700), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(50, 0), TEST_LOCATION); + + // 2. Render again using DevelVisaul::CENTER + Property::Map imageMap2; + imageMap2[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap2[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageMap2[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::CENTER; + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap2); + imageView.SetProperty(Actor::Property::SIZE, Vector2(800, 700)); + + application.GetScene().Add(imageView); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + // Trigger a potential relayout application.SendNotification(); + application.Render(); + + returnedMap.Clear(); + visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + + visual.CreatePropertyMap(returnedMap); + + value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); - DALI_TEST_EQUALS( gFailCounter, 2, TEST_LOCATION ); + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(100, 50), TEST_LOCATION); - DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION ); + // 3. Render again using before fittingMode + Property::Map imageMap3; + imageMap3[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap3[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageMap3[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO; + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap3); + imageView.SetProperty(Actor::Property::SIZE, Vector2(800, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout application.SendNotification(); - DALI_TEST_EQUALS( gFailCounter, 3, TEST_LOCATION ); + application.Render(); + + returnedMap.Clear(); + visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + visual.CreatePropertyMap(returnedMap); + + value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(700, 700), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(50, 0), TEST_LOCATION); END_TEST; } + +int UtcDaliImageViewFittingModesChangeFittingMode02(void) +{ + ToolkitTestApplication application; + + tet_infoline("UtcDaliImageViewFittingModesChangeFittingMode, image: [600,600], view:[800,700]"); + + ImageView imageView = ImageView::New(); + + // 1. Render using FittingMode::OVER_FIT_KEEP_ASPECT_RATIO + Property::Map imageMap; + imageMap[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageMap[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::OVER_FIT_KEEP_ASPECT_RATIO; + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(800, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(800, 700), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); + + // 2. Render again using DevelVisaul::CENTER + Property::Map imageMap2; + imageMap2[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap2[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageMap2[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::CENTER; + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap2); + imageView.SetProperty(Actor::Property::SIZE, Vector2(800, 700)); + + application.GetScene().Add(imageView); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + returnedMap.Clear(); + visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + + visual.CreatePropertyMap(returnedMap); + + value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(600, 600), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(100, 50), TEST_LOCATION); + + // 3. Render again using before fittingMode + Property::Map imageMap3; + imageMap3[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::IMAGE; + imageMap3[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageMap3[DevelVisual::Property::VISUAL_FITTING_MODE] = Toolkit::DevelVisual::OVER_FIT_KEEP_ASPECT_RATIO; + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap3); + imageView.SetProperty(Actor::Property::SIZE, Vector2(800, 700)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + returnedMap.Clear(); + visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + visual.CreatePropertyMap(returnedMap); + + value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(800, 700), TEST_LOCATION); // Change the internal size according to the image view size + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE), TEST_LOCATION); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewFittingModesWithAnimatedVectorImageVisual(void) +{ + ToolkitTestApplication application; + + tet_infoline("Create an ImageVisual using SCALE_TO_FILL and animated vector image ( image: [600,600], view:[600,600] )"); + + ImageView imageView = ImageView::New(); + Property::Map imageMap; + imageMap.Add(Toolkit::Visual::Property::TYPE, DevelVisual::ANIMATED_VECTOR_IMAGE); + imageMap.Add(Toolkit::ImageVisual::Property::URL, TEST_ANIMATED_VECTOR_IMAGE_FILE_NAME); // 249x169 image + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, imageMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(600, 600)); + + application.GetScene().Add(imageView); + + // Trigger a potential relayout + application.SendNotification(); + application.Render(); + + Toolkit::Visual::Base visual = DevelControl::GetVisual(Toolkit::Internal::GetImplementation(imageView), Toolkit::ImageView::Property::IMAGE); + Property::Map returnedMap; + visual.CreatePropertyMap(returnedMap); + + Property::Value* value = returnedMap.Find(Toolkit::Visual::Property::TRANSFORM); + DALI_TEST_CHECK(value); + Property::Map* map = value->GetMap(); + DALI_TEST_CHECK(map); + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2::ONE, TEST_LOCATION); // Relative size so will take up 100% + + value = map->Find(Toolkit::Visual::Transform::Property::SIZE_POLICY); + DALI_TEST_CHECK(value); + DALI_TEST_CHECK(value->Get() == Toolkit::Visual::Transform::Policy::RELATIVE); + + value = map->Find(Toolkit::Visual::Transform::Property::OFFSET); + DALI_TEST_CHECK(value); + DALI_TEST_EQUALS(value->Get(), Vector2(0, 0), TEST_LOCATION); // OFFSET is zero + + END_TEST; +} + +int UtcDaliImageViewCustomShader(void) +{ + ToolkitTestApplication application; + + // Set a custom shader with an image url + { + Property::Map properties; + Property::Map shader; + const std::string vertexShader = "Foobar"; + const std::string fragmentShader = "Foobar"; + shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; + shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + + properties[Visual::Property::TYPE] = Visual::IMAGE; + properties[Visual::Property::SHADER] = shader; + properties[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(ImageView::Property::IMAGE, properties); + + application.GetScene().Add(imageView); + + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Renderer renderer = imageView.GetRendererAt(0); + Shader shader2 = renderer.GetShader(); + Property::Value value = shader2.GetProperty(Shader::Property::PROGRAM); + Property::Map* map = value.GetMap(); + DALI_TEST_CHECK(map); + + Property::Value* fragment = map->Find("fragment"); // fragment key name from shader-impl.cpp + DALI_TEST_EQUALS(fragmentShader, fragment->Get(), TEST_LOCATION); + + Property::Value* vertex = map->Find("vertex"); // vertex key name from shader-impl.cpp + DALI_TEST_EQUALS(vertexShader, vertex->Get(), TEST_LOCATION); + } + + // Set a custom shader after setting an image url + { + Property::Map properties; + Property::Map shader; + const std::string vertexShader = "Foobar"; + const std::string fragmentShader = "Foobar"; + shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; + shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + + properties[Visual::Property::SHADER] = shader; + + ImageView imageView = ImageView::New(TEST_IMAGE_FILE_NAME); + imageView.SetProperty(ImageView::Property::IMAGE, properties); + + application.GetScene().Add(imageView); + + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Renderer renderer = imageView.GetRendererAt(0); + Shader shader2 = renderer.GetShader(); + Property::Value value = shader2.GetProperty(Shader::Property::PROGRAM); + Property::Map* map = value.GetMap(); + DALI_TEST_CHECK(map); + + Property::Value* fragment = map->Find("fragment"); // fragment key name from shader-impl.cpp + DALI_TEST_EQUALS(fragmentShader, fragment->Get(), TEST_LOCATION); + + Property::Value* vertex = map->Find("vertex"); // vertex key name from shader-impl.cpp + DALI_TEST_EQUALS(vertexShader, vertex->Get(), TEST_LOCATION); + } + + // Set a custom shader before setting an image url + { + Property::Map properties; + Property::Map shader; + const std::string vertexShader = "Foobar"; + const std::string fragmentShader = "Foobar"; + shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; + shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + + properties[Visual::Property::SHADER] = shader; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(ImageView::Property::IMAGE, properties); + imageView.SetProperty(ImageView::Property::IMAGE, TEST_IMAGE_FILE_NAME); + + application.GetScene().Add(imageView); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Renderer renderer = imageView.GetRendererAt(0); + Shader shader2 = renderer.GetShader(); + Property::Value value = shader2.GetProperty(Shader::Property::PROGRAM); + Property::Map* map = value.GetMap(); + DALI_TEST_CHECK(map); + + Property::Value* fragment = map->Find("fragment"); // fragment key name from shader-impl.cpp + DALI_TEST_EQUALS(fragmentShader, fragment->Get(), TEST_LOCATION); + + Property::Value* vertex = map->Find("vertex"); // vertex key name from shader-impl.cpp + DALI_TEST_EQUALS(vertexShader, vertex->Get(), TEST_LOCATION); + } + + // Set a custom shader after setting a property map + { + Property::Map properties; + Property::Map shader; + const std::string vertexShader = "Foobar"; + const std::string fragmentShader = "Foobar"; + shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; + shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + + properties[Visual::Property::SHADER] = shader; + + Property::Map properties1; + properties1[Visual::Property::TYPE] = Visual::IMAGE; + properties1[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(ImageView::Property::IMAGE, properties1); + imageView.SetProperty(ImageView::Property::IMAGE, properties); + + application.GetScene().Add(imageView); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Renderer renderer = imageView.GetRendererAt(0); + Shader shader2 = renderer.GetShader(); + Property::Value value = shader2.GetProperty(Shader::Property::PROGRAM); + Property::Map* map = value.GetMap(); + DALI_TEST_CHECK(map); + + Property::Value* fragment = map->Find("fragment"); // fragment key name from shader-impl.cpp + DALI_TEST_EQUALS(fragmentShader, fragment->Get(), TEST_LOCATION); + + Property::Value* vertex = map->Find("vertex"); // vertex key name from shader-impl.cpp + DALI_TEST_EQUALS(vertexShader, vertex->Get(), TEST_LOCATION); + } + + // Set a custom shader before setting a property map + { + Property::Map properties; + Property::Map shader; + const std::string vertexShader = "Foobar"; + const std::string fragmentShader = "Foobar"; + shader[Visual::Shader::Property::FRAGMENT_SHADER] = fragmentShader; + shader[Visual::Shader::Property::VERTEX_SHADER] = vertexShader; + + properties[Visual::Property::SHADER] = shader; + + Property::Map properties1; + properties1[Visual::Property::TYPE] = Visual::IMAGE; + properties1[ImageVisual::Property::URL] = TEST_IMAGE_FILE_NAME; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(ImageView::Property::IMAGE, properties); + imageView.SetProperty(ImageView::Property::IMAGE, properties1); + + application.GetScene().Add(imageView); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Renderer renderer = imageView.GetRendererAt(0); + Shader shader2 = renderer.GetShader(); + Property::Value value = shader2.GetProperty(Shader::Property::PROGRAM); + Property::Map* map = value.GetMap(); + DALI_TEST_CHECK(map); + + Property::Value* fragment = map->Find("fragment"); // fragment key name from shader-impl.cpp + DALI_TEST_EQUALS(fragmentShader, fragment->Get(), TEST_LOCATION); + + Property::Value* vertex = map->Find("vertex"); // vertex key name from shader-impl.cpp + DALI_TEST_EQUALS(vertexShader, vertex->Get(), TEST_LOCATION); + } + + END_TEST; +} + +namespace +{ +static int gFailCounter = 0; +const int MAX_RETRIES(3); + +void ReloadImage(ImageView imageView) +{ + Property::Map imageImmediateLoadingMap; + imageImmediateLoadingMap[ImageVisual::Property::URL] = "Non-existant-image.jpg"; + imageImmediateLoadingMap[ImageVisual::Property::LOAD_POLICY] = ImageVisual::LoadPolicy::IMMEDIATE; + + tet_infoline("Immediate load an image"); + imageView.SetProperty(ImageView::Property::IMAGE, imageImmediateLoadingMap); +} + +void ResourceFailedReload(Control control) +{ + gFailCounter++; +} +} // namespace + +int UtcDaliImageViewReloadFailedOnResourceReadySignal(void) +{ + tet_infoline("Test reloading failed image from within signal handler."); + + ToolkitTestApplication application; + + gFailCounter = 0; + + ImageView imageView = ImageView::New(); + imageView.ResourceReadySignal().Connect(&ResourceFailedReload); + DALI_TEST_EQUALS(gFailCounter, 0, TEST_LOCATION); + ReloadImage(imageView); + + // loading started, this waits for the loader thread to complete + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gFailCounter, 1, TEST_LOCATION); + + ReloadImage(imageView); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gFailCounter, 2, TEST_LOCATION); + + ReloadImage(imageView); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gFailCounter, 3, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewLoadRemoteSVG(void) +{ + tet_infoline("Test load from a remote server."); + + ToolkitTestApplication application; + + const std::string svgImageUrl("https://dalihub.github.io/images/check.svg"); + + { + Toolkit::ImageView imageView; + imageView = Toolkit::ImageView::New(); + imageView.SetImage(svgImageUrl); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::SIZE, Vector2(300, 300)); + imageView.SetProperty(Actor::Property::POSITION, Vector3(150.0f, 150.0f, 0.0f)); + + application.GetScene().Add(imageView); + + DALI_TEST_CHECK(imageView); + + DALI_TEST_EQUALS(imageView.GetRendererCount(), 0u, TEST_LOCATION); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + } + + // Without size set + { + Toolkit::ImageView imageView; + imageView = Toolkit::ImageView::New(); + imageView.SetImage(svgImageUrl); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::POSITION, Vector3(150.0f, 150.0f, 0.0f)); + + application.GetScene().Add(imageView); + + DALI_TEST_CHECK(imageView); + + DALI_TEST_EQUALS(imageView.GetRendererCount(), 0u, TEST_LOCATION); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + } + + END_TEST; +} + +int UtcDaliImageViewLoadRemoteLottie(void) +{ + tet_infoline("Test load from a remote server. (Note we don't support real download now. Just for line coverage)"); + + ToolkitTestApplication application; + + { + Toolkit::ImageView imageView; + imageView = Toolkit::ImageView::New(); + imageView.SetImage("https://lottie.json"); + imageView.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT); + imageView.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); + imageView.SetProperty(Actor::Property::SIZE, Vector2(300, 300)); + imageView.SetProperty(Actor::Property::POSITION, Vector3(150.0f, 150.0f, 0.0f)); + + application.GetScene().Add(imageView); + + DALI_TEST_CHECK(imageView); + + application.SendNotification(); + application.Render(); + + // Do not check anything for here. + } + + END_TEST; +} + +int UtcDaliImageViewSyncSVGLoading(void) +{ + ToolkitTestApplication application; + + tet_infoline("ImageView Testing SVG image sync loading"); + + { + ImageView imageView = ImageView::New(); + + // Sync loading is used + Property::Map syncLoadingMap; + syncLoadingMap.Insert(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + syncLoadingMap.Insert(Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/svg1.svg"); + syncLoadingMap.Insert(Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING, true); + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); + + application.GetScene().Add(imageView); + DALI_TEST_CHECK(imageView); + + application.SendNotification(); + Vector3 naturalSize = imageView.GetNaturalSize(); + + DALI_TEST_EQUALS(naturalSize.width, 100.0f, TEST_LOCATION); + DALI_TEST_EQUALS(naturalSize.height, 100.0f, TEST_LOCATION); + } + END_TEST; +} + +int UtcDaliImageViewSyncSVGLoading02(void) +{ + ToolkitTestApplication application; + + tet_infoline("ImageView Testing SVG image sync loading"); + + { + ImageView imageView = ImageView::New(); + + // Sync loading is used + Property::Map syncLoadingMap; + syncLoadingMap.Insert(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + syncLoadingMap.Insert(Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/svg1.svg"); + syncLoadingMap.Insert(Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING, true); + syncLoadingMap.Insert(DevelVisual::Property::VISUAL_FITTING_MODE, Toolkit::DevelVisual::FIT_KEEP_ASPECT_RATIO); + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); + imageView.ResourceReadySignal().Connect(&OnResourceReadySignalSVG); + + application.GetScene().Add(imageView); + DALI_TEST_CHECK(imageView); + + application.SendNotification(); + application.Render(); + + // Check whether Image Visual transforms on ImageVieiw::OnRelayout() + Toolkit::Internal::Control& controlImpl = Toolkit::Internal::GetImplementation(imageView); + Toolkit::Visual::Base imageVisual = DevelControl::GetVisual(controlImpl, ImageView::Property::IMAGE); + Property::Map resultMap; + imageVisual.CreatePropertyMap(resultMap); + + Property::Value* transformValue = resultMap.Find(Visual::Property::TRANSFORM); + DALI_TEST_CHECK(transformValue); + Property::Map* retMap = transformValue->GetMap(); + DALI_TEST_CHECK(retMap); + + // Image Visual should be positioned depending on ImageView's padding + DALI_TEST_EQUALS(retMap->Find(Visual::Transform::Property::SIZE)->Get(), Vector2(100, 100), TEST_LOCATION); + + Vector3 naturalSize = imageView.GetNaturalSize(); + DALI_TEST_EQUALS(naturalSize.width, 100.0f, TEST_LOCATION); + DALI_TEST_EQUALS(naturalSize.height, 100.0f, TEST_LOCATION); + } + END_TEST; +} + +int UtcDaliImageViewAsyncSVGLoading(void) +{ + ToolkitTestApplication application; + + tet_infoline("ImageView Testing SVG image async loading"); + + { + ImageView imageView = ImageView::New(); + + // Async loading is used - default value of SYNCHRONOUS_LOADING is false. + Property::Map propertyMap; + propertyMap.Insert(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + propertyMap.Insert(Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/svg1.svg"); + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); + + application.GetScene().Add(imageView); + DALI_TEST_CHECK(imageView); + + application.SendNotification(); + + // Wait for loading + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + Vector3 naturalSize = imageView.GetNaturalSize(); + DALI_TEST_EQUALS(naturalSize.width, 100.0f, TEST_LOCATION); + DALI_TEST_EQUALS(naturalSize.height, 100.0f, TEST_LOCATION); + } + END_TEST; +} + +int UtcDaliImageViewSVGLoadingSyncSetInvalidValue(void) +{ + ToolkitTestApplication application; + + tet_infoline("ImageView Testing SVG image async loading"); + + // Sync loading + { + ImageView imageView = ImageView::New(); + + // Sync loading is used + Property::Map syncLoadingMap; + syncLoadingMap.Insert(Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE); + syncLoadingMap.Insert(Toolkit::ImageVisual::Property::URL, TEST_RESOURCE_DIR "/svg1.svg"); + + // Check to set invalid value + // The SYNCHRONOUS_LOADING property must be set to the bool value. + // Check if error log is outputted when setting other value like string. + // Even if the wrong value is set, the image will be shown normally, and the synchronous value should be the default value(false). + syncLoadingMap.Insert(Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING, std::to_string(5)); + imageView.SetProperty(ImageView::Property::IMAGE, syncLoadingMap); + + application.GetScene().Add(imageView); + DALI_TEST_CHECK(imageView); + + application.SendNotification(); + + // Wait for loading + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + Vector3 naturalSize = imageView.GetNaturalSize(); + DALI_TEST_EQUALS(naturalSize.width, 100.0f, TEST_LOCATION); + DALI_TEST_EQUALS(naturalSize.height, 100.0f, TEST_LOCATION); + + Property::Value value = imageView.GetProperty(ImageView::Property::IMAGE); + Property::Map* map = value.GetMap(); + DALI_TEST_CHECK(map); + + Property::Value* sync = map->Find(Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING); + DALI_TEST_CHECK(sync); + DALI_TEST_EQUALS(false, sync->Get(), TEST_LOCATION); + } + END_TEST; +} + +int UtcDaliImageViewSvgLoadingFailureLocalFile(void) +{ + // Local svg file - invalid file path + { + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + gResourceReadySignalFired = false; + + ImageView imageView = ImageView::New(TEST_RESOURCE_DIR "/foo.svg"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(200.f, 200.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // loading started, this waits for the loader thread - load + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + // Should be shown a broken image + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(textureTrace.FindMethod("BindTexture"), true, TEST_LOCATION); + } + + // Local svg file - invalid file path without size set + { + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + gResourceReadySignalFired = false; + textureTrace.Reset(); + + ImageView imageView = ImageView::New(TEST_RESOURCE_DIR "/foo.svg"); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // loading started, this waits for the loader thread - load & rasterize + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + // Should be shown a broken image + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(textureTrace.FindMethod("BindTexture"), true, TEST_LOCATION); + } + + // Local svg file - invalid file + { + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + gResourceReadySignalFired = false; + textureTrace.Reset(); + + ImageView imageView = ImageView::New(TEST_RESOURCE_DIR "/invalid.svg"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(200.f, 200.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // loading started, this waits for the loader thread - load & rasterize + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + // Should be shown a broken image + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(textureTrace.FindMethod("BindTexture"), true, TEST_LOCATION); + } + + END_TEST; +} + +int UtcDaliImageViewSvgLoadingFailureRemoteFile01(void) +{ + // Remote svg file + { + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + gResourceReadySignalFired = false; + + ImageView imageView = ImageView::New("https://127.0.0.1/foobar.svg"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(200.f, 200.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // loading started, this waits for the loader thread - load & rasterize + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + // Should be shown a broken image + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(textureTrace.FindMethod("BindTexture"), true, TEST_LOCATION); + } + + END_TEST; +} + +int UtcDaliImageViewSvgLoadingFailureRemoteFile02(void) +{ + // Remote svg file without size set + { + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + gResourceReadySignalFired = false; + + ImageView imageView = ImageView::New("https://127.0.0.1/foobar.svg"); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // loading started, this waits for the loader thread - load & rasterize + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + // Should be shown a broken image + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(textureTrace.FindMethod("BindTexture"), true, TEST_LOCATION); + } + + END_TEST; +} + +int UtcDaliImageViewSvgRasterizationFailure(void) +{ + ToolkitTestApplication application; + + gResourceReadySignalFired = false; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + ImageView imageView = ImageView::New(TEST_RESOURCE_DIR "/invalid1.svg"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(200.f, 200.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + // Should be shown a broken image + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(textureTrace.FindMethod("BindTexture"), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewSvgChageSize(void) +{ + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + ImageView imageView = ImageView::New(TEST_SVG_FILE_NAME); + application.GetScene().Add(imageView); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(Test::VectorImageRenderer::GetLoadCount(), 1, TEST_LOCATION); + + // Change actor size, then rasterization should be done again + imageView.SetProperty(Actor::Property::SIZE, Vector2(200.f, 200.f)); + + application.SendNotification(); + + // Wait for rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + // We should not load the file again. + DALI_TEST_EQUALS(Test::VectorImageRenderer::GetLoadCount(), 1, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewSvgAtlasing(void) +{ + ToolkitTestApplication application; + + TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace(); + callStack.Reset(); + callStack.Enable(true); + + Property::Map propertyMap; + propertyMap["url"] = TEST_SVG_FILE_NAME; + propertyMap["atlasing"] = true; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(ImageView::Property::IMAGE, propertyMap); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + application.GetScene().Add(imageView); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + // use atlas + TraceCallStack::NamedParams params1; + params1["width"] << 100; + params1["height"] << 100; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexSubImage2D", params1), true, TEST_LOCATION); + + imageView.SetProperty(Actor::Property::SIZE, Vector2(600.f, 600.f)); + + application.SendNotification(); + + // Wait for rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + callStack.Reset(); + + application.SendNotification(); + application.Render(16); + + // not use atlas + TraceCallStack::NamedParams params2; + params2["width"] << 600; + params2["height"] << 600; + DALI_TEST_EQUALS(callStack.FindMethodAndParams("TexImage2D", params2), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewTVGLoading(void) +{ + ToolkitTestApplication application; + + tet_infoline("ImageView Testing TVG image loading"); + + { + ImageView imageView = ImageView::New(TEST_RESOURCE_DIR "/test.tvg"); + application.GetScene().Add(imageView); + DALI_TEST_CHECK(imageView); + + application.SendNotification(); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + Vector3 naturalSize = imageView.GetNaturalSize(); + + DALI_TEST_EQUALS(naturalSize.width, 100.0f, TEST_LOCATION); + DALI_TEST_EQUALS(naturalSize.height, 100.0f, TEST_LOCATION); + } + END_TEST; +} + +int UtcDaliImageViewSvgDesiredSize01(void) +{ + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + int desiredWidth = 100, desiredHeight = 150; + ImageView imageView = ImageView::New(TEST_SVG_FILE_NAME, ImageDimensions(desiredWidth, desiredHeight)); + + application.GetScene().Add(imageView); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + { + std::stringstream out; + out << GL_TEXTURE_2D << ", " << 0u << ", " << desiredWidth << ", " << desiredHeight; + DALI_TEST_CHECK(textureTrace.FindMethodAndParams("TexImage2D", out.str().c_str())); + } + + END_TEST; +} + +int UtcDaliImageViewSvgDesiredSize02(void) +{ + ToolkitTestApplication application; + + TestGlAbstraction& gl = application.GetGlAbstraction(); + TraceCallStack& textureTrace = gl.GetTextureTrace(); + textureTrace.Enable(true); + + int desiredWidth = 150, desiredHeight = 100; + ImageView imageView = ImageView::New(); + imageView[ImageView::Property::IMAGE] = Property::Map().Add("url", TEST_SVG_FILE_NAME).Add("desiredWidth", desiredWidth).Add("desiredHeight", desiredHeight); + application.GetScene().Add(imageView); + + application.SendNotification(); + + // Wait for loading & rasterization + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + { + std::stringstream out; + out << GL_TEXTURE_2D << ", " << 0u << ", " << desiredWidth << ", " << desiredHeight; + DALI_TEST_CHECK(textureTrace.FindMethodAndParams("TexImage2D", out.str().c_str())); + } + + END_TEST; +} + +int UtcDaliImageViewImageLoadFailure01(void) +{ + ToolkitTestApplication application; + + Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get(); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL, TEST_BROKEN_IMAGE_S); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL, TEST_BROKEN_IMAGE_M); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE, TEST_BROKEN_IMAGE_L); + + std::string brokenUrl; + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_S, brokenUrl, TEST_LOCATION); + + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_M, brokenUrl, TEST_LOCATION); + + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_L, brokenUrl, TEST_LOCATION); + + ImageView imageView = ImageView::New("invalidUrl.png"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(200.f, 200.f)); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewImageLoadFailure02(void) +{ + ToolkitTestApplication application; + + Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get(); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL, TEST_BROKEN_IMAGE_DEFAULT); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL, TEST_BROKEN_IMAGE_M); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE, TEST_BROKEN_IMAGE_L); + + std::string brokenUrl; + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_DEFAULT, brokenUrl, TEST_LOCATION); + + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_M, brokenUrl, TEST_LOCATION); + + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_L, brokenUrl, TEST_LOCATION); + + ImageView imageView = ImageView::New("invalidUrl.png"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(30.f, 30.f)); + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewImageLoadFailure03(void) +{ + ToolkitTestApplication application; + + Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get(); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL, TEST_BROKEN_IMAGE_01); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL, TEST_BROKEN_IMAGE_02); + + std::string brokenUrl; + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_01, brokenUrl, TEST_LOCATION); + + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_02, brokenUrl, TEST_LOCATION); + + ImageView imageView = ImageView::New("invalidUrl.png"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewImageLoadFailure04(void) +{ + ToolkitTestApplication application; + + ImageView imageView = ImageView::New("invalidUrl.png"); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get(); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL, TEST_BROKEN_IMAGE_S); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL, "invalidBroken.png"); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE, TEST_BROKEN_IMAGE_L); + + ImageView imageView2 = ImageView::New("invalidUrl.png"); + imageView2.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + application.GetScene().Add(imageView2); + + std::string brokenUrl; + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_S, brokenUrl, TEST_LOCATION); + + brokenUrl = DevelStyleManager::GetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE); + DALI_TEST_EQUALS(TEST_BROKEN_IMAGE_L, brokenUrl, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL, "invalidBroken.9.png"); + + ImageView imageView3 = ImageView::New("invalidUrl.png"); + imageView3.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + application.GetScene().Add(imageView3); + + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + END_TEST; +} + +namespace +{ +static int gResourceReadySignalCounter = 0; + +void OnResourceReadySignal01(Control control) +{ + gResourceReadySignalCounter++; + + if(control.GetVisualResourceStatus(ImageView::Property::IMAGE) == Visual::ResourceStatus::READY) + { + if(gResourceReadySignalCounter == 1) + { + // Set image twice + // It makes the first new visual be deleted immediately + ImageView::DownCast(control).SetImage(gImage_34_RGBA); + ImageView::DownCast(control).SetImage(gImage_34_RGBA); + } + } + else if(control.GetVisualResourceStatus(ImageView::Property::IMAGE) == Visual::ResourceStatus::FAILED) + { + // Make the resource ready immediately + control[ImageView::Property::IMAGE] = gImage_600_RGB; + } +} + +void OnResourceReadySignal02(Control control) +{ + if(++gResourceReadySignalCounter == 1) + { + // It makes the first new visual be deleted immediately + // The first image will not be loaded. + control[ImageView::Property::IMAGE] = Property::Map().Add(ImageVisual::Property::URL, gImage_600_RGB).Add(ImageVisual::Property::RELEASE_POLICY, ImageVisual::ReleasePolicy::NEVER); + control[ImageView::Property::IMAGE] = TEST_IMAGE_1; + } +} + +ImageView gImageView1; +ImageView gImageView2; +ImageView gImageView3; +ImageView gImageView4; + +void OnResourceReadySignal03(Control control) +{ + if(gResourceReadySignalCounter == 0) + { + // Queue loading + // 1. Use cached image, then LoadComplete will be called right after OnResourceReadySignal03. + gImageView2[ImageView::Property::IMAGE] = gImage_34_RGBA; + + // 2. Load a new image + gImageView3[ImageView::Property::IMAGE] = TEST_IMAGE_1; + + // 3. Use the new image again + gImageView1[ImageView::Property::IMAGE] = TEST_IMAGE_1; + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal03); + } + else if(gResourceReadySignalCounter == 1) + { + // This is called from TextureManager::ProcessQueuedTextures(). + gImageView1.Unparent(); + gImageView1.Reset(); + } + gResourceReadySignalCounter++; +} + +void OnSimpleResourceReadySignal(Control control) +{ + // simply increate counter + gResourceReadySignalCounter++; +} + +int gResourceReadySignal04ComesOrder = 0; + +void OnResourceReadySignal04(Control control) +{ + gResourceReadySignalCounter++; + tet_printf("rc %d\n", gResourceReadySignalCounter); + if(gResourceReadySignalCounter == 1) + { + auto scene = gImageView1.GetParent(); + + // Request load something + // We hope this request result is return later than gImageView2. + gImageView3 = ImageView::New(TEST_IMAGE_1); + gImageView3.ResourceReadySignal().Connect(&OnResourceReadySignal04); + scene.Add(gImageView3); + gImageView4 = ImageView::New(TEST_IMAGE_2); + gImageView4.ResourceReadySignal().Connect(&OnResourceReadySignal04); + scene.Add(gImageView4); + + if(control == gImageView1) + { + gResourceReadySignal04ComesOrder = 1; + } + else + { + gResourceReadySignal04ComesOrder = 2; + } + } + if(gResourceReadySignalCounter == 2) + { + if(gResourceReadySignal04ComesOrder == 1 && control == gImageView2) + { + // Scene off first one. + gImageView1.Unparent(); + + // Scene off second one. + gImageView2.Unparent(); + } + else if(gResourceReadySignal04ComesOrder == 2 && control == gImageView1) + { + // Scene off first one. + gImageView2.Unparent(); + + // Scene off second one. + gImageView1.Unparent(); + } + else + { + // We can't check that this utc fail case. just pass always when we come here. + gResourceReadySignal04ComesOrder = -1; + } + + // If we don't seperate index of FreeList area + // and if we don't queue remove during obversing, + // cache index become something invalid data. + // In this case, some strange observer can be called. + // For example, gImageView4.LoadComplete will be called. + } +} + +void OnResourceReadySignal05(Control control) +{ + gResourceReadySignalCounter++; + + // Request load with same image + // NOTE : The url must not be same as gImageView1 + const int viewCount = 4; + for(int i = 0; i < viewCount; ++i) + { + gImageView1.Add(ImageView::New("invalid2.jpg")); + } +} + +int gResourceReadySignal06ComesOrder = 0; + +void OnResourceReadySignal06(Control control) +{ + gResourceReadySignalCounter++; + if(gResourceReadySignalCounter == 1) + { + auto scene = gImageView1.GetParent(); + + // Request load something + // We hope this request result is return later than gImageView2. + + Property::Map map1; + map1[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + map1[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = TEST_BROKEN_IMAGE_DEFAULT; + + gImageView3 = ImageView::New(); + gImageView3.SetProperty(Toolkit::ImageView::Property::IMAGE, map1); + gImageView3.ResourceReadySignal().Connect(&OnResourceReadySignal06); + + Property::Map map2; + map2[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_2; + map2[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = TEST_BROKEN_IMAGE_S; + gImageView4 = ImageView::New(); + gImageView4.SetProperty(Toolkit::ImageView::Property::IMAGE, map2); + gImageView4.ResourceReadySignal().Connect(&OnResourceReadySignal06); + + if(control == gImageView1) + { + gResourceReadySignal06ComesOrder = 1; + } + else + { + gResourceReadySignal06ComesOrder = 2; + } + } + if(gResourceReadySignalCounter == 2) + { + if(gResourceReadySignal06ComesOrder == 1 && control == gImageView2) + { + // Scene off first one. + gImageView1.Unparent(); + + // Scene off second one. + gImageView2.Unparent(); + } + else if(gResourceReadySignal06ComesOrder == 2 && control == gImageView1) + { + // Scene off first one. + gImageView2.Unparent(); + + // Scene off second one. + gImageView1.Unparent(); + } + else + { + // We can't check that this utc fail case. just pass always when we come here. + gResourceReadySignal06ComesOrder = -1; + } + + // If we don't seperate index of FreeList area + // and if we don't queue remove during obversing, + // cache index become something invalid data. + // In this case, some strange observer can be called. + // For example, gImageView4.LoadComplete will be called. + } +} + +void OnResourceReadySignal07(Control control) +{ + gResourceReadySignalCounter++; + // Load masked image + tet_printf("rc %d %d\n", gResourceReadySignalCounter, static_cast(gImageView2)); + + if(!gImageView2) + { + auto scene = gImageView1.GetParent(); + + Property::Map map1; + map1[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + map1[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = TEST_BROKEN_IMAGE_DEFAULT; + + gImageView2 = ImageView::New(); + gImageView2.SetProperty(Toolkit::ImageView::Property::IMAGE, map1); + gImageView2.ResourceReadySignal().Connect(&OnResourceReadySignal07); + + scene.Add(gImageView2); + } +} + +void OnResourceReadySignal08(Control control) +{ + gResourceReadySignalCounter++; + + if(gImageView1) + { + gImageView1.Unparent(); + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Unparent(); + gImageView2.Reset(); + } +} + +std::size_t gResourceReadySignal09Emitted = false; + +void OnResourceReadySignal09(Control control) +{ + gResourceReadySignalCounter++; + + if(gImageView1 && !gResourceReadySignal09Emitted) + { + gResourceReadySignal09Emitted = true; + gImageView1.ResourceReadySignal().Disconnect(&OnResourceReadySignal09); + + // Try to load cached invalid nine patch image. It will request load now. + gImageView1.SetImage(TEST_INVALID_NPATCH_FILE_NAME_01); + gImageView2.SetImage(TEST_INVALID_NPATCH_FILE_NAME_01); + + // Destroy all visuals immediatly. + gImageView1.Unparent(); + gImageView1.Reset(); + gImageView2.Unparent(); + gImageView2.Reset(); + } +} +constexpr int gResourceReadySignal10MaxCounter = 5; + +void OnResourceReadySignal10(Control control) +{ + gResourceReadySignalCounter++; + + tet_printf("OnResourceReadySignal10 comes!\n"); + if(gResourceReadySignalCounter < gResourceReadySignal10MaxCounter) + { + tet_printf("OnResourceReadySignal10 Set image\n"); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, gImage_34_RGBA); + tet_printf("OnResourceReadySignal10 Set image done\n"); + } +} + +void OnResourceReadySignal11(Control control) +{ + gResourceReadySignalCounter++; + + if(!gImageView2) + { + auto scene = gImageView1.GetParent(); + + // Try to load animated image visual here which is already cached, and then ignore forcely. + + Property::Map map1; + map1[Toolkit::ImageVisual::Property::URL] = TEST_GIF_FILE_NAME; + + gImageView2 = ImageView::New(); + gImageView2.SetProperty(Toolkit::ImageView::Property::IMAGE, map1); + + gImageView3 = ImageView::New(); + gImageView3.SetProperty(Toolkit::ImageView::Property::IMAGE, map1); + + scene.Add(gImageView2); + gImageView2.Unparent(); + + scene.Add(gImageView3); + gImageView3.Unparent(); + gImageView3.Reset(); // Destroy visual + } +} + +} // namespace + +int UtcDaliImageViewSetImageOnResourceReadySignal01(void) +{ + tet_infoline("Test setting image from within signal handler."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + ImageView imageView = ImageView::New(gImage_34_RGBA); + imageView.ResourceReadySignal().Connect(&OnResourceReadySignal01); + + application.GetScene().Add(imageView); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + + // Create a new ImageView to cache the image + ImageView imageView1 = ImageView::New(gImage_600_RGB); + application.GetScene().Add(imageView1); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + // Reset count + gResourceReadySignalCounter = 0; + + imageView[ImageView::Property::IMAGE] = "invalid.jpg"; + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + // Run idle callback + application.RunIdles(); + + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal02(void) +{ + tet_infoline("Test setting image from within signal handler."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + ImageView imageView = ImageView::New(gImage_34_RGBA); + imageView.ResourceReadySignal().Connect(&OnResourceReadySignal02); + + application.GetScene().Add(imageView); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + // Wait for loading an image + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal03(void) +{ + tet_infoline("Test setting image from within signal handler."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + gImageView1 = ImageView::New(gImage_34_RGBA); + application.GetScene().Add(gImageView1); + + // Wait for loading + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + gImageView2 = ImageView::New(gImage_600_RGB); + gImageView2.ResourceReadySignal().Connect(&OnResourceReadySignal03); + application.GetScene().Add(gImageView2); + + gImageView3 = ImageView::New(); + application.GetScene().Add(gImageView3); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + END_TEST; +} + +int UtcDaliImageViewOnResourceReadySignalWithBrokenAlphaMask01(void) +{ + tet_infoline("Test signal handler when image / mask image is broken."); + + ToolkitTestApplication application; + + auto TestResourceReadyUrl = [&application](int eventTriggerCount, bool isSynchronous, const std::string& url, const std::string& mask, const char* location) { + gResourceReadySignalCounter = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = url; + if(!mask.empty()) + { + map[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = mask; + } + map[Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING] = isSynchronous; + + ImageView imageView = ImageView::New(); + imageView[Toolkit::ImageView::Property::IMAGE] = map; + imageView[Actor::Property::SIZE] = Vector2(100.0f, 200.0f); + imageView.ResourceReadySignal().Connect(&OnSimpleResourceReadySignal); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(); + + if(!isSynchronous) + { + // Wait for loading + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(eventTriggerCount), true, location); + } + tet_printf("test %s [sync:%d] signal fired\n", url.c_str(), isSynchronous ? 1 : 0); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, location); + + imageView.Unparent(); + }; + + for(int synchronous = 0; synchronous <= 1; synchronous++) + { + tet_printf("Test normal case (sync:%d)\n", synchronous); + TestResourceReadyUrl(1, synchronous, gImage_600_RGB, "", TEST_LOCATION); + TestResourceReadyUrl(3, synchronous, gImage_600_RGB, gImage_34_RGBA, TEST_LOCATION); // 3 event trigger required : 2 image load + 1 apply mask + + tet_printf("Test broken image case (sync:%d)\n", synchronous); + TestResourceReadyUrl(1, synchronous, "invalid.jpg", "", TEST_LOCATION); + TestResourceReadyUrl(2, synchronous, "invalid.jpg", gImage_34_RGBA, TEST_LOCATION); + + tet_printf("Test broken mask image case (sync:%d)\n", synchronous); + TestResourceReadyUrl(2, synchronous, gImage_600_RGB, "invalid.png", TEST_LOCATION); + + tet_printf("Test broken both image, mask image case (sync:%d)\n", synchronous); + TestResourceReadyUrl(2, synchronous, "invalid.jpg", "invalid.png", TEST_LOCATION); + } + + END_TEST; +} + +int UtcDaliImageViewOnResourceReadySignalWithBrokenAlphaMask02(void) +{ + tet_infoline("Test signal handler when image try to use cached-and-broken mask image."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + auto TestBrokenMaskResourceReadyUrl = [&application](const std::string& url, const char* location) { + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = url; + // Use invalid mask url + map[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = "invalid.png"; + + ImageView imageView = ImageView::New(); + imageView[Toolkit::ImageView::Property::IMAGE] = map; + imageView[Actor::Property::SIZE] = Vector2(100.0f, 200.0f); + imageView.ResourceReadySignal().Connect(&OnSimpleResourceReadySignal); + + application.GetScene().Add(imageView); + + // Don't unparent imageView, for keep the cache. + }; + + // Use more than 4 images (The number of LocalImageLoadThread) + const std::vector testUrlList = {gImage_34_RGBA, gImage_600_RGB, "invalid.jpg" /* invalid url */, TEST_IMAGE_1, TEST_IMAGE_2, TEST_BROKEN_IMAGE_DEFAULT}; + + int expectResourceReadySignalCounter = 0; + + for(auto& url : testUrlList) + { + TestBrokenMaskResourceReadyUrl(url, TEST_LOCATION); + expectResourceReadySignalCounter++; + } + + // Remain 1 signal due to we use #URL + 1 mask image. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(expectResourceReadySignalCounter + 1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(gResourceReadySignalCounter, expectResourceReadySignalCounter, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewCheckVariousCaseSendOnResourceReadySignal(void) +{ + tet_infoline("Test signal handler various case."); + + auto TestResourceReadyUrl = [](int eventTriggerCount, bool isSynchronous, bool loadSuccess, const std::string& url, const std::string& mask, const char* location) { + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = url; + if(!mask.empty()) + { + map[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = mask; + } + map[Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING] = isSynchronous; + + ImageView imageView = ImageView::New(); + imageView[Toolkit::ImageView::Property::IMAGE] = map; + imageView[Actor::Property::SIZE] = Vector2(100.0f, 200.0f); + imageView.ResourceReadySignal().Connect(&OnSimpleResourceReadySignal); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(); + + // Wait for loading + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(eventTriggerCount), true, location); + + tet_printf("test %s [sync:%d] signal fired\n", url.c_str(), isSynchronous ? 1 : 0); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, location); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(Toolkit::ImageView::Property::IMAGE), loadSuccess ? Toolkit::Visual::ResourceStatus::READY : Toolkit::Visual::ResourceStatus::FAILED, location); + + imageView.Unparent(); + }; + + auto TestAuxiliaryResourceReadyUrl = [](bool isSynchronous, bool loadSuccess, const std::string& url, const std::string& auxiliaryUrl, const char* location) { + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = url; + map[Toolkit::DevelImageVisual::Property::AUXILIARY_IMAGE] = auxiliaryUrl; + map[Toolkit::DevelImageVisual::Property::AUXILIARY_IMAGE_ALPHA] = 0.5f; + map[Toolkit::ImageVisual::Property::SYNCHRONOUS_LOADING] = isSynchronous; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + imageView.ResourceReadySignal().Connect(&OnSimpleResourceReadySignal); + application.GetScene().Add(imageView); + + application.SendNotification(); + application.Render(); + + if(!isSynchronous) + { + // Wait for loading + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, location); + } + + tet_printf("test %s [sync:%d] signal fired\n", url.c_str(), isSynchronous ? 1 : 0); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, location); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(Toolkit::ImageView::Property::IMAGE), loadSuccess ? Toolkit::Visual::ResourceStatus::READY : Toolkit::Visual::ResourceStatus::FAILED, TEST_LOCATION); + + imageView.Unparent(); + }; + + // Case 1 : asynchronous loading + tet_printf("Test invalid single simple image Asynchronous\n"); + + // Test normal case + TestResourceReadyUrl(1, 0, 1, gImage_600_RGB, "", TEST_LOCATION); + TestResourceReadyUrl(2, 0, 1, TEST_SVG_FILE_NAME, "", TEST_LOCATION); // load & rasterize + TestResourceReadyUrl(1, 0, 1, TEST_BROKEN_IMAGE_L, "", TEST_LOCATION); + + TestResourceReadyUrl(2, 0, 1, TEST_GIF_FILE_NAME, "", TEST_LOCATION); // 2 image loading - batch size + TestResourceReadyUrl(2, 0, 1, TEST_ANIMATED_VECTOR_IMAGE_FILE_NAME, "", TEST_LOCATION); // load & rasterize + + TestResourceReadyUrl(3, 0, 1, gImage_600_RGB, gImage_34_RGBA, TEST_LOCATION); // 2 image loading + 1 applymask + + TestAuxiliaryResourceReadyUrl(0, 1, TEST_BROKEN_IMAGE_L, gImage_34_RGBA, TEST_LOCATION); + + // Test broken case + TestResourceReadyUrl(1, 0, 0, "invalid.jpg", "", TEST_LOCATION); + TestResourceReadyUrl(1, 0, 0, "invalid.svg", "", TEST_LOCATION); + TestResourceReadyUrl(1, 0, 0, "invalid.9.png", "", TEST_LOCATION); + TestResourceReadyUrl(1, 0, 0, "invalid.gif", "", TEST_LOCATION); // 1 image loading + TestResourceReadyUrl(1, 0, 0, "invalid.json", "", TEST_LOCATION); // 0 rasterize + + TestResourceReadyUrl(2, 0, 0, "invalid.jpg", "invalid.png", TEST_LOCATION); // 2 image loading + TestResourceReadyUrl(2, 0, 1, gImage_600_RGB, "invalid.png", TEST_LOCATION); // 2 image loading + TestResourceReadyUrl(2, 0, 0, "invalid.jpg", gImage_34_RGBA, TEST_LOCATION); // 2 image loading + + TestAuxiliaryResourceReadyUrl(0, 0, "invalid.9.png", "invalid.png", TEST_LOCATION); + TestAuxiliaryResourceReadyUrl(0, 1, TEST_BROKEN_IMAGE_L, "invalid.png", TEST_LOCATION); + TestAuxiliaryResourceReadyUrl(0, 0, "invalid.9.png", gImage_34_RGBA, TEST_LOCATION); + + // Case 2 : Synchronous loading + tet_printf("Test invalid single simple image Synchronous\n"); + + // Test normal case + TestResourceReadyUrl(0, 1, 1, gImage_600_RGB, "", TEST_LOCATION); + TestResourceReadyUrl(0, 1, 1, TEST_SVG_FILE_NAME, "", TEST_LOCATION); // synchronous rasterize + TestResourceReadyUrl(0, 1, 1, TEST_BROKEN_IMAGE_L, "", TEST_LOCATION); + + TestResourceReadyUrl(1, 1, 1, TEST_GIF_FILE_NAME, "", TEST_LOCATION); // first frame image loading sync + second frame image loading async + + TestResourceReadyUrl(0, 1, 1, gImage_600_RGB, gImage_34_RGBA, TEST_LOCATION); + + TestAuxiliaryResourceReadyUrl(1, 1, TEST_BROKEN_IMAGE_L, gImage_34_RGBA, TEST_LOCATION); + + // Test broken case + TestResourceReadyUrl(0, 1, 0, "invalid.jpg", "", TEST_LOCATION); + TestResourceReadyUrl(0, 1, 0, "invalid.svg", "", TEST_LOCATION); + TestResourceReadyUrl(0, 1, 0, "invalid.9.png", "", TEST_LOCATION); + TestResourceReadyUrl(0, 1, 0, "invalid.gif", "", TEST_LOCATION); + + TestResourceReadyUrl(0, 1, 0, "invalid.jpg", "invalid.png", TEST_LOCATION); + TestResourceReadyUrl(0, 1, 1, gImage_600_RGB, "invalid.png", TEST_LOCATION); + TestResourceReadyUrl(0, 1, 0, "invalid.jpg", gImage_34_RGBA, TEST_LOCATION); + + TestAuxiliaryResourceReadyUrl(1, 0, "invalid.9.png", "invalid.png", TEST_LOCATION); + TestAuxiliaryResourceReadyUrl(1, 1, TEST_BROKEN_IMAGE_L, "invalid.png", TEST_LOCATION); + TestAuxiliaryResourceReadyUrl(1, 0, "invalid.9.png", gImage_34_RGBA, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal04(void) +{ + tet_infoline("Test texturemanager's remove queue works well within signal handler."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + gResourceReadySignal04ComesOrder = 0; + + gImageView1 = ImageView::New("invalid.jpg"); // request invalid image, to make loading failed fast. + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal04); + application.GetScene().Add(gImageView1); + + gImageView2 = ImageView::New("invalid.png"); // request invalid image, to make loading failed fast. + gImageView2.ResourceReadySignal().Connect(&OnResourceReadySignal04); + application.GetScene().Add(gImageView2); + + application.SendNotification(); + application.Render(); + + tet_infoline("Try to load 2 invalid image"); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + tet_infoline("load done"); + + // We can test this UTC only if gImageView1 and gImageView2 loaded done. + if(gResourceReadySignal04ComesOrder == -1) + { + tet_infoline("Bad news.. gImageView3 or gImageView4 loaded faster than others. just skip this UTC"); + } + else + { + // gImageView3 and gImageView4 load must not be successed yet. + DALI_TEST_EQUALS(gImageView3.GetRendererCount(), 0u, TEST_LOCATION); + DALI_TEST_EQUALS(gImageView4.GetRendererCount(), 0u, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + tet_infoline("Try to load 2 valid image"); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 4, TEST_LOCATION); + + tet_infoline("load done"); + + // gImageView3 and gImageView4 load must be successed now. + DALI_TEST_EQUALS(gImageView3.GetRendererAt(0).GetTextures().GetTextureCount(), 1u, TEST_LOCATION); + DALI_TEST_EQUALS(gImageView4.GetRendererAt(0).GetTextures().GetTextureCount(), 1u, TEST_LOCATION); + } + + END_TEST; +} +int UtcDaliImageViewSetImageOnResourceReadySignal05(void) +{ + tet_infoline("Test multiple views with same image during ResourceReady load the image only 1 times"); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + gImageView1 = ImageView::New("invalid.jpg"); // request invalid image, to make loading failed fast. + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal05); + application.GetScene().Add(gImageView1); + + application.SendNotification(); + application.Render(); + + tet_infoline("Try to load 1 invalid.jpg image"); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, TEST_LOCATION); + + tet_infoline("Try to load 1 invalid2.jpg image"); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + tet_infoline("Now we don't have any image to be loaded. Check event thread trigger failed."); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1, 1), false, TEST_LOCATION); + + gImageView1.Unparent(); + gImageView1.Reset(); + + END_TEST; +} +int UtcDaliImageViewSetImageOnResourceReadySignal06(void) +{ + tet_infoline("Test texturemanager's remove image & mask queue works well within signal handler."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + gResourceReadySignal06ComesOrder = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = "invalid.jpg"; + map[Toolkit::ImageVisual::Property::ALPHA_MASK_URL] = "invalid.png"; + + gImageView1 = ImageView::New(); // request invalid image, to make loading failed fast. + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal06); + application.GetScene().Add(gImageView1); + + gImageView2 = ImageView::New(); // request invalid image, to make loading failed fast. + gImageView2.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView2.ResourceReadySignal().Connect(&OnResourceReadySignal06); + application.GetScene().Add(gImageView2); + + application.SendNotification(); + application.Render(); + + tet_infoline("Try to load 2 invalid image"); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + tet_infoline("load done"); + + // We can test this UTC only if gImageView1 and gImageView2 loaded done. + if(gResourceReadySignal06ComesOrder == -1) + { + tet_infoline("Bad news.. gImageView3 or gImageView4 loaded faster than others. just skip this UTC"); + } + else + { + // gImageView3 and gImageView4 load must not be successed yet. + DALI_TEST_EQUALS(gImageView3.GetRendererCount(), 0u, TEST_LOCATION); + DALI_TEST_EQUALS(gImageView4.GetRendererCount(), 0u, TEST_LOCATION); + + application.GetScene().Add(gImageView3); + application.GetScene().Add(gImageView4); + application.SendNotification(); + application.Render(); + + tet_infoline("Try to load 2 valid image"); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + tet_infoline("Note that resource ready should not come now."); + tet_infoline("Try to load remained 2 valid image + apply masking"); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(4), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 4, TEST_LOCATION); + + tet_infoline("Check all resource ready comes now."); + } + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal07(void) +{ + tet_infoline("Test texturemanager's remove image & mask queue works well within signal handler 02."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal07); + application.GetScene().Add(gImageView1); + + application.SendNotification(); + application.Render(); + + // Load gImageView1 + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, TEST_LOCATION); + + tet_infoline("load image1 done"); + + // Load gImageView2 and mask + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, TEST_LOCATION); + + // gImageView2 mask apply done + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + tet_infoline("load image2 done"); + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal08(void) +{ + tet_infoline("Test remove npatch images during resource ready"); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = TEST_BROKEN_IMAGE_M; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + + // Case 1 : Remove all images during resource ready. + try + { + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal08); + application.GetScene().Add(gImageView1); + + application.SendNotification(); + application.Render(); + + // Load gImageView1 + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + + // Clear cache. + application.SendNotification(); + application.Render(); + + gResourceReadySignalCounter = 0; + + // Case 2 : Remove all images when we use cached resource. + try + { + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView1.ResourceReadySignal().Connect(&OnSimpleResourceReadySignal); + application.GetScene().Add(gImageView1); + + application.SendNotification(); + application.Render(); + + // Load gImageView1 + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + gImageView2 = ImageView::New(); + gImageView2.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView2.ResourceReadySignal().Connect(&OnResourceReadySignal08); + application.GetScene().Add(gImageView2); + DALI_TEST_EQUALS(gResourceReadySignalCounter, 2, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal09(void) +{ + tet_infoline("Test load invalid npatch images during invalid resource ready"); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = TEST_INVALID_NPATCH_FILE_NAME_01; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + if(gImageView3) + { + gImageView3.Reset(); + } + + // Dummy view with npatch image + ImageView dummyView = ImageView::New(TEST_BROKEN_IMAGE_M); + application.GetScene().Add(dummyView); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(); + + // Case 1 : Reload images during resource ready. + try + { + gResourceReadySignal09Emitted = false; + + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal09); + application.GetScene().Add(gImageView1); + + gImageView2 = ImageView::New(); + application.GetScene().Add(gImageView2); + + // Load TEST_INVALID_NPATCH_FILE_NAME_01 + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + // Load TEST_INVALID_NPATCH_FILE_NAME_01 one more times. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + + // Clear cache. + application.SendNotification(); + application.Render(); + + gResourceReadySignalCounter = 0; + + // Case 2 : Remove all images when we use cached resource. + try + { + gResourceReadySignal09Emitted = false; + + gImageView3 = ImageView::New(); + gImageView3.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView3.ResourceReadySignal().Connect(&OnSimpleResourceReadySignal); + application.GetScene().Add(gImageView3); + + gImageView2 = ImageView::New(); + application.GetScene().Add(gImageView2); + + // Load gImageView2 + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal09); + application.GetScene().Add(gImageView1); + + // Load gImageView1 + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + // Load TEST_INVALID_NPATCH_FILE_NAME_01 one more times. + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + if(gImageView3) + { + gImageView3.Reset(); + } + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal10(void) +{ + tet_infoline("Test ResourceReady signal comes more than 2 times."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + + // Dummy view to cache image. + ImageView dummyView = ImageView::New(gImage_34_RGBA); + application.GetScene().Add(dummyView); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(); + + try + { + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, gImage_34_RGBA); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal10); + application.GetScene().Add(gImageView1); // It will call resourceReady signal 1 time. + + tet_printf("ResourceReady called %d times\n", gResourceReadySignalCounter); + + DALI_TEST_GREATER(gResourceReadySignal10MaxCounter, gResourceReadySignalCounter, TEST_LOCATION); // Check whether resource ready call too much. + + for(int i = 0; i < gResourceReadySignal10MaxCounter; ++i) + { + tet_printf("RunIdles\n"); + // Executes the idle callbacks. + application.RunIdles(); + application.SendNotification(); + application.Render(); + tet_printf("RunIdles done\n"); + } + tet_printf("ResourceReady called %d times\n", gResourceReadySignalCounter); + + DALI_TEST_EQUALS(gResourceReadySignalCounter, gResourceReadySignal10MaxCounter, TEST_LOCATION); + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + + // Clear cache. + application.SendNotification(); + application.Render(); + + gResourceReadySignalCounter = 0; + + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal10WhenAddIdleFailed(void) +{ + tet_infoline("Test ResourceReady signal comes more than 2 times, but do not call again if AddIdle failed"); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + + // Dummy view to cache image. + ImageView dummyView = ImageView::New(gImage_34_RGBA); + application.GetScene().Add(dummyView); + + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(); + + // Make AddIdle failed. + ToolkitApplication::ADD_IDLE_SUCCESS = false; + + try + { + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, gImage_34_RGBA); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal10); + application.GetScene().Add(gImageView1); // It will call resourceReady signal 1 time. + + tet_printf("ResourceReady called %d times\n", gResourceReadySignalCounter); + + DALI_TEST_GREATER(gResourceReadySignal10MaxCounter, gResourceReadySignalCounter, TEST_LOCATION); // Check whether resource ready call too much. + + for(int i = 0; i < gResourceReadySignal10MaxCounter; ++i) + { + tet_printf("RunIdles\n"); + // Executes the idle callbacks. + application.RunIdles(); + application.SendNotification(); + application.Render(); + tet_printf("RunIdles done\n"); + } + tet_printf("ResourceReady called %d times\n", gResourceReadySignalCounter); + + DALI_TEST_GREATER(gResourceReadySignal10MaxCounter, gResourceReadySignalCounter, TEST_LOCATION); // Check whether resource ready not called multiple times. + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + + ToolkitApplication::ADD_IDLE_SUCCESS = true; + + // Clear cache. + application.SendNotification(); + application.Render(); + + gResourceReadySignalCounter = 0; + + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + + END_TEST; +} + +int UtcDaliImageViewSetImageOnResourceReadySignal11(void) +{ + tet_infoline("Test ResourceReady Add AnimatedImageVisual and then Remove immediately."); + + ToolkitTestApplication application; + + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + if(gImageView3) + { + gImageView3.Reset(); + } + + try + { + gImageView1 = ImageView::New(); + gImageView1.SetProperty(Toolkit::ImageView::Property::IMAGE, TEST_GIF_FILE_NAME); + gImageView1.ResourceReadySignal().Connect(&OnResourceReadySignal11); + application.GetScene().Add(gImageView1); // It will call resourceReady signal 1 time. + + tet_printf("ResourceReady called %d times\n", gResourceReadySignalCounter); + + DALI_TEST_EQUALS(gResourceReadySignalCounter, 0, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + // Load gImageView1 + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + tet_printf("ResourceReady called %d times\n", gResourceReadySignalCounter); + + DALI_TEST_EQUALS(gResourceReadySignalCounter, 1, TEST_LOCATION); + + DALI_TEST_CHECK(true); + } + catch(...) + { + // Exception should not happened + DALI_TEST_CHECK(false); + } + + // Clear cache. + application.SendNotification(); + application.Render(); + + gResourceReadySignalCounter = 0; + + // Clear image view for clear test + + if(gImageView1) + { + gImageView1.Reset(); + } + if(gImageView2) + { + gImageView2.Reset(); + } + if(gImageView3) + { + gImageView3.Reset(); + } + + END_TEST; +} + +int UtcDaliImageViewUseSameUrlWithAnimatedImageVisual(void) +{ + tet_infoline("Test multiple views with same image in animated image visual"); + ToolkitTestApplication application; + + gImageView1 = ImageView::New(TEST_WEBP_FILE_NAME); + application.GetScene().Add(gImageView1); + + tet_infoline("Remove imageView and Create new imageView with same url"); + application.GetScene().Remove(gImageView1); + gImageView2 = ImageView::New(TEST_WEBP_FILE_NAME); + application.GetScene().Add(gImageView2); + + application.SendNotification(); + application.Render(); + + tet_infoline("Check the ImageView load image successfully"); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + END_TEST; +} + +int UtcDaliImageViewNpatchImageCacheTest01(void) +{ + tet_infoline("Test npatch image cached"); + + ToolkitTestApplication application; + ImageView imageView[2]; + + auto& gl = application.GetGlAbstraction(); + gl.EnableTextureCallTrace(true); + auto& textureCallStack = gl.GetTextureTrace(); + textureCallStack.Enable(true); + textureCallStack.EnableLogging(true); + + auto TestNPatch = [&](int index, const std::string& nPatchImageUrl, const char* location) { + if(imageView[index]) + { + imageView[index].Unparent(); + } + + // Ensure remove npatch cache if required. + application.SendNotification(); + application.Render(); + + imageView[index] = ImageView::New(nPatchImageUrl); + imageView[index].SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + application.GetScene().Add(imageView[index]); + }; + + TestNPatch(0, TEST_BROKEN_IMAGE_M, TEST_LOCATION); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + tet_printf("trace : \n%s\n", textureCallStack.GetTraceString().c_str()); + + // Check we gen only 1 textures + DALI_TEST_EQUALS(textureCallStack.CountMethod("GenTextures"), 1, TEST_LOCATION); + textureCallStack.Reset(); + + // Let we use cached textures + for(int i = 0; i < 10; i++) + { + TestNPatch(1, TEST_BROKEN_IMAGE_M, TEST_LOCATION); + TestNPatch(0, TEST_BROKEN_IMAGE_M, TEST_LOCATION); + } + + application.SendNotification(); + application.Render(); + // Check we use cached npatch data so we don't generate new texture textures + DALI_TEST_EQUALS(textureCallStack.CountMethod("GenTextures"), 0, TEST_LOCATION); + + // Clear all cached + imageView[0].Unparent(); + imageView[0].Reset(); + imageView[1].Unparent(); + imageView[1].Reset(); + + application.SendNotification(); + application.Render(); + + textureCallStack.Reset(); + // Let we use deference textures + TestNPatch(1, TEST_BROKEN_IMAGE_S, TEST_LOCATION); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + // Try to load multiple times. + for(int i = 0; i < 3; i++) + { + TestNPatch(0, TEST_BROKEN_IMAGE_M, TEST_LOCATION); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + TestNPatch(1, TEST_BROKEN_IMAGE_S, TEST_LOCATION); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + } + application.SendNotification(); + application.Render(); + + imageView[0].Unparent(); + imageView[0].Reset(); + imageView[1].Unparent(); + imageView[1].Reset(); + + application.SendNotification(); + application.Render(); + + // Check memory leak + DALI_TEST_EQUALS(textureCallStack.CountMethod("GenTextures"), textureCallStack.CountMethod("DeleteTextures"), TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewNpatchImageCacheTest02(void) +{ + tet_infoline("Test npatch image cached with border"); + + ToolkitTestApplication application; + ImageView imageView[2]; + + auto& gl = application.GetGlAbstraction(); + gl.EnableTextureCallTrace(true); + auto& textureCallStack = gl.GetTextureTrace(); + textureCallStack.Enable(true); + textureCallStack.EnableLogging(true); + + auto TestBorderImage = [&](int index, const std::string& normalImageUrl, const Rect border, const char* location) { + Property::Map map; + map[Toolkit::Visual::Property::TYPE] = Toolkit::Visual::N_PATCH; + map[Toolkit::ImageVisual::Property::URL] = normalImageUrl; + map[Toolkit::ImageVisual::Property::BORDER] = border; + + imageView[index] = ImageView::New(); + imageView[index].SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView[index].SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + application.GetScene().Add(imageView[index]); + }; + + TestBorderImage(0, gImage_34_RGBA, Rect(0, 0, 0, 0), TEST_LOCATION); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(); + + tet_printf("trace : \n%s\n", textureCallStack.GetTraceString().c_str()); + + // Check we gen only 1 textures + DALI_TEST_EQUALS(textureCallStack.CountMethod("GenTextures"), 1, TEST_LOCATION); + textureCallStack.Reset(); + + // Let we use cached textures + for(int i = 0; i < 10; i++) + { + TestBorderImage(0, gImage_34_RGBA, Rect(i, i + 1, i + 2, i + 3), TEST_LOCATION); + TestBorderImage(1, gImage_34_RGBA, Rect(i + 1, i, i + 3, i + 2), TEST_LOCATION); + } + + application.SendNotification(); + application.Render(); + + // Check we use cached npatch data so we don't generate new texture textures + DALI_TEST_EQUALS(textureCallStack.CountMethod("GenTextures"), 0, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewPlaceholderImage01(void) +{ + tet_infoline("Test imageView use placeholder image"); + + ToolkitTestApplication application; + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + application.GetScene().Add(imageView); + + Property::Value value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + std::string url; + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url.empty()); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + + application.SendNotification(); + application.Render(); + + value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url == gImage_34_RGBA); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + // Replace Image test + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + map[ImageView::Property::PLACEHOLDER_IMAGE] = gImage_34_RGBA; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_2; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + // Replace Image test2 + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_2; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(900); + + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + END_TEST; +} + +int UtcDaliImageViewPlaceholderImage02(void) +{ + tet_infoline("Test imageView use placeholder image without resource ready"); + + ToolkitTestApplication application; + + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + application.GetScene().Add(imageView); + + Property::Value value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + std::string url; + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url.empty()); + + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url == gImage_34_RGBA); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + + gResourceReadySignalFired = false; + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(gResourceReadySignalFired, false, TEST_LOCATION); + + END_TEST; +} + +int UtcDaliImageViewTransitionEffect01(void) +{ + tet_infoline("Test imageView use transition effect"); + + ToolkitTestApplication application; + Property::Map map; + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + map[Toolkit::Visual::Property::OPACITY] = 0.9f; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + application.GetScene().Add(imageView); + + Property::Value value = imageView.GetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT); + bool transition; + DALI_TEST_CHECK(value.Get(transition)); + DALI_TEST_CHECK(transition == false); + imageView.SetProperty(Toolkit::ImageView::Property::ENABLE_TRANSITION_EFFECT, true); + + application.SendNotification(); + application.Render(); + + value = imageView.GetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT); + DALI_TEST_CHECK(value.Get(transition)); + DALI_TEST_CHECK(transition == true); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(); + + // Test transition effect with placeholder + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, ""); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + // Test transition effect without placeholder + map[Toolkit::ImageVisual::Property::URL] = TEST_IMAGE_1; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = ""; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + map[Toolkit::ImageVisual::Property::URL] = gImage_600_RGB; + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + imageView.SetImage(TEST_IMAGE_1); + application.SendNotification(); + application.Render(); + + imageView.SetImage(gImage_600_RGB); + application.SendNotification(); + application.Render(9000); + + imageView.SetImage(""); + application.SendNotification(); + application.Render(); + + imageView.SetImage(TEST_IMAGE_1); + application.SendNotification(); + application.Render(); + + // Clear all cached + imageView.Unparent(); + imageView.Reset(); + + END_TEST; +} + +int UtcDaliImageViewTransitionEffect02(void) +{ + tet_infoline("Test imageView use transition effect with replace image"); + + ToolkitTestApplication application; + + Property::Map map; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + application.GetScene().Add(imageView); + + Property::Value value; + value = imageView.GetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT); + bool transition; + DALI_TEST_CHECK(value.Get(transition)); + DALI_TEST_CHECK(transition == false); + imageView.SetProperty(Toolkit::ImageView::Property::ENABLE_TRANSITION_EFFECT, true); + + value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + std::string url; + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url.empty()); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + application.Render(); + + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, ""); + application.SendNotification(); + application.Render(); + + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + application.SendNotification(); + application.Render(); + + value = imageView.GetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT); + DALI_TEST_CHECK(value.Get(transition)); + DALI_TEST_CHECK(transition == true); + + value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url == gImage_34_RGBA); + + imageView.SetProperty(Toolkit::ImageView::Property::IMAGE, map); + application.SendNotification(); + application.Render(); + + // Clear all cached + imageView.Unparent(); + imageView.Reset(); + + END_TEST; +} + +int UtcDaliImageViewTransitionEffect03(void) +{ + tet_infoline("Test imageView use transition effect with placeholder"); + + ToolkitTestApplication application; + Property::Map map; + + ImageView imageView = ImageView::New(); + imageView.SetImage(""); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + imageView.SetProperty(ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + imageView.SetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT, true); + application.GetScene().Add(imageView); + + //DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + application.SendNotification(); + application.Render(16); + + tet_infoline("(1)"); + imageView.SetImage(gImage_600_RGB); + imageView.SetProperty(ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + application.SendNotification(); + application.Render(16); + + Property::Value value; + value = imageView.GetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT); + bool transition; + DALI_TEST_CHECK(value.Get(transition)); + DALI_TEST_CHECK(transition == true); + + value = imageView.GetProperty(ImageView::Property::PLACEHOLDER_IMAGE); + std::string url; + DALI_TEST_CHECK(value.Get(url)); + DALI_TEST_CHECK(url == gImage_34_RGBA); + + imageView.SetImage(""); + application.SendNotification(); + application.Render(16); + + imageView.SetImage(TEST_IMAGE_1); + imageView.SetProperty(ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + application.SendNotification(); + application.Render(16); + + // Clear all cached + imageView.Unparent(); + imageView.Reset(); + + END_TEST; +} + +int UtcDaliImageViewTransitionEffect04(void) +{ + tet_infoline("Test transitoin effect operation when image is changed quickly "); + + ToolkitTestApplication application; + Property::Map map; + + ImageView imageView = ImageView::New(); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + imageView.SetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT, true); + imageView.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + imageView.SetImage(""); + application.GetScene().Add(imageView); + + ImageView imageView2 = ImageView::New(); + imageView2.SetProperty(Actor::Property::SIZE, Vector2(100.0f, 200.0f)); + imageView2.SetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT, true); + imageView2.SetProperty(Toolkit::ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + imageView2.SetImage(""); + application.GetScene().Add(imageView2); + application.SendNotification(); + application.Render(); + + //PLACEHOLDER_IMAGE is not call WaitForEventThreadTrigger because it is not shown url is null. + //DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(2), true, TEST_LOCATION); + + imageView.SetImage(gImage_600_RGB); + imageView.SetProperty(ImageView::Property::PLACEHOLDER_IMAGE, gImage_34_RGBA); + imageView2.SetImage(TEST_IMAGE_1); + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(3), true, TEST_LOCATION); + + imageView.SetImage(TEST_IMAGE_1); + imageView2.SetImage(gImage_600_RGB); + application.SendNotification(); + application.Render(3000); + + imageView.SetImage(""); + application.SendNotification(); + application.Render(); + + imageView.SetImage(TEST_IMAGE_2); + application.SendNotification(); + application.Render(); + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + Property::Value value; + value = imageView.GetProperty(ImageView::Property::ENABLE_TRANSITION_EFFECT); + bool transition; + DALI_TEST_CHECK(value.Get(transition)); + DALI_TEST_CHECK(transition == true); + + // Clear all cached + imageView.Unparent(); + imageView.Reset(); + + END_TEST; +} + +int UtcDaliImageViewImageLoadFailureAndReload01(void) +{ + tet_infoline("Try to load invalid image first, and then reload after that image valid."); + ToolkitTestApplication application; + + gResourceReadySignalFired = false; + + // Make overwritable image invalid first. + OverwriteImage(""); + + ImageView imageView = ImageView::New(TEST_OVERWRITABLE_IMAGE_FILE_NAME); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + gResourceReadySignalFired = false; + + // Make overwritable image valid now. + OverwriteImage(gImage_34_RGBA); + + // Reload the image + Property::Map attributes; + DevelControl::DoAction(imageView, ImageView::Property::IMAGE, DevelImageVisual::Action::RELOAD, attributes); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::READY, TEST_LOCATION); + + // Make overwritable image invalid end of test (for clean). + OverwriteImage(""); + + gResourceReadySignalFired = false; + + END_TEST; +} + +int UtcDaliImageViewImageLoadFailureAndReload02(void) +{ + tet_infoline("Try to load invalid image first, and then reload after that image valid."); + tet_infoline("This case, broken image was n-patch. So we should check whether Geometry / Shader changed after reload"); + ToolkitTestApplication application; + + Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get(); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::SMALL, TEST_BROKEN_IMAGE_S); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::NORMAL, TEST_BROKEN_IMAGE_M); + DevelStyleManager::SetBrokenImageUrl(styleManager, DevelStyleManager::BrokenImageType::LARGE, TEST_BROKEN_IMAGE_L); + + gResourceReadySignalFired = false; + + // Make overwritable image invalid first. + OverwriteImage(""); + + ImageView imageView = ImageView::New(TEST_OVERWRITABLE_IMAGE_FILE_NAME); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::FAILED, TEST_LOCATION); + + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + Geometry brokenGeometry = imageView.GetRendererAt(0u).GetGeometry(); + Shader brokenShader = imageView.GetRendererAt(0u).GetShader(); + DALI_TEST_CHECK(brokenGeometry); + DALI_TEST_CHECK(brokenShader); + + gResourceReadySignalFired = false; + + // Make overwritable image valid now. + OverwriteImage(gImage_34_RGBA); + + // Reload the image + Property::Map attributes; + DevelControl::DoAction(imageView, ImageView::Property::IMAGE, DevelImageVisual::Action::RELOAD, attributes); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::READY, TEST_LOCATION); + + // Check whether we don't use n-patch shader and geometry in this case. + DALI_TEST_EQUALS(imageView.GetRendererCount(), 1u, TEST_LOCATION); + DALI_TEST_CHECK(brokenGeometry != imageView.GetRendererAt(0u).GetGeometry()); + DALI_TEST_CHECK(brokenShader != imageView.GetRendererAt(0u).GetShader()); + + // Make overwritable image invalid end of test (for clean). + OverwriteImage(""); + + gResourceReadySignalFired = false; + + END_TEST; +} + +int UtcDaliImageViewImageLoadSuccessAndReload01(void) +{ + tet_infoline("Try to load valid image first, and then reload again. Check whether ResourceReady signal comes well"); + ToolkitTestApplication application; + + gResourceReadySignalFired = false; + + ImageView imageView = ImageView::New(gImage_34_RGBA); + imageView.SetProperty(Actor::Property::SIZE, Vector2(100.f, 100.f)); + imageView.ResourceReadySignal().Connect(&ResourceReadySignal); + + application.GetScene().Add(imageView); + application.SendNotification(); + application.Render(16); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::READY, TEST_LOCATION); + + gResourceReadySignalFired = false; + + // Reload the image + Property::Map attributes; + DevelControl::DoAction(imageView, ImageView::Property::IMAGE, DevelImageVisual::Action::RELOAD, attributes); + application.SendNotification(); + application.Render(16); + + DALI_TEST_EQUALS(gResourceReadySignalFired, false, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), false, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::PREPARING, TEST_LOCATION); + + // loading started, this waits for the loader thread + DALI_TEST_EQUALS(Test::WaitForEventThreadTrigger(1), true, TEST_LOCATION); + + DALI_TEST_EQUALS(gResourceReadySignalFired, true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.IsResourceReady(), true, TEST_LOCATION); + DALI_TEST_EQUALS(imageView.GetVisualResourceStatus(ImageView::Property::IMAGE), Visual::ResourceStatus::READY, TEST_LOCATION); + + gResourceReadySignalFired = false; + + END_TEST; +} \ No newline at end of file