Added tests for EffectsView
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-NinePatchMaskEffect.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
21 // Need to override adaptor classes for toolkit test harness, so include
22 // test harness headers before dali headers.
23 #include <dali-toolkit-test-suite-utils.h>
24
25 #include <dali.h>
26 #include <dali-toolkit/dali-toolkit.h>
27 #include <dali-toolkit/devel-api/shader-effects/nine-patch-mask-effect.h>
28
29 using namespace Dali;
30
31 void utc_dali_toolkit_nine_patch_startup(void)
32 {
33   test_return_value = TET_UNDEF;
34 }
35
36 void utc_dali_toolkit_nine_patch_cleanup(void)
37 {
38   test_return_value = TET_PASS;
39 }
40
41
42 int UtcDaliNinePatchMaskEffectApply(void)
43 {
44   ToolkitTestApplication application;
45
46   BufferImage image = CreateBufferImage();
47   ImageActor actor0 = ImageActor::New( image );
48   Toolkit::NinePatchMaskEffect::Apply( actor0, "" );
49
50   Stage::GetCurrent().Add( actor0 );
51
52   application.SendNotification();   // Force usage of constraint
53   application.Render();
54
55   DALI_TEST_CHECK( actor0.GetStyle() == ImageActor::STYLE_NINE_PATCH );
56
57   ImageActor actor1 = ImageActor::New( image );
58   Vector4 border( 0, 0, 0, 0 );
59   Toolkit::NinePatchMaskEffect::Apply( actor1, "", border );
60
61   Stage::GetCurrent().Add( actor1 );
62
63   application.SendNotification();
64   application.Render();
65
66   DALI_TEST_CHECK( actor1.GetStyle() == ImageActor::STYLE_NINE_PATCH );
67   END_TEST;
68 }