Merge "Modify iconify part for wayland" into devel/master
[platform/core/uifw/dali-adaptor.git] / automated-tests / src / dali-adaptor / utc-Dali-GifLoading.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
18 #include <stdlib.h>
19 #include <dali/dali.h>
20 #include <dali-test-suite-utils.h>
21 #include <dali/devel-api/adaptor-framework/gif-loading.h>
22
23 using namespace Dali;
24
25 namespace
26 {
27 // test gif image, resolution: 100*100, 5 frames, delay: 1 second, disposal method: none
28 static const char* gGif_100_None = TEST_RESOURCE_DIR "/canvas-none.gif";
29 // test gif image, resolution: 100*100, 5 frames, delay: 1 second, disposal method: none for first frame and previous for the rest
30 static const char* gGif_100_Prev = TEST_RESOURCE_DIR "/canvas-prev.gif";
31 // test gif image, resolution: 100*100, 5 frames, delay: 1 second, disposal method: background
32 static const char* gGif_100_Bgnd = TEST_RESOURCE_DIR "/canvas-bgnd.gif";
33
34 // this image if not exist, for negative test
35 static const char* gGifNonExist = "non-exist.gif";
36
37 void VerifyLoad( std::vector<Dali::PixelData>& pixelDataList, Dali::Vector<uint32_t>& frameDelayList,
38                  uint32_t frameCount, uint32_t width, uint32_t height, uint32_t delay )
39 {
40   DALI_TEST_EQUALS( pixelDataList.size(), frameCount, TEST_LOCATION );
41   DALI_TEST_EQUALS( frameDelayList.Size(), frameCount, TEST_LOCATION );
42
43   for( uint32_t idx = 0; idx<frameCount; idx++ )
44   {
45     // Check the image size and delay of each frame
46     DALI_TEST_EQUALS( pixelDataList[idx].GetWidth(), width, TEST_LOCATION );
47     DALI_TEST_EQUALS( pixelDataList[idx].GetHeight(), height, TEST_LOCATION );
48     DALI_TEST_EQUALS( frameDelayList[idx], delay, TEST_LOCATION );
49   }
50 }
51 }
52
53 void utc_dali_gif_loader_startup(void)
54 {
55   test_return_value = TET_UNDEF;
56 }
57
58 void utc_dali_gif_loader_cleanup(void)
59 {
60   test_return_value = TET_PASS;
61 }
62
63 int UtcDaliGifLoadingP(void)
64 {
65   std::vector<Dali::PixelData> pixelDataList;
66   Dali::Vector<uint32_t> frameDelayList;
67
68   bool succeed = LoadAnimatedGifFromFile( gGif_100_None, pixelDataList, frameDelayList );
69   // Check that the loading succeed
70   DALI_TEST_CHECK( succeed );
71   VerifyLoad( pixelDataList, frameDelayList, 5u, 100u, 100u, 1000u  );
72
73   succeed = LoadAnimatedGifFromFile( gGif_100_Prev, pixelDataList, frameDelayList );
74   // Check that the loading succeed
75   DALI_TEST_CHECK( succeed );
76   VerifyLoad( pixelDataList, frameDelayList, 5u, 100u, 100u, 1000u );
77
78   succeed = LoadAnimatedGifFromFile( gGif_100_Bgnd, pixelDataList, frameDelayList );
79   // Check that the loading succeed
80   DALI_TEST_CHECK( succeed );
81   VerifyLoad( pixelDataList, frameDelayList, 5u, 100u, 100u, 1000u  );
82
83   END_TEST;
84 }
85
86 int UtcDaliGifLoadingN(void)
87 {
88   std::vector<Dali::PixelData> pixelDataList;
89   Dali::Vector<uint32_t> frameDelayList;
90
91   bool succeed = LoadAnimatedGifFromFile( gGifNonExist, pixelDataList, frameDelayList );
92
93   // Check that the loading failed
94   DALI_TEST_CHECK( !succeed );
95
96   // Check that both pixelDataList and frameDelayList are empty
97   DALI_TEST_EQUALS( pixelDataList.size(), 0u, TEST_LOCATION );
98   DALI_TEST_EQUALS( frameDelayList.Size(), 0u, TEST_LOCATION );
99
100   END_TEST;
101 }
102
103 int UtcDaliGifLoadingGetImageSizeP(void)
104 {
105   ImageDimensions imageSize = GetGifImageSize( gGif_100_None );
106
107   // Check that the image size is [100, 100]
108   DALI_TEST_EQUALS( imageSize.GetWidth(), 100u, TEST_LOCATION );
109   DALI_TEST_EQUALS( imageSize.GetHeight(), 100u, TEST_LOCATION );
110
111   END_TEST;
112 }
113
114 int UtcDaliGifLoadingGetImageSizeN(void)
115 {
116   ImageDimensions imageSize = GetGifImageSize( gGifNonExist );
117
118   // Check that it returns zero size when the gif is not valid
119   DALI_TEST_EQUALS( imageSize.GetWidth(), 0u, TEST_LOCATION );
120   DALI_TEST_EQUALS( imageSize.GetHeight(), 0u, TEST_LOCATION );
121
122   END_TEST;
123 }