Merge "ResourceImage/Image split" into tizen
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-FrameBufferImage.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 #include <iostream>
19 #include <algorithm>
20
21 #include <stdlib.h>
22 #include <dali/public-api/dali-core.h>
23 #include <dali-test-suite-utils.h>
24
25 using std::max;
26 using namespace Dali;
27
28 void utc_dali_framebuffer_startup(void)
29 {
30   test_return_value = TET_UNDEF;
31 }
32
33 void utc_dali_framebuffer_cleanup(void)
34 {
35   test_return_value = TET_PASS;
36 }
37
38 static const float ROTATION_EPSILON = 0.0001f;
39
40
41 int UtcDaliFrameBufferImageNew01(void)
42 {
43   TestApplication application;
44
45   tet_infoline("UtcDaliFrameBufferImageNew01 - FrameBufferImage::New(unsigned int, unsigned int, Pixel::Format)");
46
47   // invoke default handle constructor
48   FrameBufferImage image;
49   Vector2 stageSize = Stage::GetCurrent().GetSize();
50
51   // initialise handle
52   image = FrameBufferImage::New();            // create framebuffer with the same dimensions as the stage
53   ImageActor actor=ImageActor::New(image);
54   Stage::GetCurrent().Add(actor);
55
56   application.SendNotification();
57   application.Render();
58   application.Render();
59   application.SendNotification();
60
61   DALI_TEST_CHECK( image );
62   DALI_TEST_EQUALS((float)image.GetWidth(), stageSize.width, TEST_LOCATION);
63   DALI_TEST_EQUALS((float)image.GetHeight(), stageSize.height, TEST_LOCATION);
64
65   image = FrameBufferImage::New(16, 16);      // create framebuffer with dimensions of 16x16
66   actor.SetImage(image);
67
68   application.SendNotification();
69   application.Render();
70   application.Render();
71   application.SendNotification();
72
73   DALI_TEST_CHECK( image );
74   DALI_TEST_EQUALS(image.GetWidth(), 16u, TEST_LOCATION);
75   DALI_TEST_EQUALS(image.GetHeight(), 16u, TEST_LOCATION);
76   END_TEST;
77 }
78
79 int UtcDaliFrameBufferImageDownCast(void)
80 {
81   TestApplication application;
82   tet_infoline("Testing Dali::FrameBufferImage::DownCast()");
83
84   FrameBufferImage image = FrameBufferImage::New();
85
86   BaseHandle object(image);
87
88   FrameBufferImage image2 = FrameBufferImage::DownCast(object);
89   DALI_TEST_CHECK(image2);
90
91   FrameBufferImage image3 = DownCast< FrameBufferImage >(object);
92   DALI_TEST_CHECK(image3);
93
94   BaseHandle unInitializedObject;
95   FrameBufferImage image4 = FrameBufferImage::DownCast(unInitializedObject);
96   DALI_TEST_CHECK(!image4);
97
98   FrameBufferImage image5 = DownCast< FrameBufferImage >(unInitializedObject);
99   DALI_TEST_CHECK(!image5);
100
101   Image image6 = FrameBufferImage::New();
102   FrameBufferImage image7 = FrameBufferImage::DownCast(image6);
103   DALI_TEST_CHECK(image7);
104   END_TEST;
105 }