ec397821532b4adebe53c105623658dd8b549841
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit-unmanaged / utc-Dali-SoftButtonEffect.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 <stdlib.h>
20 #include <dali-toolkit-test-suite-utils.h>
21 #include <dali-toolkit/dali-toolkit.h>
22
23 using namespace Dali;
24 using namespace Dali::Toolkit;
25
26 void soft_button_effect_startup(void)
27 {
28   test_return_value = TET_UNDEF;
29 }
30
31 void soft_button_effect_cleanup(void)
32 {
33   test_return_value = TET_PASS;
34 }
35
36 // Negative test case for a method
37 int UtcDaliSoftButtonEffectUninitialized(void)
38 {
39   ToolkitTestApplication application;
40   tet_infoline("UtcDaliSoftButtonEffectUninitialized");
41
42   Toolkit::SoftButtonEffect effect;
43
44   // New() must be called to create a SoftButtonEffect or it wont be valid.
45
46   DALI_TEST_CHECK(!effect);
47   END_TEST;
48 }
49
50 // Positive test case for a method
51 int UtcDaliSoftButtonEffectNew(void)
52 {
53   ToolkitTestApplication application;
54   tet_infoline("UtcDaliGaussianBlurViewNew");
55
56   Toolkit::SoftButtonEffect effect = Toolkit::SoftButtonEffect::New(Toolkit::SoftButtonEffect::ELLIPTICAL);
57   DALI_TEST_CHECK( effect );
58   END_TEST;
59 }
60
61 // Positive test case for a method
62 int UtcDaliSoftButtonEffectPropertyNames(void)
63 {
64   ToolkitTestApplication application;
65   tet_infoline("UtcDaliSoftButtonEffectPropertyNames");
66
67   Toolkit::SoftButtonEffect effect = Toolkit::SoftButtonEffect::New(Toolkit::SoftButtonEffect::ELLIPTICAL);
68   DALI_TEST_CHECK( effect );
69
70   // Check the names, this names are used in the shader code,
71   // if they change in the shader code, then it has to be updated here.
72   DALI_TEST_EQUALS( effect.GetLightingIndentationAmountPropertyName(), "uLightingIndentationAmount", TEST_LOCATION );
73   DALI_TEST_EQUALS( effect.GetTextureDistortionAmountPropertyName(), "uTextureDistortAmount", TEST_LOCATION );
74   DALI_TEST_EQUALS( effect.GetAmbientLightAmountPropertyName(), "uAmbientLight", TEST_LOCATION );
75   DALI_TEST_EQUALS( effect.GetDiffuseLightPropertyName(), "uDiffuseLight", TEST_LOCATION );
76   DALI_TEST_EQUALS( effect.GetLightingMultiplierPropertyName(), "uLightMultiplier", TEST_LOCATION );
77   DALI_TEST_EQUALS( effect.GetInsideShapeSizeScalePropertyName(), "uInsideCircleSizeScale", TEST_LOCATION );
78   DALI_TEST_EQUALS( effect.GetOutsideShapeDepthPropertyName(), "uOutsideCircleDepth", TEST_LOCATION );
79   DALI_TEST_EQUALS( effect.GetEffectPixelAreaPropertyName(), "uEffectRegion", TEST_LOCATION );
80   DALI_TEST_EQUALS( effect.GetRectangleSizeScalePropertyName(), "uRectangleSizeScale", TEST_LOCATION );
81   END_TEST;
82 }