(ScrollOvershoot) Removed OnStage checks now that issue has been fixed in PropertyNot...
[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 Flora License, Version 1.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://floralicense.org/license/
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 #include <iostream>
18 #include <stdlib.h>
19
20 // Need to override adaptor classes for toolkit test harness, so include
21 // test harness headers before dali headers.
22 #include <dali-toolkit-test-suite-utils.h>
23
24 #include <dali.h>
25 #include <dali-toolkit/dali-toolkit.h>
26
27 using namespace Dali;
28
29 void utc_dali_toolkit_nine_patch_startup(void)
30 {
31   test_return_value = TET_UNDEF;
32 }
33
34 void utc_dali_toolkit_nine_patch_cleanup(void)
35 {
36   test_return_value = TET_PASS;
37 }
38
39
40 int UtcDaliNinePatchMaskEffectApply(void)
41 {
42   ToolkitTestApplication application;
43
44   BitmapImage image = CreateBitmapImage();
45   ImageActor actor0 = ImageActor::New( image );
46   Toolkit::NinePatchMaskEffect::Apply( actor0, "" );
47
48   Stage::GetCurrent().Add( actor0 );
49
50   application.SendNotification();   // Force usage of constraint
51   application.Render();
52
53   DALI_TEST_CHECK( actor0.GetStyle() == ImageActor::STYLE_NINE_PATCH );
54
55   ImageActor actor1 = ImageActor::New( image );
56   Vector4 border( 0, 0, 0, 0 );
57   Toolkit::NinePatchMaskEffect::Apply( actor1, "", border );
58
59   Stage::GetCurrent().Add( actor1 );
60
61   application.SendNotification();
62   application.Render();
63
64   DALI_TEST_CHECK( actor1.GetStyle() == ImageActor::STYLE_NINE_PATCH );
65   END_TEST;
66 }