74dcc7325cb2dd0fbb9f39c93eaf6c33f74dba4b
[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   EventThreadCallback* eventTrigger = EventThreadCallback::Get();
178   CallbackBase* callback = eventTrigger->GetCallback();
179
180   eventTrigger->WaitingForTrigger( 3 );// waiting until all three images are loaded
181
182   CallbackBase::Execute( *callback );
183
184   application.SendNotification();
185   application.Render();
186
187   DALI_TEST_CHECK( loadedSignalVerifier.LoadedImageCount() == 3 );
188   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id02, 25, 25 ) );
189   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id03, 100, 100 ) );
190
191   END_TEST;
192 }
193
194 // Note: This is not an ideal test, but we cannot guarantee we can call Cancel() before the image has finished loading.
195 int UtcDaliAsyncImageLoaderCancel(void)
196 {
197   ToolkitTestApplication application;
198
199   AsyncImageLoader loader = AsyncImageLoader::New();
200   ImageLoadedSignalVerifier loadedSignalVerifier;
201
202   loader.ImageLoadedSignal().Connect( &loadedSignalVerifier, &ImageLoadedSignalVerifier::ImageLoaded );
203
204   uint32_t id01 = loader.Load( gImage_34_RGBA, ImageDimensions( 34, 34 ) );
205   uint32_t id02 = loader.Load( gImage_50_RGBA, ImageDimensions( 25, 25 ) );
206   uint32_t id03 = loader.Load( gImage_128_RGB, ImageDimensions( 100, 100 ), FittingMode::SCALE_TO_FILL, SamplingMode::BOX_THEN_LINEAR, true );
207
208   EventThreadCallback* eventTrigger = EventThreadCallback::Get();
209   CallbackBase* callback = eventTrigger->GetCallback();
210
211   eventTrigger->WaitingForTrigger( 3 ); // waiting until images are loaded
212
213   CallbackBase::Execute( *callback );
214
215   application.SendNotification();
216   application.Render();
217
218   DALI_TEST_CHECK( loadedSignalVerifier.LoadedImageCount() == 3 );
219
220   DALI_TEST_CHECK( !loader.Cancel( id03 ) ); // Cannot cancel a task that is already implemeted
221
222   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id01, 34, 34 ) );   // first image is loaded
223   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id02, 25, 25 ) );   // second image is loaded
224   DALI_TEST_CHECK( loadedSignalVerifier.Verify( id03, 100, 100 ) ); // third image is loaded
225
226   END_TEST;
227 }
228
229 int UtcDaliAsyncImageLoaderCancelAll(void)
230 {
231   ToolkitTestApplication application;
232
233   AsyncImageLoader loader = AsyncImageLoader::New();
234
235   // Test that it is safe to call CancelAll even there is no loading task requested.
236   try
237   {
238     loader.CancelAll();
239   }
240   catch(Dali::DaliException& e)
241   {
242     DALI_TEST_ASSERT(e, "AsyncImageLoader::LoadAll", TEST_LOCATION);
243   }
244
245   // Test that cancelling a non-existing loading task will return false
246   uint32_t id = 1;
247   DALI_TEST_CHECK( !(loader.Cancel( id )) );
248
249   END_TEST;
250 }
251