Stop resetting transform values to default in OnRelayout & OnSizeSet
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-AsyncImageLoader.cpp
1 /*
2  * Copyright (c) 2016 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 #include <stdlib.h>
18 #include <unistd.h>
19 #include <dali/dali.h>
20 #include <dali-toolkit-test-suite-utils.h>
21 #include <toolkit-event-thread-callback.h>
22 #include <dali-toolkit/dali-toolkit.h>
23
24 using namespace Dali;
25 using namespace Dali::Toolkit;
26
27 namespace
28 {
29 // resolution: 34*34, pixel format: RGBA8888
30 static const char* gImage_34_RGBA = TEST_RESOURCE_DIR "/icon-edit.png";
31 // resolution: 50*50, pixel format: RGBA8888
32 static const char* gImage_50_RGBA = TEST_RESOURCE_DIR "/icon-delete.png";
33 // resolution: 128*128, pixel format: RGB888
34 static const char* gImage_128_RGB = TEST_RESOURCE_DIR "/gallery-small-1.jpg";
35
36 // for testing the ImageLoadedSignal
37 class ImageLoadedSignalVerifier : public ConnectionTracker
38 {
39 public:
40
41   ImageLoadedSignalVerifier()
42   : mCount( 0 )
43   {}
44
45   virtual ~ImageLoadedSignalVerifier()
46   {}
47
48   void ImageLoaded( uint32_t id, PixelData pixelData )
49   {
50     mIDs.push_back( id );
51     mPixelDataList.push_back( pixelData );
52     mCount++;
53   }
54
55   int LoadedImageCount()
56   {
57     return mCount;
58   }
59
60   bool Verify( uint32_t id, uint32_t width, uint32_t height )
61   {
62     int size = mIDs.size();
63     for( int i = 0; i<size; i++  )
64     {
65       if( mIDs[i] == id )
66       {
67         return mPixelDataList[i].GetWidth() == width
68             && mPixelDataList[i].GetHeight() == height;
69       }
70     }
71
72     return false;
73   }
74
75 private:
76
77   int mCount;
78
79   std::vector<uint32_t> mIDs;
80   std::vector<PixelData> mPixelDataList;
81 };
82
83
84 } // anonymous namespace
85
86 void dali_async_image_loader_startup(void)
87 {
88   test_return_value = TET_UNDEF;
89 }
90
91 void dali_async_image_loader_cleanup(void)
92 {
93   test_return_value = TET_PASS;
94 }
95
96 int UtcDaliImageAtlasNew01(void)
97 {
98   ToolkitTestApplication application;
99
100   //invoke default handle constructor
101   AsyncImageLoader loader;
102
103   DALI_TEST_CHECK( !loader );
104
105   // initialise handle
106   loader = AsyncImageLoader::New();
107   DALI_TEST_CHECK( loader );
108
109   END_TEST;
110 }
111
112 int UtcDaliAsyncImageLoaderCopyConstructor(void)
113 {
114   ToolkitTestApplication application;
115
116   AsyncImageLoader loader = AsyncImageLoader::New( );
117   DALI_TEST_CHECK( loader );
118
119   AsyncImageLoader loaderCopy(loader);
120   DALI_TEST_CHECK( loaderCopy );
121
122   END_TEST;
123 }
124
125 int UtcDaliAsyncImageLoaderAssignmentOperator(void)
126 {
127   ToolkitTestApplication application;
128
129   AsyncImageLoader loader = AsyncImageLoader::New();
130   DALI_TEST_CHECK( loader );
131
132   AsyncImageLoader loader2;
133   DALI_TEST_CHECK( !loader2 );
134
135   loader2 = loader;
136   DALI_TEST_CHECK( loader2 );
137   DALI_TEST_CHECK( loader == loader2 ); // the two handles are pointing to the same object.
138
139   END_TEST;
140 }
141
142 int UtcDaliAsyncImageLoaderDownCastP(void)
143 {
144   AsyncImageLoader asyncImageLoader = AsyncImageLoader::New();
145   BaseHandle object(asyncImageLoader);
146
147   AsyncImageLoader asyncImageLoader2 = AsyncImageLoader::DownCast( object );
148
149   DALI_TEST_CHECK( asyncImageLoader2 );
150
151   END_TEST;
152 }
153
154 int UtcDaliAsyncImageLoaderDownCastN(void)
155 {
156   BaseHandle unInitializedObject;
157   AsyncImageLoader asyncImageLoader = AsyncImageLoader::DownCast( unInitializedObject );
158
159   DALI_TEST_CHECK( !asyncImageLoader );
160
161   END_TEST;
162 }
163
164 int UtcDaliAsyncImageLoaderLoadAndLoadedSignal(void)
165 {
166   ToolkitTestApplication application;
167
168   AsyncImageLoader loader = AsyncImageLoader::New();
169   ImageLoadedSignalVerifier loadedSignalVerifier;
170
171   loader.ImageLoadedSignal().Connect( &loadedSignalVerifier, &ImageLoadedSignalVerifier::ImageLoaded );
172
173   loader.Load( gImage_34_RGBA );
174   uint32_t id02 = loader.Load( gImage_50_RGBA, ImageDimensions( 25, 25 ) );
175   uint32_t id03 = loader.Load( gImage_128_RGB, ImageDimensions( 100, 100 ), FittingMode::SCALE_TO_FILL, SamplingMode::BOX_THEN_LINEAR, true );
176
177   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 3 ), true, TEST_LOCATION );
178
179   application.SendNotification();
180   application.Render();
181
182   DALI_TEST_CHECK( loadedSignalVerifier.LoadedImageCount() == 3 );
183   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id02, 25, 25 ) );
184   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id03, 100, 100 ) );
185
186   END_TEST;
187 }
188
189 // Note: This is not an ideal test, but we cannot guarantee we can call Cancel() before the image has finished loading.
190 int UtcDaliAsyncImageLoaderCancel(void)
191 {
192   ToolkitTestApplication application;
193
194   AsyncImageLoader loader = AsyncImageLoader::New();
195   ImageLoadedSignalVerifier loadedSignalVerifier;
196
197   loader.ImageLoadedSignal().Connect( &loadedSignalVerifier, &ImageLoadedSignalVerifier::ImageLoaded );
198
199   uint32_t id01 = loader.Load( gImage_34_RGBA, ImageDimensions( 34, 34 ) );
200   uint32_t id02 = loader.Load( gImage_50_RGBA, ImageDimensions( 25, 25 ) );
201   uint32_t id03 = loader.Load( gImage_128_RGB, ImageDimensions( 100, 100 ), FittingMode::SCALE_TO_FILL, SamplingMode::BOX_THEN_LINEAR, true );
202
203   DALI_TEST_EQUALS( Test::WaitForEventThreadTrigger( 3 ), true, TEST_LOCATION );
204
205   application.SendNotification();
206   application.Render();
207
208   DALI_TEST_CHECK( loadedSignalVerifier.LoadedImageCount() == 3 );
209
210   DALI_TEST_CHECK( !loader.Cancel( id03 ) ); // Cannot cancel a task that is already implemeted
211
212   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id01, 34, 34 ) );   // first image is loaded
213   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id02, 25, 25 ) );   // second image is loaded
214   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id03, 100, 100 ) ); // third image is loaded
215
216   END_TEST;
217 }
218
219 int UtcDaliAsyncImageLoaderCancelAll(void)
220 {
221   ToolkitTestApplication application;
222
223   AsyncImageLoader loader = AsyncImageLoader::New();
224
225   // Test that it is safe to call CancelAll even there is no loading task requested.
226   try
227   {
228     loader.CancelAll();
229   }
230   catch(Dali::DaliException& e)
231   {
232     DALI_TEST_ASSERT(e, "AsyncImageLoader::LoadAll", TEST_LOCATION);
233   }
234
235   // Test that cancelling a non-existing loading task will return false
236   uint32_t id = 1;
237   DALI_TEST_CHECK( !(loader.Cancel( id )) );
238
239   END_TEST;
240 }