e74817ea186ccf291a4e405c7db41c87f3edc1f2
[platform/core/uifw/dali-toolkit.git] / automated-tests / TET / dali-test-suite / shader-effects / utc-Dali-ShearEffect.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
20 #include <stdlib.h>
21 #include <tet_api.h>
22
23 #include <dali/public-api/dali-core.h>
24 #include <dali-toolkit/dali-toolkit.h>
25
26 #include <dali-toolkit-test-suite-utils.h>
27
28 using namespace Dali;
29
30 static void Startup();
31 static void Cleanup();
32
33 extern "C" {
34   void (*tet_startup)() = Startup;
35   void (*tet_cleanup)() = Cleanup;
36 }
37
38 static void UtcDaliShearEffectUninitialized();
39 static void UtcDaliShearEffectPropertyNames();
40 static void UtcDaliShearEffectDefaultValues();
41 static void UtcDaliShearEffectCustomValues();
42
43 enum {
44   POSITIVE_TC_IDX = 0x01,
45   NEGATIVE_TC_IDX,
46 };
47
48 // Add test functionality for all APIs in the class (Positive and Negative)
49 extern "C" {
50   struct tet_testlist tet_testlist[] = {
51     { UtcDaliShearEffectUninitialized, NEGATIVE_TC_IDX },
52     { UtcDaliShearEffectPropertyNames, POSITIVE_TC_IDX },
53     { UtcDaliShearEffectDefaultValues, POSITIVE_TC_IDX },
54     { UtcDaliShearEffectCustomValues, POSITIVE_TC_IDX },
55     { NULL, 0 }
56   };
57 }
58
59 // Called only once before first test is run.
60 static void Startup()
61 {
62 }
63
64 // Called only once after last test is run
65 static void Cleanup()
66 {
67 }
68
69 // Create bitmap image
70 BitmapImage CreateBitmapImage()
71 {
72   BitmapImage image = BitmapImage::New(4,4,Pixel::RGBA8888);
73
74   PixelBuffer* pixbuf = image.GetBuffer();
75
76   // Using a 4x4 image gives a better blend with the GL implementation
77   // than a 3x3 image
78   for(size_t i=0; i<16; i++)
79   {
80     pixbuf[i*4+0] = 0xFF;
81     pixbuf[i*4+1] = 0xFF;
82     pixbuf[i*4+2] = 0xFF;
83     pixbuf[i*4+3] = 0xFF;
84   }
85
86   return image;
87 }
88
89 static void UtcDaliShearEffectUninitialized()
90 {
91   ToolkitTestApplication application;
92
93   Toolkit::ShearEffect effect;
94
95   try
96   {
97     // New() must be called to create a ShearEffect or it wont be valid.
98     effect.SetAngleXAxis( 45.0f );
99     DALI_TEST_CHECK( false );
100   }
101   catch (Dali::DaliException& e)
102   {
103     // Tests that a negative test of an assertion succeeds
104     tet_printf("Assertion %s failed at %s\n", e.mCondition.c_str(), e.mLocation.c_str());
105     DALI_TEST_CHECK(!effect);
106   }
107 }
108
109 static void UtcDaliShearEffectPropertyNames()
110 {
111   ToolkitTestApplication application;
112
113   Toolkit::ShearEffect effect = Toolkit::ShearEffect::New();
114
115   // Check the names, these names are used in the shaders code,
116   // if they change the shader code has to be updated
117   DALI_TEST_EQUALS( effect.GetAngleXAxisPropertyName(), "uAngleXAxis", TEST_LOCATION );
118   DALI_TEST_EQUALS( effect.GetAngleYAxisPropertyName(), "uAngleYAxis", TEST_LOCATION );
119   DALI_TEST_EQUALS( effect.GetCenterPropertyName(), "uCenter", TEST_LOCATION );
120 }
121
122 /**
123  * Converts value to screen position in the same way that
124  * the core does under COORDINATE_TYPE_SCREEN_POSITION
125  *
126  * @param[in] value the input position value.
127  * @return The translated position value ready for gl.
128  */
129 Vector2 ToScreenPosition(Vector2 value)
130 {
131   Vector2 stageSize = Dali::Stage::GetCurrent().GetSize();
132   value.x = stageSize.x * 0.5f - value.x;
133   value.y = value.y - stageSize.y * 0.5f;
134
135   return value;
136 }
137
138 static void UtcDaliShearEffectDefaultValues()
139 {
140   ToolkitTestApplication application;
141
142   Toolkit::ShearEffect effect = Toolkit::ShearEffect::New();
143   DALI_TEST_CHECK( effect );
144
145   BitmapImage image = CreateBitmapImage();
146
147   ImageActor actor = ImageActor::New( image );
148   actor.SetSize( 100.0f, 100.0f );
149
150   const float angleXAxis(0.0f);
151   const float angleYAxis(0.0f);
152   const Vector2 centerValue(0.0f, 0.0f);
153
154   actor.SetShaderEffect( effect );
155   Stage::GetCurrent().Add( actor );
156
157   application.SendNotification();
158   application.Render();
159
160   TestGlAbstraction& gl = application.GetGlAbstraction();
161   DALI_TEST_CHECK( gl.CheckUniformValue( effect.GetAngleXAxisPropertyName().c_str(), angleXAxis ) );
162   DALI_TEST_CHECK( gl.CheckUniformValue( effect.GetAngleYAxisPropertyName().c_str(), angleYAxis ) );
163   DALI_TEST_CHECK( gl.CheckUniformValue( effect.GetCenterPropertyName().c_str(), ToScreenPosition(centerValue) ) );
164 }
165
166 static void UtcDaliShearEffectCustomValues()
167 {
168   ToolkitTestApplication application;
169
170   Toolkit::ShearEffect effect = Toolkit::ShearEffect::New();
171   DALI_TEST_CHECK( effect );
172
173   BitmapImage image = CreateBitmapImage();
174
175   ImageActor actor = ImageActor::New( image );
176   actor.SetSize( 100.0f, 100.0f );
177
178   const float angleXAxis(10.0f);
179   const float angleYAxis(22.5f);
180   const Vector2 centerValue(50.0f, 100.0f);
181
182   effect.SetAngleXAxis( angleXAxis );
183   effect.SetAngleYAxis( angleYAxis );
184   effect.SetCenter( centerValue );
185
186   actor.SetShaderEffect(effect);
187   Stage::GetCurrent().Add(actor);
188
189   application.SendNotification();
190   application.Render();
191
192   TestGlAbstraction& gl = application.GetGlAbstraction();
193   DALI_TEST_CHECK( gl.CheckUniformValue( effect.GetAngleXAxisPropertyName().c_str(), angleXAxis ) );
194   DALI_TEST_CHECK( gl.CheckUniformValue( effect.GetAngleYAxisPropertyName().c_str(), angleYAxis ) );
195   DALI_TEST_CHECK( gl.CheckUniformValue( effect.GetCenterPropertyName().c_str(), ToScreenPosition(centerValue) ) );
196 }