31909d972d2f666097dbd2d7810348e32097cc59
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-ImageView.cpp
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // Need to override adaptor classes for toolkit test harness, so include
19 // test harness headers before dali headers.
20 #include <dali-toolkit-test-suite-utils.h>
21 #include <toolkit-event-thread-callback.h>
22
23 #include <dali-toolkit/dali-toolkit.h>
24 #include <dali/devel-api/scripting/scripting.h>
25 #include <dali-toolkit/devel-api/visuals/image-visual-properties-devel.h>
26 #include <dali-toolkit/devel-api/controls/control-devel.h>
27 #include <dali/public-api/rendering/renderer.h>
28
29 #include <test-native-image.h>
30 #include <sstream>
31 #include <unistd.h>
32
33 #include "dummy-control.h"
34
35 using namespace Dali;
36 using namespace Toolkit;
37
38 void utc_dali_toolkit_image_view_startup(void)
39 {
40   test_return_value = TET_UNDEF;
41 }
42
43 void utc_dali_toolkit_image_view_cleanup(void)
44 {
45   test_return_value = TET_PASS;
46 }
47
48 namespace
49 {
50
51 const char* VERTEX_SHADER = DALI_COMPOSE_SHADER(
52   attribute mediump vec2 aPosition;\n
53   varying mediump vec2 vTexCoord;\n
54   uniform mediump mat4 uMvpMatrix;\n
55   uniform mediump vec3 uSize;\n
56   \n
57   void main()\n
58   {\n
59     mediump vec4 vertexPosition = vec4(aPosition, 0.0, 1.0);\n
60     vertexPosition.xyz *= uSize;\n
61     vertexPosition = uMvpMatrix * vertexPosition;\n
62     \n
63     vTexCoord = aPosition + vec2(0.5);\n
64     gl_Position = vertexPosition;\n
65   }\n
66 );
67
68 const char* FRAGMENT_SHADER = DALI_COMPOSE_SHADER(
69   varying mediump vec2 vTexCoord;\n
70   uniform sampler2D sTexture;\n
71   uniform lowp vec4 uColor;\n
72   \n
73   void main()\n
74   {\n
75     gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor;\n
76   }\n
77 );
78
79 const char* TEST_IMAGE_FILE_NAME =  "gallery_image_01.jpg";
80 const char* TEST_IMAGE_FILE_NAME2 =  "gallery_image_02.jpg";
81
82 const char* TEST_IMAGE_1 = TEST_RESOURCE_DIR "/TB-gloss.png";
83 const char* TEST_IMAGE_2 = TEST_RESOURCE_DIR "/tb-norm.png";
84
85 // resolution: 34*34, pixel format: RGBA8888
86 static const char* gImage_34_RGBA = TEST_RESOURCE_DIR "/icon-edit.png";
87 // resolution: 600*600, pixel format: RGB888
88 static const char* gImage_600_RGB = TEST_RESOURCE_DIR "/test-image-600.jpg";
89
90 // resolution: 50*50, frame count: 4, frame delay: 0.2 second for each frame
91 const char* TEST_GIF_FILE_NAME = TEST_RESOURCE_DIR "/anim.gif";
92
93 void TestImage( ImageView imageView, BufferImage image )
94 {
95   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
96
97   Property::Map map;
98   DALI_TEST_CHECK( value.Get( map ) );
99
100   DALI_TEST_CHECK( map.Find( "width" ) );
101   DALI_TEST_CHECK( map.Find( "height" ) );
102   DALI_TEST_CHECK( map.Find( "type" ) );
103
104   int width = 0;
105   DALI_TEST_CHECK( map[ "width" ].Get( width ) );
106   DALI_TEST_EQUALS( (unsigned int)width, image.GetWidth(), TEST_LOCATION );
107
108   int height = 0;
109   DALI_TEST_CHECK( map[ "height" ].Get( height ) );
110   DALI_TEST_EQUALS( (unsigned int)height, image.GetHeight(), TEST_LOCATION );
111
112   std::string type;
113   DALI_TEST_CHECK( map[ "type" ].Get( type ) );
114   DALI_TEST_EQUALS( type, "BufferImage", TEST_LOCATION );
115 }
116
117 void TestImage( ImageView imageView, ResourceImage image )
118 {
119   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
120
121   Property::Map map;
122   DALI_TEST_CHECK( value.Get( map ) );
123
124   if( map.Find( "width" ) )
125   {
126     int width = 0;
127     DALI_TEST_CHECK( map[ "width" ].Get( width ) );
128     DALI_TEST_EQUALS( (unsigned int)width, image.GetWidth(), TEST_LOCATION );
129   }
130
131   if( map.Find( "height" ) )
132   {
133     int height = 0;
134     DALI_TEST_CHECK( map[ "height" ].Get( height ) );
135     DALI_TEST_EQUALS( (unsigned int)height, image.GetHeight(), TEST_LOCATION );
136   }
137
138   DALI_TEST_CHECK( map.Find( "type" ) );
139
140   std::string type;
141   DALI_TEST_CHECK( map[ "type" ].Get( type ) );
142   DALI_TEST_EQUALS( type, "ResourceImage", TEST_LOCATION );
143
144   std::string filename;
145   DALI_TEST_CHECK( map[ "filename" ].Get( filename ) );
146   DALI_TEST_EQUALS( filename, image.GetUrl(), TEST_LOCATION );
147 }
148
149 void TestUrl( ImageView imageView, const std::string url )
150 {
151   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
152
153   std::string urlActual;
154   DALI_TEST_CHECK( value.Get( urlActual ) );
155   DALI_TEST_EQUALS( urlActual, url, TEST_LOCATION );
156 }
157
158 } // namespace
159
160 int UtcDaliImageViewNewP(void)
161 {
162   TestApplication application;
163
164   ImageView imageView = ImageView::New();
165
166   DALI_TEST_CHECK( imageView );
167
168   END_TEST;
169 }
170
171 int UtcDaliImageViewNewImageP(void)
172 {
173   TestApplication application;
174
175   BufferImage image = CreateBufferImage( 100, 200, Vector4( 1.f, 1.f, 1.f, 1.f ) );
176   ImageView imageView = ImageView::New( image );
177
178   DALI_TEST_CHECK( imageView );
179   TestImage( imageView, image );
180
181   END_TEST;
182 }
183
184 int UtcDaliImageViewNewUrlP(void)
185 {
186   TestApplication application;
187
188   ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME );
189   DALI_TEST_CHECK( imageView );
190
191   TestUrl( imageView, TEST_IMAGE_FILE_NAME );
192
193   END_TEST;
194 }
195
196 int UtcDaliImageViewConstructorP(void)
197 {
198   TestApplication application;
199
200   ImageView imageView;
201
202   DALI_TEST_CHECK( !imageView );
203
204   END_TEST;
205 }
206
207 int UtcDaliImageViewCopyConstructorP(void)
208 {
209   TestApplication application;
210
211   // Initialize an object, ref count == 1
212   ImageView imageView = ImageView::New();
213
214   ImageView copy( imageView );
215   DALI_TEST_CHECK( copy );
216
217   END_TEST;
218 }
219
220 int UtcDaliImageViewAssignmentOperatorP(void)
221 {
222   TestApplication application;
223
224   ImageView imageView = ImageView::New();
225
226   ImageView copy( imageView );
227   DALI_TEST_CHECK( copy );
228   DALI_TEST_EQUALS( imageView, copy, TEST_LOCATION );
229
230   END_TEST;
231 }
232
233 int UtcDaliImageViewDownCastP(void)
234 {
235   TestApplication application;
236
237   ImageView imageView = ImageView::New();
238
239   BaseHandle object(imageView);
240
241   ImageView imageView2 = ImageView::DownCast( object );
242   DALI_TEST_CHECK(imageView2);
243
244   ImageView imageView3 = DownCast< ImageView >( object );
245   DALI_TEST_CHECK(imageView3);
246
247   END_TEST;
248 }
249
250 int UtcDaliImageViewDownCastN(void)
251 {
252   TestApplication application;
253
254   BaseHandle unInitializedObject;
255
256   ImageView imageView1 = ImageView::DownCast( unInitializedObject );
257   DALI_TEST_CHECK( !imageView1 );
258
259   ImageView imageView2 = DownCast< ImageView >( unInitializedObject );
260   DALI_TEST_CHECK( !imageView2 );
261
262   END_TEST;
263 }
264
265 int UtcDaliImageViewTypeRegistry(void)
266 {
267   ToolkitTestApplication application;
268
269   TypeRegistry typeRegistry = TypeRegistry::Get();
270   DALI_TEST_CHECK( typeRegistry );
271
272   TypeInfo typeInfo = typeRegistry.GetTypeInfo( "ImageView" );
273   DALI_TEST_CHECK( typeInfo );
274
275   BaseHandle handle = typeInfo.CreateInstance();
276   DALI_TEST_CHECK( handle );
277
278   ImageView imageView = ImageView::DownCast( handle );
279   DALI_TEST_CHECK( imageView );
280
281   END_TEST;
282 }
283
284 int UtcDaliImageViewSetGetProperty01(void)
285 {
286   ToolkitTestApplication application;
287
288   ImageView imageView = ImageView::New();
289
290   Property::Index idx = imageView.GetPropertyIndex( "image" );
291   DALI_TEST_EQUALS( idx, (Property::Index)ImageView::Property::IMAGE, TEST_LOCATION );
292
293   imageView.SetProperty( idx, TEST_IMAGE_FILE_NAME );
294   TestUrl( imageView, TEST_IMAGE_FILE_NAME );
295
296   END_TEST;
297 }
298
299 int UtcDaliImageViewSetGetProperty02(void)
300 {
301   ToolkitTestApplication application;
302
303   Image image = CreateBufferImage( 10, 10, Color::WHITE );
304   ImageView imageView = ImageView::New(image);
305   Vector4 fullImageRect( 0.f, 0.f, 1.f, 1.f );
306
307   Stage::GetCurrent().Add( imageView );
308
309   application.SendNotification();
310   application.Render();
311   TestGlAbstraction& gl = application.GetGlAbstraction();
312
313   Vector4 pixelAreaUniform;
314   DALI_TEST_CHECK( gl.GetUniformValue<Vector4>( "pixelArea", pixelAreaUniform ) );
315   DALI_TEST_EQUALS( pixelAreaUniform, fullImageRect, TEST_LOCATION );
316
317   Property::Value value = imageView.GetProperty( ImageView::Property::PIXEL_AREA );
318   Vector4 pixelAreaValue;
319   DALI_TEST_CHECK( value.Get(pixelAreaValue) );
320   DALI_TEST_EQUALS( pixelAreaValue, fullImageRect, TEST_LOCATION );
321
322   Vector4 pixelAreaSet( 0.2f, 0.2f, 0.3f, 0.3f );
323   imageView.SetProperty( ImageView::Property::PIXEL_AREA, pixelAreaSet);
324
325   application.SendNotification();
326   application.Render();
327
328   value = imageView.GetProperty( ImageView::Property::PIXEL_AREA );
329   value.Get(pixelAreaValue);
330   DALI_TEST_EQUALS( pixelAreaValue, pixelAreaSet, TEST_LOCATION );
331
332   DALI_TEST_CHECK( gl.GetUniformValue<Vector4>( "pixelArea", pixelAreaUniform ) );
333   DALI_TEST_EQUALS( pixelAreaUniform, pixelAreaSet, TEST_LOCATION );
334
335   END_TEST;
336 }
337
338 int UtcDaliImageViewSetGetProperty03(void)
339 {
340   ToolkitTestApplication application;
341
342   Image image = CreateBufferImage( 10, 10, Color::WHITE );
343   ImageView imageView = ImageView::New(image);
344   Stage::GetCurrent().Add( imageView );
345   application.SendNotification();
346   application.Render();
347
348   // conventional alpha blending
349   Renderer renderer = imageView.GetRendererAt( 0 );
350   Property::Value value = renderer.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA );
351   bool enable;
352   DALI_TEST_CHECK( value.Get( enable ) );
353   DALI_TEST_CHECK( !enable );
354
355   // pre-multiplied alpha blending
356   imageView.SetProperty( Toolkit::ImageView::Property::PRE_MULTIPLIED_ALPHA, true );
357   application.SendNotification();
358   application.Render();
359
360   int srcFactorRgb    = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_SRC_RGB );
361   int destFactorRgb   = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_DEST_RGB );
362   int srcFactorAlpha  = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_SRC_ALPHA );
363   int destFactorAlpha = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_DEST_ALPHA );
364   DALI_TEST_CHECK( srcFactorRgb == BlendFactor::ONE );
365   DALI_TEST_CHECK( destFactorRgb == BlendFactor::ONE_MINUS_SRC_ALPHA );
366   DALI_TEST_CHECK( srcFactorAlpha == BlendFactor::ONE );
367   DALI_TEST_CHECK( destFactorAlpha == BlendFactor::ONE );
368
369   value = renderer.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA );
370   DALI_TEST_CHECK( value.Get( enable ) );
371   DALI_TEST_CHECK( enable );
372
373   END_TEST;
374 }
375
376 int UtcDaliImageViewPixelArea(void)
377 {
378   // Test pixel area property
379   ToolkitTestApplication application;
380
381   // Gif image, use AnimatedImageVisual internally
382   // Atlasing is applied to pack multiple frames, use custom wrap mode
383   ImageView gifView = ImageView::New();
384   const Vector4 pixelAreaVisual( 0.f, 0.f, 2.f, 2.f );
385   gifView.SetProperty( ImageView::Property::IMAGE,
386                        Property::Map().Add( ImageVisual::Property::URL, TEST_GIF_FILE_NAME )
387                                       .Add( ImageVisual::Property::PIXEL_AREA, pixelAreaVisual ) );
388
389   // Add to stage
390   Stage stage = Stage::GetCurrent();
391   stage.Add( gifView );
392
393   // loading started
394   application.SendNotification();
395   application.Render(16);
396   DALI_TEST_CHECK( gifView.GetRendererCount() == 1u );
397
398   const Vector4 fullTextureRect( 0.f, 0.f, 1.f, 1.f );
399   // test that the pixel area value defined in the visual property map is registered on renderer
400   Renderer renderer = gifView.GetRendererAt(0);
401   Property::Value pixelAreaValue = renderer.GetProperty( renderer.GetPropertyIndex( "pixelArea" ) );
402   DALI_TEST_EQUALS( pixelAreaValue.Get<Vector4>(), pixelAreaVisual, TEST_LOCATION );
403
404   // test that the shader has the default pixel area value registered.
405   Shader shader = renderer.GetShader();
406   pixelAreaValue = shader.GetProperty( shader.GetPropertyIndex( "pixelArea" ) );
407   DALI_TEST_EQUALS( pixelAreaValue.Get<Vector4>(), fullTextureRect, TEST_LOCATION );
408
409   // test that the uniform uses the pixelArea property on the renderer.
410   TestGlAbstraction& gl = application.GetGlAbstraction();
411   Vector4 pixelAreaUniform;
412   DALI_TEST_CHECK( gl.GetUniformValue<Vector4>( "pixelArea", pixelAreaUniform ) );
413   DALI_TEST_EQUALS( pixelAreaVisual, pixelAreaUniform, Math::MACHINE_EPSILON_100, TEST_LOCATION );
414
415   // set the pixelArea property on the control
416   const Vector4 pixelAreaControl( -1.f, -1.f, 3.f, 3.f );
417   gifView.SetProperty( ImageView::Property::PIXEL_AREA, pixelAreaControl );
418   application.SendNotification();
419   application.Render(16);
420
421   // check the pixelArea property on the control
422   pixelAreaValue = gifView.GetProperty( gifView.GetPropertyIndex( "pixelArea" ) );
423   DALI_TEST_EQUALS( pixelAreaValue.Get<Vector4>(), pixelAreaControl, TEST_LOCATION );
424   // test that the uniform uses the pixelArea property on the control.
425   DALI_TEST_CHECK( gl.GetUniformValue<Vector4>( "pixelArea", pixelAreaUniform ) );
426   DALI_TEST_EQUALS( pixelAreaControl, pixelAreaUniform, Math::MACHINE_EPSILON_100, TEST_LOCATION );
427
428
429   END_TEST;
430 }
431
432 int UtcDaliImageViewAsyncLoadingWithoutAltasing(void)
433 {
434   ToolkitTestApplication application;
435   TestGlAbstraction& gl = application.GetGlAbstraction();
436   const std::vector<GLuint>& textures = gl.GetBoundTextures();
437   size_t numTextures = textures.size();
438
439   // Async loading, no atlasing for big size image
440   ImageView imageView = ImageView::New( gImage_600_RGB );
441
442   // By default, Aysnc loading is used
443   Stage::GetCurrent().Add( imageView );
444   imageView.SetSize(100, 100);
445   imageView.SetParentOrigin( ParentOrigin::CENTER );
446
447   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
448
449   application.SendNotification();
450   application.Render(16);
451   application.SendNotification();
452
453   const std::vector<GLuint>& textures2 = gl.GetBoundTextures();
454   DALI_TEST_GREATER( textures2.size(), numTextures, TEST_LOCATION );
455
456
457
458   END_TEST;
459 }
460
461 int UtcDaliImageViewAsyncLoadingWithAtlasing(void)
462 {
463   ToolkitTestApplication application;
464
465   //Async loading, automatic atlasing for small size image
466   TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace();
467   callStack.Reset();
468   callStack.Enable(true);
469
470   Property::Map imageMap;
471
472   imageMap[ ImageVisual::Property::URL ] = gImage_34_RGBA;
473   imageMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 34;
474   imageMap[ ImageVisual::Property::DESIRED_WIDTH ] = 34;
475   imageMap[ DevelImageVisual::Property::ATLASING] = true;
476
477   ImageView imageView = ImageView::New();
478   imageView.SetProperty( ImageView::Property::IMAGE, imageMap );
479
480   // By default, Aysnc loading is used
481   // loading is not started if the actor is offStage
482
483   Stage::GetCurrent().Add( imageView );
484   application.SendNotification();
485   application.Render(16);
486   application.Render(16);
487   application.SendNotification();
488
489   // loading started, this waits for the loader thread for max 30 seconds
490   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
491
492   application.SendNotification();
493   application.Render(16);
494
495   callStack.Enable(false);
496
497   TraceCallStack::NamedParams params;
498   params["width"] = ToString(34);
499   params["height"] = ToString(34);
500   DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), true, TEST_LOCATION );
501
502   END_TEST;
503 }
504
505 int UtcDaliImageViewAsyncLoadingWithAtlasing02(void)
506 {
507   ToolkitTestApplication application;
508
509   //Async loading, automatic atlasing for small size image
510   TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace();
511   callStack.Reset();
512   callStack.Enable(true);
513
514   Property::Map asyncLoadingMap;
515   asyncLoadingMap[ "url" ] = gImage_34_RGBA;
516   asyncLoadingMap[ "desiredHeight" ] = 34;
517   asyncLoadingMap[ "desiredWidth" ] = 34;
518   asyncLoadingMap[ "synchronousLoading" ] = false;
519   asyncLoadingMap[ "atlasing" ] = true;
520
521   ImageView imageView = ImageView::New();
522   imageView.SetProperty( ImageView::Property::IMAGE, asyncLoadingMap );
523
524   Stage::GetCurrent().Add( imageView );
525   application.SendNotification();
526   application.Render(16);
527   application.Render(16);
528   application.SendNotification();
529
530   // loading started, this waits for the loader thread for max 30 seconds
531   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
532
533   application.SendNotification();
534   application.Render(16);
535
536   callStack.Enable(false);
537
538   TraceCallStack::NamedParams params;
539   params["width"] = ToString(34);
540   params["height"] = ToString(34);
541   DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), true, TEST_LOCATION );
542
543   END_TEST;
544 }
545
546 int UtcDaliImageViewSyncLoading(void)
547 {
548   ToolkitTestApplication application;
549
550   tet_infoline("ImageView Testing sync loading and size using index key property map");
551
552   Property::Map syncLoadingMap;
553   syncLoadingMap[ ImageVisual::Property::SYNCHRONOUS_LOADING ] = true;
554   syncLoadingMap[ DevelImageVisual::Property::ATLASING ] = true;
555
556   // Sync loading, no atlasing for big size image
557   {
558     ImageView imageView = ImageView::New();
559
560     // Sync loading is used
561     syncLoadingMap[ ImageVisual::Property::URL ] = gImage_600_RGB;
562     imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap );
563   }
564
565   // Sync loading, automatic atlasing for small size image
566   {
567     TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace();
568     callStack.Reset();
569     callStack.Enable(true);
570
571     ImageView imageView = ImageView::New( );
572
573     // Sync loading is used
574     syncLoadingMap[ ImageVisual::Property::URL ] = gImage_34_RGBA;
575     syncLoadingMap[ ImageVisual::Property::DESIRED_HEIGHT ] = 34;
576     syncLoadingMap[ ImageVisual::Property::DESIRED_WIDTH ] = 34;
577     imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap );
578
579     Stage::GetCurrent().Add( imageView );
580     application.SendNotification();
581     application.Render(16);
582
583     TraceCallStack::NamedParams params;
584     params["width"] = ToString(34);
585     params["height"] = ToString(34);
586     DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ),
587                       true, TEST_LOCATION );
588   }
589   END_TEST;
590 }
591
592
593 int UtcDaliImageViewSyncLoading02(void)
594 {
595   ToolkitTestApplication application;
596
597   tet_infoline("ImageView Testing sync loading and size using string key property map");
598
599   // Sync loading, automatic atlasing for small size image
600   {
601     TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace();
602     callStack.Reset();
603     callStack.Enable(true);
604
605     ImageView imageView = ImageView::New( );
606
607     // Sync loading is used
608     Property::Map syncLoadingMap;
609     syncLoadingMap[ "url" ] = gImage_34_RGBA;
610     syncLoadingMap[ "desiredHeight" ] = 34;
611     syncLoadingMap[ "desiredWidth" ] = 34;
612     syncLoadingMap[ "synchronousLoading" ] = true;
613     syncLoadingMap[ "atlasing" ] = true;
614     imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap );
615
616     Stage::GetCurrent().Add( imageView );
617     application.SendNotification();
618     application.Render(16);
619
620     TraceCallStack::NamedParams params;
621     params["width"] = ToString(34);
622     params["height"] = ToString(34);
623     DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ),
624                       true, TEST_LOCATION );
625   }
626   END_TEST;
627 }
628
629 int UtcDaliImageViewSizeWithBackground(void)
630 {
631   ToolkitTestApplication application;
632
633   int width = 100;
634   int height = 200;
635   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
636   ImageView imageView = ImageView::New();
637   imageView.SetBackgroundImage( image );
638
639   Stage::GetCurrent().Add( imageView );
640   application.SendNotification();
641   application.Render();
642
643   DALI_TEST_EQUALS( imageView.GetCurrentSize().width, (float)width, TEST_LOCATION );
644   DALI_TEST_EQUALS( imageView.GetCurrentSize().height, (float)height, TEST_LOCATION );
645
646   END_TEST;
647 }
648
649 int UtcDaliImageViewSizeWithBackgroundAndImage(void)
650 {
651   ToolkitTestApplication application;
652
653   int widthBackground = 100;
654   int heightBackground = 200;
655   int width = 300;
656   int height = 400;
657   Image imageBackground = CreateBufferImage( widthBackground, heightBackground, Vector4(1.f, 1.f, 1.f, 1.f) );
658   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
659
660   ImageView imageView = ImageView::New();
661   imageView.SetBackgroundImage( imageBackground );
662   imageView.SetImage( image );
663
664   Stage::GetCurrent().Add( imageView );
665   application.SendNotification();
666   application.Render();
667
668   DALI_TEST_EQUALS( imageView.GetCurrentSize().width, (float)width, TEST_LOCATION );
669   DALI_TEST_EQUALS( imageView.GetCurrentSize().height, (float)height, TEST_LOCATION );
670
671   END_TEST;
672 }
673
674 int UtcDaliImageViewHeightForWidthBackground(void)
675 {
676   ToolkitTestApplication application;
677
678   int widthBackground = 100;
679   int heightBackground = 200;
680   Image imageBackground = CreateBufferImage( widthBackground, heightBackground, Vector4(1.f, 1.f, 1.f, 1.f) );
681
682   ImageView imageView = ImageView::New();
683   imageView.SetBackgroundImage( imageBackground );
684
685   Stage::GetCurrent().Add( imageView );
686   application.SendNotification();
687   application.Render();
688
689   Control control = Control::DownCast( imageView );
690   DALI_TEST_CHECK( control );
691   DALI_TEST_EQUALS( imageView.GetHeightForWidth( 123.f ), control.GetHeightForWidth( 123.f ), TEST_LOCATION );
692   DALI_TEST_EQUALS( imageView.GetWidthForHeight( 321.f ), control.GetWidthForHeight( 321.f ), TEST_LOCATION );
693
694   END_TEST;
695 }
696
697 int UtcDaliImageViewHeightForWidthBackgroundAndImage(void)
698 {
699   ToolkitTestApplication application;
700
701   int widthBackground = 100;
702   int heightBackground = 200;
703   int width = 300;
704   int height = 400;
705   Image imageBackground = CreateBufferImage( widthBackground, heightBackground, Vector4(1.f, 1.f, 1.f, 1.f) );
706   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
707
708   ImageView imageView = ImageView::New();
709   imageView.SetBackgroundImage( imageBackground );
710   imageView.SetImage( image );
711
712   Stage::GetCurrent().Add( imageView );
713   application.SendNotification();
714   application.Render();
715
716   DALI_TEST_EQUALS( imageView.GetHeightForWidth( width ), (float)height, TEST_LOCATION );
717   DALI_TEST_EQUALS( imageView.GetWidthForHeight( height ), (float)width, TEST_LOCATION );
718
719   END_TEST;
720 }
721
722 int UtcDaliImageViewSetBufferImage(void)
723 {
724   ToolkitTestApplication application;
725
726   int width1 = 300;
727   int height1 = 400;
728   BufferImage image1 = CreateBufferImage( width1, height1, Vector4( 1.f, 1.f, 1.f, 1.f ) );
729   ImageView imageView = ImageView::New();
730   imageView.SetImage( image1 );
731
732   TestImage( imageView, image1 );
733
734   int width2 = 600;
735   int height2 = 500;
736   BufferImage image2 = CreateBufferImage( width2, height2, Vector4( 1.f, 1.f, 1.f, 1.f ) );
737   imageView.SetImage( image2 );
738
739   TestImage( imageView, image2 );
740
741   END_TEST;
742 }
743
744 int UtcDaliImageViewSetImageUrl(void)
745 {
746   ToolkitTestApplication application;
747
748   ImageView imageView = ImageView::New();
749   imageView.SetImage( TEST_IMAGE_FILE_NAME );
750   TestUrl( imageView, TEST_IMAGE_FILE_NAME );
751
752
753   imageView.SetImage( TEST_IMAGE_FILE_NAME2 );
754   TestUrl( imageView, TEST_IMAGE_FILE_NAME2 );
755
756   END_TEST;
757 }
758
759 int UtcDaliImageViewSetImageOnstageP(void)
760 {
761   ToolkitTestApplication application;
762
763   ImageView imageView = ImageView::New();
764
765   Stage::GetCurrent().Add( imageView );
766   application.SendNotification();
767   application.Render();
768
769   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
770   imageView.SetImage( image1 );
771   TestImage( imageView, image1 );
772
773   int width = 300;
774   int height = 400;
775   BufferImage image2 = CreateBufferImage( width, height, Vector4( 1.f, 1.f, 1.f, 1.f ) );
776   imageView.SetImage( image2 );
777   TestImage( imageView, image2 );
778
779   END_TEST;
780 }
781
782 int UtcDaliImageViewSetImageOnstageN(void)
783 {
784   ToolkitTestApplication application;
785
786   ImageView imageView = ImageView::New();
787
788   Stage::GetCurrent().Add( imageView );
789   application.SendNotification();
790   application.Render();
791
792   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
793   imageView.SetImage( image1 );
794   TestImage( imageView, image1 );
795
796   Image image2;
797   imageView.SetImage( image2 );
798
799   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
800
801   //the value should be empty
802   std::string url;
803   DALI_TEST_CHECK( !value.Get( url ) );
804
805   Property::Map map;
806   DALI_TEST_CHECK( !value.Get( map ) );
807
808   END_TEST;
809 }
810
811 int UtcDaliImageViewSetImageOffstageP(void)
812 {
813   ToolkitTestApplication application;
814
815   ImageView imageView = ImageView::New();
816
817   Stage::GetCurrent().Add( imageView );
818   application.SendNotification();
819   application.Render();
820   Stage::GetCurrent().Remove( imageView );
821
822   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
823   imageView.SetImage( image1 );
824   TestImage( imageView, image1 );
825
826   int width = 300;
827   int height = 400;
828   BufferImage image2 = CreateBufferImage( width, height, Vector4( 1.f, 1.f, 1.f, 1.f ) );
829   imageView.SetImage( image2 );
830   TestImage( imageView, image2 );
831
832   END_TEST;
833 }
834
835 bool gResourceReadySignalFired = false;
836 Vector3 gNaturalSize;
837
838 void ResourceReadySignal( Control control )
839 {
840   gResourceReadySignalFired = true;
841 }
842
843 int UtcDaliImageViewCheckResourceReady(void)
844 {
845   ToolkitTestApplication application;
846
847   gResourceReadySignalFired = false;
848
849
850   int width = 100;
851   int height = 200;
852   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
853
854   // Check ImageView with background and main image, to ensure both visuals are marked as loaded
855   ImageView imageView = ImageView::New( TEST_GIF_FILE_NAME );
856
857   imageView.SetBackgroundImage( image );
858
859   DALI_TEST_EQUALS( Toolkit::DevelControl::IsResourceReady( imageView ), false, TEST_LOCATION );
860
861   Toolkit::DevelControl::ResourceReadySignal( imageView ).Connect( &ResourceReadySignal);
862
863   Stage::GetCurrent().Add( imageView );
864
865   application.SendNotification();
866   application.Render(16);
867
868
869   DALI_TEST_EQUALS( Toolkit::DevelControl::IsResourceReady( imageView ), true, TEST_LOCATION );
870
871   DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION );
872
873   END_TEST;
874 }
875
876 int UtcDaliImageViewSetImageOffstageN(void)
877 {
878   ToolkitTestApplication application;
879
880   ImageView imageView = ImageView::New();
881
882   Stage::GetCurrent().Add( imageView );
883   application.SendNotification();
884   application.Render();
885   Stage::GetCurrent().Remove( imageView );
886
887   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
888   imageView.SetImage( image1 );
889   TestImage( imageView, image1 );
890
891   Image image2;
892   imageView.SetImage( image2 );
893
894   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
895
896   //the value should be empty
897   std::string url;
898   DALI_TEST_CHECK( !value.Get( url ) );
899
900   Property::Map map;
901   DALI_TEST_CHECK( !value.Get( map ) );
902
903   END_TEST;
904 }
905
906 int UtcDaliImageViewSetImageN(void)
907 {
908   ToolkitTestApplication application;
909
910   Image image1;
911   ImageView imageView = ImageView::New();
912   imageView.SetImage( image1 );
913
914   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
915
916   //the value should be empty
917   std::string url;
918   DALI_TEST_CHECK( !value.Get( url ) );
919
920   Property::Map map;
921   DALI_TEST_CHECK( !value.Get( map ) );
922
923   std::string resource_url;
924   Property::Value val = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
925   DALI_TEST_CHECK( !val.Get( resource_url ) );
926
927   END_TEST;
928 }
929
930 int UtcDaliImageViewSetImageTypeChangesP(void)
931 {
932   ToolkitTestApplication application;
933
934   ImageView imageView = ImageView::New();
935
936
937   std::string url;
938   Property::Map map;
939
940   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
941   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
942   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
943
944   // Set a URL
945   imageView.SetImage( "TEST_URL" );
946   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
947
948   DALI_TEST_CHECK( value.Get( url ) );   // Value should NOT be empty
949   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
950
951   // Set an empty Image
952   imageView.SetImage( Image() );
953   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
954
955   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
956   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
957
958   // Set an Image
959   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
960   imageView.SetImage( image1 );
961   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
962
963   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
964   DALI_TEST_CHECK( value.Get( map ) );   // Value should NOT be empty
965
966   // Set an empty URL
967   imageView.SetImage( "" );
968   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
969
970   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
971   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
972
973   END_TEST;
974 }
975
976 int UtcDaliImageViewResourceUrlP(void)
977 {
978   ToolkitTestApplication application;
979
980   ImageView imageView = ImageView::New();
981   DALI_TEST_CHECK( imageView.GetProperty( ImageView::Property::RESOURCE_URL ).Get< std::string >().empty() );
982
983   imageView.SetProperty( ImageView::Property::RESOURCE_URL, "TestString" );
984   DALI_TEST_EQUALS( imageView.GetProperty( ImageView::Property::RESOURCE_URL ).Get< std::string >(), "TestString", TEST_LOCATION );
985
986   END_TEST;
987 }
988
989 // Scenarios 1: ImageView from regular image
990 int UtcDaliImageViewSetImageBufferImage(void)
991 {
992   ToolkitTestApplication application;
993
994   ImageView imageView = ImageView::New();
995   Stage::GetCurrent().Add( imageView );
996
997   TestGlAbstraction& gl = application.GetGlAbstraction();
998   gl.EnableTextureCallTrace( true );
999
1000   std::vector< GLuint > ids;
1001   ids.push_back( 23 );
1002   application.GetGlAbstraction().SetNextTextureIds( ids );
1003
1004   int width = 300;
1005   int height = 400;
1006   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
1007
1008   imageView.SetImage( image );
1009
1010   application.SendNotification();
1011   application.Render();
1012
1013   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1014
1015   std::stringstream params;
1016   params << GL_TEXTURE_2D << ", " << 23;
1017   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1018
1019   END_TEST;
1020 }
1021
1022 // Scenarios 2: ImageView from Native image
1023 int UtcDaliImageViewSetImageNativeImage(void)
1024 {
1025   ToolkitTestApplication application;
1026
1027   ImageView imageView = ImageView::New();
1028   Stage::GetCurrent().Add( imageView );
1029
1030   TestGlAbstraction& gl = application.GetGlAbstraction();
1031   gl.EnableTextureCallTrace( true );
1032
1033   std::vector< GLuint > ids;
1034   ids.push_back( 23 );
1035   application.GetGlAbstraction().SetNextTextureIds( ids );
1036
1037   int width = 200;
1038   int height = 500;
1039   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1040   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1041
1042   imageView.SetImage( nativeImage );
1043   application.SendNotification();
1044   application.Render();
1045
1046   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1047
1048   std::stringstream params;
1049   params << GL_TEXTURE_EXTERNAL_OES << ", " << 23;
1050   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1051
1052   END_TEST;
1053 }
1054
1055 // Scenarios 3: ImageView initially from regular image but then SetImage called with Native image
1056 int UtcDaliImageViewSetImageBufferImageToNativeImage(void)
1057 {
1058   ToolkitTestApplication application;
1059
1060   int width = 300;
1061   int height = 400;
1062   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
1063
1064   ImageView imageView = ImageView::New( image );
1065   Stage::GetCurrent().Add( imageView );
1066
1067   TestGlAbstraction& gl = application.GetGlAbstraction();
1068   gl.EnableTextureCallTrace( true );
1069
1070   std::vector< GLuint > ids;
1071   ids.push_back( 23 );
1072   application.GetGlAbstraction().SetNextTextureIds( ids );
1073
1074   application.SendNotification();
1075   application.Render();
1076
1077   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1078
1079   std::stringstream params;
1080   params << GL_TEXTURE_2D << ", " << 23;
1081   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1082
1083   width = 200;
1084   height = 500;
1085   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1086   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1087   imageView.SetImage( nativeImage );
1088
1089   ids.clear();
1090   ids.push_back( 24 );
1091   application.GetGlAbstraction().SetNextTextureIds( ids );
1092
1093   application.SendNotification();
1094   application.Render();
1095
1096   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1097
1098   std::stringstream nextTextureParams;
1099   nextTextureParams << GL_TEXTURE_EXTERNAL_OES << ", " << 24;
1100   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nextTextureParams.str()) );
1101
1102   END_TEST;
1103 }
1104
1105 // Scenarios 4: ImageView initially from Native image but then SetImage called with regular image
1106 int UtcDaliImageViewSetImageNativeImageToBufferImage(void)
1107 {
1108   ToolkitTestApplication application;
1109
1110   int width = 300;
1111   int height = 400;
1112   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1113   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1114
1115   ImageView imageView = ImageView::New( nativeImage );
1116   Stage::GetCurrent().Add( imageView );
1117
1118   TestGlAbstraction& gl = application.GetGlAbstraction();
1119   gl.EnableTextureCallTrace( true );
1120
1121   std::vector< GLuint > ids;
1122   ids.push_back( 23 );
1123   application.GetGlAbstraction().SetNextTextureIds( ids );
1124
1125   application.SendNotification();
1126   application.Render();
1127
1128   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1129
1130   std::stringstream params;
1131   params << GL_TEXTURE_EXTERNAL_OES << ", " << 23;
1132   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1133
1134   width = 200;
1135   height = 500;
1136   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
1137   imageView.SetImage( image );
1138
1139   ids.clear();
1140   ids.push_back( 24 );
1141   application.GetGlAbstraction().SetNextTextureIds( ids );
1142
1143   application.SendNotification();
1144   application.Render();
1145
1146   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1147
1148   std::stringstream nextTextureParams;
1149   nextTextureParams << GL_TEXTURE_2D << ", " << 24;
1150   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nextTextureParams.str()) );
1151
1152   END_TEST;
1153 }
1154
1155 // Scenarios 5: ImageView from Native image with custom shader
1156 int UtcDaliImageViewSetImageNativeImageWithCustomShader(void)
1157 {
1158   ToolkitTestApplication application;
1159
1160   int width = 300;
1161   int height = 400;
1162
1163   Property::Map customShader;
1164   customShader.Insert( "vertexShader", VERTEX_SHADER );
1165   customShader.Insert( "fragmentShader", FRAGMENT_SHADER );
1166
1167   Property::Array shaderHints;
1168   shaderHints.PushBack( "requiresSelfDepthTest" );
1169   shaderHints.PushBack( "outputIsTransparent" );
1170   shaderHints.PushBack( "outputIsOpaque" );
1171   shaderHints.PushBack( "modifiesGeometry" );
1172
1173   customShader.Insert( "hints", shaderHints );
1174
1175   Property::Map map;
1176   map.Insert( "shader", customShader );
1177
1178   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1179   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1180
1181   ImageView imageView = ImageView::New( nativeImage );
1182   imageView.SetProperty( ImageView::Property::IMAGE, map );
1183   Stage::GetCurrent().Add( imageView );
1184
1185   TestGlAbstraction& gl = application.GetGlAbstraction();
1186   gl.EnableTextureCallTrace( true );
1187
1188   std::vector< GLuint > ids;
1189   ids.push_back( 23 );
1190   application.GetGlAbstraction().SetNextTextureIds( ids );
1191
1192   application.SendNotification();
1193   application.Render();
1194
1195   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1196
1197   std::stringstream params;
1198   params << GL_TEXTURE_EXTERNAL_OES << ", " << 23;
1199   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1200
1201   END_TEST;
1202 }
1203
1204 // Scenarios 6: ImageView initially from regular image with custom shader but then SetImage called with Native
1205 int UtcDaliImageViewSetImageBufferImageWithCustomShaderToNativeImage(void)
1206 {
1207   ToolkitTestApplication application;
1208
1209   int width = 300;
1210   int height = 400;
1211
1212   Property::Map customShader;
1213   customShader.Insert( "vertexShader", VERTEX_SHADER );
1214   customShader.Insert( "fragmentShader", FRAGMENT_SHADER );
1215
1216   Property::Array shaderHints;
1217   shaderHints.PushBack( "requiresSelfDepthTest" );
1218   shaderHints.PushBack( "outputIsTransparent" );
1219   shaderHints.PushBack( "outputIsOpaque" );
1220   shaderHints.PushBack( "modifiesGeometry" );
1221
1222   customShader.Insert( "hints", shaderHints );
1223
1224   Property::Map map;
1225   map.Insert( "shader", customShader );
1226
1227   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
1228
1229   ImageView imageView = ImageView::New( image );
1230   imageView.SetProperty( ImageView::Property::IMAGE, map );
1231   Stage::GetCurrent().Add( imageView );
1232
1233   TestGlAbstraction& gl = application.GetGlAbstraction();
1234   gl.EnableTextureCallTrace( true );
1235
1236   std::vector< GLuint > ids;
1237   ids.push_back( 23 );
1238   application.GetGlAbstraction().SetNextTextureIds( ids );
1239
1240   application.SendNotification();
1241   application.Render();
1242
1243   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1244
1245   std::stringstream params;
1246   params << GL_TEXTURE_2D << ", " << 23;
1247   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1248
1249   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1250   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1251   imageView.SetImage( nativeImage );
1252
1253   ids.clear();
1254   ids.push_back( 24 );
1255   application.GetGlAbstraction().SetNextTextureIds( ids );
1256
1257   application.SendNotification();
1258   application.Render();
1259
1260   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1261
1262   std::stringstream nativeImageParams;
1263   nativeImageParams << GL_TEXTURE_EXTERNAL_OES << ", " << 24;
1264   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nativeImageParams.str()) );
1265
1266
1267   END_TEST;
1268 }
1269
1270 int UtcDaliImageViewGetImageP1(void)
1271 {
1272   ToolkitTestApplication application;
1273
1274   ImageView imageView = ImageView::New();
1275   DALI_TEST_CHECK( ! imageView.GetImage() );
1276
1277   Image image = CreateBufferImage();
1278   imageView.SetImage( image );
1279   DALI_TEST_CHECK( imageView.GetImage() == image );
1280
1281   END_TEST;
1282 }
1283
1284 int UtcDaliImageViewGetImageP2(void)
1285 {
1286   ToolkitTestApplication application;
1287
1288   BufferImage image = CreateBufferImage();
1289   ImageView imageView = ImageView::New( image );
1290   DALI_TEST_CHECK( imageView.GetImage() == image );
1291
1292   END_TEST;
1293 }
1294
1295 int UtcDaliImageViewGetImageN(void)
1296 {
1297   ToolkitTestApplication application;
1298
1299   ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME );
1300   DALI_TEST_CHECK( ! imageView.GetImage() );
1301
1302   Image image = CreateBufferImage();
1303   imageView.SetImage( image );
1304   DALI_TEST_CHECK( imageView.GetImage() == image );
1305
1306   imageView.SetImage( TEST_IMAGE_FILE_NAME );
1307   DALI_TEST_CHECK( ! imageView.GetImage() );
1308
1309   END_TEST;
1310 }
1311
1312
1313 int UtcDaliImageViewReplaceImage(void)
1314 {
1315   ToolkitTestApplication application;
1316
1317   gResourceReadySignalFired = false;
1318
1319   int width = 100;
1320   int height = 200;
1321   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
1322
1323   // Check ImageView with background and main image, to ensure both visuals are marked as loaded
1324   ImageView imageView = ImageView::New( TEST_IMAGE_1 );
1325
1326   DALI_TEST_EQUALS( Toolkit::DevelControl::IsResourceReady( imageView ), false, TEST_LOCATION );
1327
1328   Toolkit::DevelControl::ResourceReadySignal( imageView ).Connect( &ResourceReadySignal);
1329
1330   Stage::GetCurrent().Add( imageView );
1331
1332   application.SendNotification();
1333   application.Render(16);
1334
1335   // loading started, this waits for the loader thread for max 30 seconds
1336   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
1337
1338   DALI_TEST_EQUALS( imageView.GetRendererCount(), 1u, TEST_LOCATION );
1339
1340   DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION );
1341
1342   gResourceReadySignalFired = false;
1343
1344   imageView.SetImage(TEST_IMAGE_2);
1345
1346   application.SendNotification();
1347   application.Render(16);
1348
1349   // loading started, this waits for the loader thread for max 30 seconds
1350   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
1351
1352   DALI_TEST_EQUALS( imageView.GetRendererCount(), 1u, TEST_LOCATION );
1353
1354   DALI_TEST_EQUALS( Toolkit::DevelControl::IsResourceReady( imageView ), true, TEST_LOCATION );
1355
1356   DALI_TEST_EQUALS( gResourceReadySignalFired, true, TEST_LOCATION );
1357
1358   END_TEST;
1359 }
1360
1361 void OnRelayoutOverride( Size size )
1362 {
1363   gNaturalSize = size; // Size Relayout is using
1364 }
1365
1366 int UtcDaliImageViewReplaceImageAndGetNaturalSize(void)
1367 {
1368   ToolkitTestApplication application;
1369
1370   // Check ImageView with background and main image, to ensure both visuals are marked as loaded
1371   ImageView imageView = ImageView::New( TEST_IMAGE_1 );
1372   imageView.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS );
1373
1374   DummyControl dummyControl = DummyControl::New( true );
1375   Impl::DummyControl& dummyImpl = static_cast<Impl::DummyControl&>(dummyControl.GetImplementation());
1376   dummyControl.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS );
1377
1378   dummyControl.Add( imageView );
1379   dummyImpl.SetRelayoutCallback( &OnRelayoutOverride );
1380   Stage::GetCurrent().Add( dummyControl );
1381
1382   application.SendNotification();
1383   application.Render();
1384
1385   // loading started, this waits for the loader thread for max 30 seconds
1386   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
1387
1388   DALI_TEST_EQUALS( gNaturalSize.width, 1024.0f, TEST_LOCATION );
1389   DALI_TEST_EQUALS( gNaturalSize.height, 1024.0f, TEST_LOCATION );
1390
1391   gNaturalSize = Vector3::ZERO;
1392
1393   imageView.SetImage(gImage_600_RGB);
1394
1395   // Waiting for resourceReady so SendNotifcation not called here.
1396
1397   // loading started, this waits for the loader thread for max 30 seconds
1398   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 1 ), true, TEST_LOCATION );
1399
1400   // Trigger a potential relayout
1401   application.SendNotification();
1402   application.Render();
1403
1404   DALI_TEST_EQUALS( gNaturalSize.width, 600.0f, TEST_LOCATION );
1405   DALI_TEST_EQUALS( gNaturalSize.height, 600.0f, TEST_LOCATION );
1406
1407   END_TEST;
1408 }