(Touch) Updated programming guide, Automated Tests & KeyboardFocusManager to use...
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-ImageView.cpp
1 /*
2  * Copyright (c) 2014 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-bitmap-loader.h>
22 #include <toolkit-event-thread-callback.h>
23
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali/devel-api/scripting/scripting.h>
26 #include <dali/devel-api/rendering/renderer.h>
27
28 #include <test-native-image.h>
29 #include <sstream>
30
31 using namespace Dali;
32 using namespace Toolkit;
33
34 void utc_dali_toolkit_image_view_startup(void)
35 {
36   test_return_value = TET_UNDEF;
37 }
38
39 void utc_dali_toolkit_image_view_cleanup(void)
40 {
41   test_return_value = TET_PASS;
42 }
43
44 namespace
45 {
46
47 const char* VERTEX_SHADER = DALI_COMPOSE_SHADER(
48   attribute mediump vec2 aPosition;\n
49   varying mediump vec2 vTexCoord;\n
50   uniform mediump mat4 uMvpMatrix;\n
51   uniform mediump vec3 uSize;\n
52   \n
53   void main()\n
54   {\n
55     mediump vec4 vertexPosition = vec4(aPosition, 0.0, 1.0);\n
56     vertexPosition.xyz *= uSize;\n
57     vertexPosition = uMvpMatrix * vertexPosition;\n
58     \n
59     vTexCoord = aPosition + vec2(0.5);\n
60     gl_Position = vertexPosition;\n
61   }\n
62 );
63
64 const char* FRAGMENT_SHADER = DALI_COMPOSE_SHADER(
65   varying mediump vec2 vTexCoord;\n
66   uniform sampler2D sTexture;\n
67   uniform lowp vec4 uColor;\n
68   \n
69   void main()\n
70   {\n
71     gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor;\n
72   }\n
73 );
74
75 const char* TEST_IMAGE_FILE_NAME =  "gallery_image_01.jpg";
76 const char* TEST_IMAGE_FILE_NAME2 =  "gallery_image_02.jpg";
77
78 // resolution: 34*34, pixel format: RGBA8888
79 static const char* gImage_34_RGBA = TEST_RESOURCE_DIR "/icon-edit.png";
80 // resolution: 600*600, pixel format: RGB888
81 static const char* gImage_600_RGB = TEST_RESOURCE_DIR "/test-image-600.jpg";
82
83 void TestImage( ImageView imageView, BufferImage image )
84 {
85   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
86
87   Property::Map map;
88   DALI_TEST_CHECK( value.Get( map ) );
89
90   DALI_TEST_CHECK( map.Find( "width" ) );
91   DALI_TEST_CHECK( map.Find( "height" ) );
92   DALI_TEST_CHECK( map.Find( "type" ) );
93
94   int width = 0;
95   DALI_TEST_CHECK( map[ "width" ].Get( width ) );
96   DALI_TEST_EQUALS( (unsigned int)width, image.GetWidth(), TEST_LOCATION );
97
98   int height = 0;
99   DALI_TEST_CHECK( map[ "height" ].Get( height ) );
100   DALI_TEST_EQUALS( (unsigned int)height, image.GetHeight(), TEST_LOCATION );
101
102   std::string type;
103   DALI_TEST_CHECK( map[ "type" ].Get( type ) );
104   DALI_TEST_EQUALS( type, "BufferImage", TEST_LOCATION );
105 }
106
107 void TestImage( ImageView imageView, ResourceImage image )
108 {
109   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
110
111   Property::Map map;
112   DALI_TEST_CHECK( value.Get( map ) );
113
114   if( map.Find( "width" ) )
115   {
116     int width = 0;
117     DALI_TEST_CHECK( map[ "width" ].Get( width ) );
118     DALI_TEST_EQUALS( (unsigned int)width, image.GetWidth(), TEST_LOCATION );
119   }
120
121   if( map.Find( "height" ) )
122   {
123     int height = 0;
124     DALI_TEST_CHECK( map[ "height" ].Get( height ) );
125     DALI_TEST_EQUALS( (unsigned int)height, image.GetHeight(), TEST_LOCATION );
126   }
127
128   DALI_TEST_CHECK( map.Find( "type" ) );
129
130   std::string type;
131   DALI_TEST_CHECK( map[ "type" ].Get( type ) );
132   DALI_TEST_EQUALS( type, "ResourceImage", TEST_LOCATION );
133
134   std::string filename;
135   DALI_TEST_CHECK( map[ "filename" ].Get( filename ) );
136   DALI_TEST_EQUALS( filename, image.GetUrl(), TEST_LOCATION );
137 }
138
139 void TestUrl( ImageView imageView, const std::string url )
140 {
141   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
142
143   std::string urlActual;
144   DALI_TEST_CHECK( value.Get( urlActual ) );
145   DALI_TEST_EQUALS( urlActual, url, TEST_LOCATION );
146 }
147
148 } // namespace
149
150 int UtcDaliImageViewNewP(void)
151 {
152   TestApplication application;
153
154   ImageView imageView = ImageView::New();
155
156   DALI_TEST_CHECK( imageView );
157
158   END_TEST;
159 }
160
161 int UtcDaliImageViewNewImageP(void)
162 {
163   TestApplication application;
164
165   BufferImage image = CreateBufferImage( 100, 200, Vector4( 1.f, 1.f, 1.f, 1.f ) );
166   ImageView imageView = ImageView::New( image );
167
168   DALI_TEST_CHECK( imageView );
169   TestImage( imageView, image );
170
171   END_TEST;
172 }
173
174 int UtcDaliImageViewNewUrlP(void)
175 {
176   TestApplication application;
177
178   ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME );
179   DALI_TEST_CHECK( imageView );
180
181   TestUrl( imageView, TEST_IMAGE_FILE_NAME );
182
183   END_TEST;
184 }
185
186 int UtcDaliImageViewConstructorP(void)
187 {
188   TestApplication application;
189
190   ImageView imageView;
191
192   DALI_TEST_CHECK( !imageView );
193
194   END_TEST;
195 }
196
197 int UtcDaliImageViewCopyConstructorP(void)
198 {
199   TestApplication application;
200
201   // Initialize an object, ref count == 1
202   ImageView imageView = ImageView::New();
203
204   ImageView copy( imageView );
205   DALI_TEST_CHECK( copy );
206
207   END_TEST;
208 }
209
210 int UtcDaliImageViewAssignmentOperatorP(void)
211 {
212   TestApplication application;
213
214   ImageView imageView = ImageView::New();
215
216   ImageView copy( imageView );
217   DALI_TEST_CHECK( copy );
218   DALI_TEST_EQUALS( imageView, copy, TEST_LOCATION );
219
220   END_TEST;
221 }
222
223 int UtcDaliImageViewDownCastP(void)
224 {
225   TestApplication application;
226
227   ImageView imageView = ImageView::New();
228
229   BaseHandle object(imageView);
230
231   ImageView imageView2 = ImageView::DownCast( object );
232   DALI_TEST_CHECK(imageView2);
233
234   ImageView imageView3 = DownCast< ImageView >( object );
235   DALI_TEST_CHECK(imageView3);
236
237   END_TEST;
238 }
239
240 int UtcDaliImageViewDownCastN(void)
241 {
242   TestApplication application;
243
244   BaseHandle unInitializedObject;
245
246   ImageView imageView1 = ImageView::DownCast( unInitializedObject );
247   DALI_TEST_CHECK( !imageView1 );
248
249   ImageView imageView2 = DownCast< ImageView >( unInitializedObject );
250   DALI_TEST_CHECK( !imageView2 );
251
252   END_TEST;
253 }
254
255 int UtcDaliImageViewTypeRegistry(void)
256 {
257   ToolkitTestApplication application;
258
259   TypeRegistry typeRegistry = TypeRegistry::Get();
260   DALI_TEST_CHECK( typeRegistry );
261
262   TypeInfo typeInfo = typeRegistry.GetTypeInfo( "ImageView" );
263   DALI_TEST_CHECK( typeInfo );
264
265   BaseHandle handle = typeInfo.CreateInstance();
266   DALI_TEST_CHECK( handle );
267
268   ImageView imageView = ImageView::DownCast( handle );
269   DALI_TEST_CHECK( imageView );
270
271   END_TEST;
272 }
273
274 int UtcDaliImageViewSetGetProperty01(void)
275 {
276   ToolkitTestApplication application;
277
278   ImageView imageView = ImageView::New();
279
280   Property::Index idx = imageView.GetPropertyIndex( "image" );
281   DALI_TEST_EQUALS( idx, (Property::Index)ImageView::Property::IMAGE, TEST_LOCATION );
282
283   imageView.SetProperty( idx, TEST_IMAGE_FILE_NAME );
284   TestUrl( imageView, TEST_IMAGE_FILE_NAME );
285
286   END_TEST;
287 }
288
289 int UtcDaliImageViewSetGetProperty02(void)
290 {
291   ToolkitTestApplication application;
292
293   Image image = CreateBufferImage( 10, 10, Color::WHITE );
294   ImageView imageView = ImageView::New(image);
295   Vector4 fullImageRect( 0.f, 0.f, 1.f, 1.f );
296
297   Stage::GetCurrent().Add( imageView );
298
299   application.SendNotification();
300   application.Render();
301   TestGlAbstraction& gl = application.GetGlAbstraction();
302
303   Vector4 pixelAreaUniform;
304   DALI_TEST_CHECK( gl.GetUniformValue<Vector4>( "pixelArea", pixelAreaUniform ) );
305   DALI_TEST_EQUALS( pixelAreaUniform, fullImageRect, TEST_LOCATION );
306
307   Property::Value value = imageView.GetProperty( ImageView::Property::PIXEL_AREA );
308   Vector4 pixelAreaValue;
309   DALI_TEST_CHECK( value.Get(pixelAreaValue) );
310   DALI_TEST_EQUALS( pixelAreaValue, fullImageRect, TEST_LOCATION );
311
312   Vector4 pixelAreaSet( 0.2f, 0.2f, 0.3f, 0.3f );
313   imageView.SetProperty( ImageView::Property::PIXEL_AREA, pixelAreaSet);
314
315   application.SendNotification();
316   application.Render();
317
318   value = imageView.GetProperty( ImageView::Property::PIXEL_AREA );
319   value.Get(pixelAreaValue);
320   DALI_TEST_EQUALS( pixelAreaValue, pixelAreaSet, TEST_LOCATION );
321
322   DALI_TEST_CHECK( gl.GetUniformValue<Vector4>( "pixelArea", pixelAreaUniform ) );
323   DALI_TEST_EQUALS( pixelAreaUniform, pixelAreaSet, TEST_LOCATION );
324
325   END_TEST;
326 }
327
328 int UtcDaliImageViewSetGetProperty03(void)
329 {
330   ToolkitTestApplication application;
331
332   Image image = CreateBufferImage( 10, 10, Color::WHITE );
333   ImageView imageView = ImageView::New(image);
334   Stage::GetCurrent().Add( imageView );
335   application.SendNotification();
336   application.Render();
337
338   // conventional alpha blending
339   Renderer renderer = imageView.GetRendererAt( 0 );
340   Property::Value value = renderer.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA );
341   bool enable;
342   DALI_TEST_CHECK( value.Get( enable ) );
343   DALI_TEST_CHECK( !enable );
344
345   // pre-multiplied alpha blending
346   imageView.SetProperty( Toolkit::ImageView::Property::PRE_MULTIPLIED_ALPHA, true );
347   application.SendNotification();
348   application.Render();
349
350   int srcFactorRgb    = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_SRC_RGB );
351   int destFactorRgb   = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_DEST_RGB );
352   int srcFactorAlpha  = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_SRC_ALPHA );
353   int destFactorAlpha = renderer.GetProperty<int>( Renderer::Property::BLEND_FACTOR_DEST_ALPHA );
354   DALI_TEST_CHECK( srcFactorRgb == BlendingFactor::ONE );
355   DALI_TEST_CHECK( destFactorRgb == BlendingFactor::ONE_MINUS_SRC_ALPHA );
356   DALI_TEST_CHECK( srcFactorAlpha == BlendingFactor::ONE );
357   DALI_TEST_CHECK( destFactorAlpha == BlendingFactor::ONE );
358
359   value = renderer.GetProperty( Renderer::Property::BLEND_PRE_MULTIPLIED_ALPHA );
360   DALI_TEST_CHECK( value.Get( enable ) );
361   DALI_TEST_CHECK( enable );
362
363   END_TEST;
364 }
365
366 int UtcDaliImageViewAsyncLoadingWithoutAltasing(void)
367 {
368   ToolkitTestApplication application;
369
370   // Async loading, no atlasing for big size image
371   ImageView imageView = ImageView::New( gImage_600_RGB );
372
373   // By default, Aysnc loading is used
374   Stage::GetCurrent().Add( imageView );
375   application.SendNotification();
376   application.Render(16);
377   application.Render(16);
378   application.SendNotification();
379
380   // BitmapLoader is not used
381   BitmapLoader loader = BitmapLoader::GetLatestCreated();
382   DALI_TEST_CHECK( !loader );
383
384   END_TEST;
385 }
386
387 int UtcDaliImageViewAsyncLoadingWithAltasing(void)
388 {
389   ToolkitTestApplication application;
390
391   //Async loading, automatic atlasing for small size image
392   TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace();
393   callStack.Reset();
394   callStack.Enable(true);
395
396   ImageView imageView = ImageView::New( gImage_34_RGBA, ImageDimensions( 34, 34 ) );
397
398   // By default, Aysnc loading is used
399   // loading is not started if the actor is offStage
400   BitmapLoader loader = BitmapLoader::GetLatestCreated();
401   DALI_TEST_CHECK( !loader );
402
403   Stage::GetCurrent().Add( imageView );
404   application.SendNotification();
405   application.Render(16);
406   application.Render(16);
407   application.SendNotification();
408
409   // loading started
410   loader = BitmapLoader::GetLatestCreated();
411   DALI_TEST_CHECK( loader );
412
413   // worker thread is created
414   EventThreadCallback* eventTrigger = EventThreadCallback::Get();
415   DALI_TEST_CHECK( eventTrigger );
416
417   loader.WaitForLoading();// waiting until the image to be loaded
418   DALI_TEST_CHECK( loader.IsLoaded() );
419
420   CallbackBase* callback = eventTrigger->GetCallback();
421   CallbackBase::Execute( *callback );
422
423   application.SendNotification();
424   application.Render(16);
425
426   callStack.Enable(false);
427
428   TraceCallStack::NamedParams params;
429   params["width"] = ToString(34);
430   params["height"] = ToString(34);
431   DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ), true, TEST_LOCATION );
432
433   END_TEST;
434 }
435
436 int UtcDaliImageViewSyncLoading(void)
437 {
438   ToolkitTestApplication application;
439
440   Property::Map syncLoadingMap;
441   syncLoadingMap[ "synchronousLoading" ] = true;
442
443   // Sync loading, no atlasing for big size image
444   {
445     ImageView imageView = ImageView::New( gImage_600_RGB );
446
447     // Sync loading is used
448     imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap );
449
450     // BitmapLoader is used, and the loading is started immediately even the actor is not on stage.
451     BitmapLoader loader = BitmapLoader::GetLatestCreated();
452     DALI_TEST_CHECK( loader );
453   }
454
455   // Sync loading, automatic atlasing for small size image
456   {
457     BitmapLoader::ResetLatestCreated();
458     TraceCallStack& callStack = application.GetGlAbstraction().GetTextureTrace();
459     callStack.Reset();
460     callStack.Enable(true);
461
462     ImageView imageView = ImageView::New( );
463     // Sync loading is used
464     syncLoadingMap[ "url" ] = gImage_34_RGBA;
465     syncLoadingMap[ "desiredHeight" ] = 34;
466     syncLoadingMap[ "desiredWidth" ] = 34;
467     imageView.SetProperty( ImageView::Property::IMAGE, syncLoadingMap );
468
469     // loading is started even if the actor is offStage
470     BitmapLoader loader = BitmapLoader::GetLatestCreated();
471     DALI_TEST_CHECK( loader );
472
473     loader.WaitForLoading();
474
475     DALI_TEST_CHECK( loader.IsLoaded() );
476
477     Stage::GetCurrent().Add( imageView );
478     application.SendNotification();
479     application.Render(16);
480
481     TraceCallStack::NamedParams params;
482     params["width"] = ToString(34);
483     params["height"] = ToString(34);
484     DALI_TEST_EQUALS( callStack.FindMethodAndParams( "TexSubImage2D", params ),
485                       true, TEST_LOCATION );
486   }
487   END_TEST;
488 }
489
490 int UtcDaliImageViewSizeWithBackground(void)
491 {
492   ToolkitTestApplication application;
493
494   int width = 100;
495   int height = 200;
496   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
497   ImageView imageView = ImageView::New();
498   imageView.SetBackgroundImage( image );
499
500   Stage::GetCurrent().Add( imageView );
501   application.SendNotification();
502   application.Render();
503
504   DALI_TEST_EQUALS( imageView.GetCurrentSize().width, (float)width, TEST_LOCATION );
505   DALI_TEST_EQUALS( imageView.GetCurrentSize().height, (float)height, TEST_LOCATION );
506
507   END_TEST;
508 }
509
510 int UtcDaliImageViewSizeWithBackgroundAndImage(void)
511 {
512   ToolkitTestApplication application;
513
514   int widthBackground = 100;
515   int heightBackground = 200;
516   int width = 300;
517   int height = 400;
518   Image imageBackground = CreateBufferImage( widthBackground, heightBackground, Vector4(1.f, 1.f, 1.f, 1.f) );
519   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
520
521   ImageView imageView = ImageView::New();
522   imageView.SetBackgroundImage( imageBackground );
523   imageView.SetImage( image );
524
525   Stage::GetCurrent().Add( imageView );
526   application.SendNotification();
527   application.Render();
528
529   DALI_TEST_EQUALS( imageView.GetCurrentSize().width, (float)width, TEST_LOCATION );
530   DALI_TEST_EQUALS( imageView.GetCurrentSize().height, (float)height, TEST_LOCATION );
531
532   END_TEST;
533 }
534
535 int UtcDaliImageViewHeightForWidthBackground(void)
536 {
537   ToolkitTestApplication application;
538
539   int widthBackground = 100;
540   int heightBackground = 200;
541   Image imageBackground = CreateBufferImage( widthBackground, heightBackground, Vector4(1.f, 1.f, 1.f, 1.f) );
542
543   ImageView imageView = ImageView::New();
544   imageView.SetBackgroundImage( imageBackground );
545
546   Stage::GetCurrent().Add( imageView );
547   application.SendNotification();
548   application.Render();
549
550   Control control = Control::DownCast( imageView );
551   DALI_TEST_CHECK( control );
552   DALI_TEST_EQUALS( imageView.GetHeightForWidth( 123.f ), control.GetHeightForWidth( 123.f ), TEST_LOCATION );
553   DALI_TEST_EQUALS( imageView.GetWidthForHeight( 321.f ), control.GetWidthForHeight( 321.f ), TEST_LOCATION );
554
555   END_TEST;
556 }
557
558 int UtcDaliImageViewHeightForWidthBackgroundAndImage(void)
559 {
560   ToolkitTestApplication application;
561
562   int widthBackground = 100;
563   int heightBackground = 200;
564   int width = 300;
565   int height = 400;
566   Image imageBackground = CreateBufferImage( widthBackground, heightBackground, Vector4(1.f, 1.f, 1.f, 1.f) );
567   Image image = CreateBufferImage( width, height, Vector4(1.f, 1.f, 1.f, 1.f) );
568
569   ImageView imageView = ImageView::New();
570   imageView.SetBackgroundImage( imageBackground );
571   imageView.SetImage( image );
572
573   Stage::GetCurrent().Add( imageView );
574   application.SendNotification();
575   application.Render();
576
577   DALI_TEST_EQUALS( imageView.GetHeightForWidth( width ), (float)height, TEST_LOCATION );
578   DALI_TEST_EQUALS( imageView.GetWidthForHeight( height ), (float)width, TEST_LOCATION );
579
580   END_TEST;
581 }
582
583 int UtcDaliImageViewSetBufferImage(void)
584 {
585   ToolkitTestApplication application;
586
587   int width1 = 300;
588   int height1 = 400;
589   BufferImage image1 = CreateBufferImage( width1, height1, Vector4( 1.f, 1.f, 1.f, 1.f ) );
590   ImageView imageView = ImageView::New();
591   imageView.SetImage( image1 );
592
593   TestImage( imageView, image1 );
594
595   int width2 = 600;
596   int height2 = 500;
597   BufferImage image2 = CreateBufferImage( width2, height2, Vector4( 1.f, 1.f, 1.f, 1.f ) );
598   imageView.SetImage( image2 );
599
600   TestImage( imageView, image2 );
601
602   END_TEST;
603 }
604
605 int UtcDaliImageViewSetImageUrl(void)
606 {
607   ToolkitTestApplication application;
608
609   ImageView imageView = ImageView::New();
610   imageView.SetImage( TEST_IMAGE_FILE_NAME );
611   TestUrl( imageView, TEST_IMAGE_FILE_NAME );
612
613
614   imageView.SetImage( TEST_IMAGE_FILE_NAME2 );
615   TestUrl( imageView, TEST_IMAGE_FILE_NAME2 );
616
617   END_TEST;
618 }
619
620 int UtcDaliImageViewSetImageOnstageP(void)
621 {
622   ToolkitTestApplication application;
623
624   ImageView imageView = ImageView::New();
625
626   Stage::GetCurrent().Add( imageView );
627   application.SendNotification();
628   application.Render();
629
630   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
631   imageView.SetImage( image1 );
632   TestImage( imageView, image1 );
633
634   int width = 300;
635   int height = 400;
636   BufferImage image2 = CreateBufferImage( width, height, Vector4( 1.f, 1.f, 1.f, 1.f ) );
637   imageView.SetImage( image2 );
638   TestImage( imageView, image2 );
639
640   END_TEST;
641 }
642
643 int UtcDaliImageViewSetImageOnstageN(void)
644 {
645   ToolkitTestApplication application;
646
647   ImageView imageView = ImageView::New();
648
649   Stage::GetCurrent().Add( imageView );
650   application.SendNotification();
651   application.Render();
652
653   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
654   imageView.SetImage( image1 );
655   TestImage( imageView, image1 );
656
657   Image image2;
658   imageView.SetImage( image2 );
659
660   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
661
662   //the value should be empty
663   std::string url;
664   DALI_TEST_CHECK( !value.Get( url ) );
665
666   Property::Map map;
667   DALI_TEST_CHECK( !value.Get( map ) );
668
669   END_TEST;
670 }
671
672 int UtcDaliImageViewSetImageOffstageP(void)
673 {
674   ToolkitTestApplication application;
675
676   ImageView imageView = ImageView::New();
677
678   Stage::GetCurrent().Add( imageView );
679   application.SendNotification();
680   application.Render();
681   Stage::GetCurrent().Remove( imageView );
682
683   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
684   imageView.SetImage( image1 );
685   TestImage( imageView, image1 );
686
687   int width = 300;
688   int height = 400;
689   BufferImage image2 = CreateBufferImage( width, height, Vector4( 1.f, 1.f, 1.f, 1.f ) );
690   imageView.SetImage( image2 );
691   TestImage( imageView, image2 );
692
693   END_TEST;
694 }
695
696 int UtcDaliImageViewSetImageOffstageN(void)
697 {
698   ToolkitTestApplication application;
699
700   ImageView imageView = ImageView::New();
701
702   Stage::GetCurrent().Add( imageView );
703   application.SendNotification();
704   application.Render();
705   Stage::GetCurrent().Remove( imageView );
706
707   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
708   imageView.SetImage( image1 );
709   TestImage( imageView, image1 );
710
711   Image image2;
712   imageView.SetImage( image2 );
713
714   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
715
716   //the value should be empty
717   std::string url;
718   DALI_TEST_CHECK( !value.Get( url ) );
719
720   Property::Map map;
721   DALI_TEST_CHECK( !value.Get( map ) );
722
723   END_TEST;
724 }
725
726 int UtcDaliImageViewSetImageN(void)
727 {
728   ToolkitTestApplication application;
729
730   Image image1;
731   ImageView imageView = ImageView::New();
732   imageView.SetImage( image1 );
733
734   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
735
736   //the value should be empty
737   std::string url;
738   DALI_TEST_CHECK( !value.Get( url ) );
739
740   Property::Map map;
741   DALI_TEST_CHECK( !value.Get( map ) );
742
743   std::string resource_url;
744   Property::Value val = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
745   DALI_TEST_CHECK( !val.Get( resource_url ) );
746
747   END_TEST;
748 }
749
750 int UtcDaliImageViewSetImageTypeChangesP(void)
751 {
752   ToolkitTestApplication application;
753
754   ImageView imageView = ImageView::New();
755
756
757   std::string url;
758   Property::Map map;
759
760   Property::Value value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
761   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
762   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
763
764   // Set a URL
765   imageView.SetImage( "TEST_URL" );
766   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
767
768   DALI_TEST_CHECK( value.Get( url ) );   // Value should NOT be empty
769   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
770
771   // Set an empty Image
772   imageView.SetImage( Image() );
773   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
774
775   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
776   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
777
778   // Set an Image
779   ResourceImage image1 = ResourceImage::New( TEST_IMAGE_FILE_NAME );
780   imageView.SetImage( image1 );
781   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
782
783   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
784   DALI_TEST_CHECK( value.Get( map ) );   // Value should NOT be empty
785
786   // Set an empty URL
787   imageView.SetImage( "" );
788   value = imageView.GetProperty( imageView.GetPropertyIndex( "image" ) );
789
790   DALI_TEST_CHECK( ! value.Get( url ) ); // Value should be empty
791   DALI_TEST_CHECK( ! value.Get( map ) ); // Value should be empty
792
793   END_TEST;
794 }
795
796 int UtcDaliImageViewResourceUrlP(void)
797 {
798   ToolkitTestApplication application;
799
800   ImageView imageView = ImageView::New();
801   DALI_TEST_CHECK( imageView.GetProperty( ImageView::Property::RESOURCE_URL ).Get< std::string >().empty() );
802
803   imageView.SetProperty( ImageView::Property::RESOURCE_URL, "TestString" );
804   DALI_TEST_EQUALS( imageView.GetProperty( ImageView::Property::RESOURCE_URL ).Get< std::string >(), "TestString", TEST_LOCATION );
805
806   END_TEST;
807 }
808
809 // Scenarios 1: ImageView from regular image
810 int UtcDaliImageViewSetImageBufferImage(void)
811 {
812   ToolkitTestApplication application;
813
814   ImageView imageView = ImageView::New();
815   Stage::GetCurrent().Add( imageView );
816
817   TestGlAbstraction& gl = application.GetGlAbstraction();
818   gl.EnableTextureCallTrace( true );
819
820   std::vector< GLuint > ids;
821   ids.push_back( 23 );
822   application.GetGlAbstraction().SetNextTextureIds( ids );
823
824   int width = 300;
825   int height = 400;
826   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
827
828   imageView.SetImage( image );
829
830   application.SendNotification();
831   application.Render();
832
833   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
834
835   std::stringstream params;
836   params << GL_TEXTURE_2D << ", " << 23;
837   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
838
839   END_TEST;
840 }
841
842 // Scenarios 2: ImageView from Native image
843 int UtcDaliImageViewSetImageNativeImage(void)
844 {
845   ToolkitTestApplication application;
846
847   ImageView imageView = ImageView::New();
848   Stage::GetCurrent().Add( imageView );
849
850   TestGlAbstraction& gl = application.GetGlAbstraction();
851   gl.EnableTextureCallTrace( true );
852
853   std::vector< GLuint > ids;
854   ids.push_back( 23 );
855   application.GetGlAbstraction().SetNextTextureIds( ids );
856
857   int width = 200;
858   int height = 500;
859   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
860   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
861
862   imageView.SetImage( nativeImage );
863   application.SendNotification();
864   application.Render();
865
866   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
867
868   std::stringstream params;
869   params << GL_TEXTURE_2D << ", " << 23;
870   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
871
872   END_TEST;
873 }
874
875 // Scenarios 3: ImageView initially from regular image but then SetImage called with Native image
876 int UtcDaliImageViewSetImageBufferImageToNativeImage(void)
877 {
878   ToolkitTestApplication application;
879
880   int width = 300;
881   int height = 400;
882   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
883
884   ImageView imageView = ImageView::New( image );
885   Stage::GetCurrent().Add( imageView );
886
887   TestGlAbstraction& gl = application.GetGlAbstraction();
888   gl.EnableTextureCallTrace( true );
889
890   std::vector< GLuint > ids;
891   ids.push_back( 23 );
892   application.GetGlAbstraction().SetNextTextureIds( ids );
893
894   application.SendNotification();
895   application.Render();
896
897   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
898
899   std::stringstream params;
900   params << GL_TEXTURE_2D << ", " << 23;
901   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
902
903   width = 200;
904   height = 500;
905   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
906   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
907   imageView.SetImage( nativeImage );
908
909   ids.clear();
910   ids.push_back( 24 );
911   application.GetGlAbstraction().SetNextTextureIds( ids );
912
913   application.SendNotification();
914   application.Render();
915
916   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
917
918   std::stringstream nextTextureParams;
919   nextTextureParams << GL_TEXTURE_2D << ", " << 24;
920   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nextTextureParams.str()) );
921
922   END_TEST;
923 }
924
925 // Scenarios 4: ImageView initially from Native image but then SetImage called with regular image
926 int UtcDaliImageViewSetImageNativeImageToBufferImage(void)
927 {
928   ToolkitTestApplication application;
929
930   int width = 300;
931   int height = 400;
932   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
933   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
934
935   ImageView imageView = ImageView::New( nativeImage );
936   Stage::GetCurrent().Add( imageView );
937
938   TestGlAbstraction& gl = application.GetGlAbstraction();
939   gl.EnableTextureCallTrace( true );
940
941   std::vector< GLuint > ids;
942   ids.push_back( 23 );
943   application.GetGlAbstraction().SetNextTextureIds( ids );
944
945   application.SendNotification();
946   application.Render();
947
948   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
949
950   std::stringstream params;
951   params << GL_TEXTURE_2D << ", " << 23;
952   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
953
954   width = 200;
955   height = 500;
956   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
957   imageView.SetImage( image );
958
959   ids.clear();
960   ids.push_back( 24 );
961   application.GetGlAbstraction().SetNextTextureIds( ids );
962
963   application.SendNotification();
964   application.Render();
965
966   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
967
968   std::stringstream nextTextureParams;
969   nextTextureParams << GL_TEXTURE_2D << ", " << 24;
970   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nextTextureParams.str()) );
971
972   END_TEST;
973 }
974
975 // Scenarios 5: ImageView from Native image with custom shader
976 int UtcDaliImageViewSetImageNativeImageWithCustomShader(void)
977 {
978   ToolkitTestApplication application;
979
980   int width = 300;
981   int height = 400;
982
983   Property::Map customShader;
984   customShader.Insert( "vertexShader", VERTEX_SHADER );
985   customShader.Insert( "fragmentShader", FRAGMENT_SHADER );
986
987   Property::Array shaderHints;
988   shaderHints.PushBack( "requiresSelfDepthTest" );
989   shaderHints.PushBack( "outputIsTransparent" );
990   shaderHints.PushBack( "outputIsOpaque" );
991   shaderHints.PushBack( "modifiesGeometry" );
992
993   customShader.Insert( "hints", shaderHints );
994
995   Property::Map map;
996   map.Insert( "rendererType", "image" );
997   map.Insert( "shader", customShader );
998
999   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1000   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1001
1002   ImageView imageView = ImageView::New( nativeImage );
1003   imageView.SetProperty( ImageView::Property::IMAGE, map );
1004   Stage::GetCurrent().Add( imageView );
1005
1006   imageView.SetProperty( ImageView::Property::IMAGE, map );
1007
1008   TestGlAbstraction& gl = application.GetGlAbstraction();
1009   gl.EnableTextureCallTrace( true );
1010
1011   std::vector< GLuint > ids;
1012   ids.push_back( 23 );
1013   application.GetGlAbstraction().SetNextTextureIds( ids );
1014
1015   application.SendNotification();
1016   application.Render();
1017
1018   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1019
1020   std::stringstream params;
1021   params << GL_TEXTURE_2D << ", " << 23;
1022   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1023
1024   END_TEST;
1025 }
1026
1027 // Scenarios 6: ImageView initially from regular image with custom shader but then SetImage called with Native
1028 int UtcDaliImageViewSetImageBufferImageWithCustomShaderToNativeImage(void)
1029 {
1030   ToolkitTestApplication application;
1031
1032   int width = 300;
1033   int height = 400;
1034
1035   Property::Map customShader;
1036   customShader.Insert( "vertexShader", VERTEX_SHADER );
1037   customShader.Insert( "fragmentShader", FRAGMENT_SHADER );
1038
1039   Property::Array shaderHints;
1040   shaderHints.PushBack( "requiresSelfDepthTest" );
1041   shaderHints.PushBack( "outputIsTransparent" );
1042   shaderHints.PushBack( "outputIsOpaque" );
1043   shaderHints.PushBack( "modifiesGeometry" );
1044
1045   customShader.Insert( "hints", shaderHints );
1046
1047   Property::Map map;
1048   map.Insert( "rendererType", "image" );
1049   map.Insert( "shader", customShader );
1050
1051   BufferImage image = CreateBufferImage( width, height, Color::WHITE );
1052
1053   ImageView imageView = ImageView::New( image );
1054   imageView.SetProperty( ImageView::Property::IMAGE, map );
1055   Stage::GetCurrent().Add( imageView );
1056
1057   imageView.SetProperty( ImageView::Property::IMAGE, map );
1058
1059   TestGlAbstraction& gl = application.GetGlAbstraction();
1060   gl.EnableTextureCallTrace( true );
1061
1062   std::vector< GLuint > ids;
1063   ids.push_back( 23 );
1064   application.GetGlAbstraction().SetNextTextureIds( ids );
1065
1066   application.SendNotification();
1067   application.Render();
1068
1069   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1070
1071   std::stringstream params;
1072   params << GL_TEXTURE_2D << ", " << 23;
1073   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", params.str()) );
1074
1075   TestNativeImagePointer nativeImageInterface = TestNativeImage::New( width, height );
1076   NativeImage nativeImage = NativeImage::New( *(nativeImageInterface.Get()) );
1077   imageView.SetImage( nativeImage );
1078
1079   ids.clear();
1080   ids.push_back( 24 );
1081   application.GetGlAbstraction().SetNextTextureIds( ids );
1082
1083   application.SendNotification();
1084   application.Render();
1085
1086   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethod("BindTexture") );
1087
1088   std::stringstream nativeImageParams;
1089   nativeImageParams << GL_TEXTURE_2D << ", " << 24;
1090   DALI_TEST_CHECK( gl.GetTextureTrace().FindMethodAndParams("BindTexture", nativeImageParams.str()) );
1091
1092
1093   END_TEST;
1094 }
1095
1096 int UtcDaliImageViewGetImageP1(void)
1097 {
1098   ToolkitTestApplication application;
1099
1100   ImageView imageView = ImageView::New();
1101   DALI_TEST_CHECK( ! imageView.GetImage() );
1102
1103   Image image = CreateBufferImage();
1104   imageView.SetImage( image );
1105   DALI_TEST_CHECK( imageView.GetImage() == image );
1106
1107   END_TEST;
1108 }
1109
1110 int UtcDaliImageViewGetImageP2(void)
1111 {
1112   ToolkitTestApplication application;
1113
1114   BufferImage image = CreateBufferImage();
1115   ImageView imageView = ImageView::New( image );
1116   DALI_TEST_CHECK( imageView.GetImage() == image );
1117
1118   END_TEST;
1119 }
1120
1121 int UtcDaliImageViewGetImageN(void)
1122 {
1123   ToolkitTestApplication application;
1124
1125   ImageView imageView = ImageView::New( TEST_IMAGE_FILE_NAME );
1126   DALI_TEST_CHECK( ! imageView.GetImage() );
1127
1128   Image image = CreateBufferImage();
1129   imageView.SetImage( image );
1130   DALI_TEST_CHECK( imageView.GetImage() == image );
1131
1132   imageView.SetImage( TEST_IMAGE_FILE_NAME );
1133   DALI_TEST_CHECK( ! imageView.GetImage() );
1134
1135   END_TEST;
1136 }