(AutomatedTests) Merged managed and unmanaged tests
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-OverlayEffect.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
24 using namespace Dali;
25 using namespace Dali::Toolkit;
26
27 void overlay_effect_startup(void)
28 {
29   test_return_value = TET_UNDEF;
30 }
31
32 void overlay_effect_cleanup(void)
33 {
34   test_return_value = TET_PASS;
35 }
36
37
38 int UtcDaliOverlayConstructor(void)
39 {
40   ToolkitTestApplication application;
41
42   BitmapImage image = CreateBitmapImage();
43
44   Toolkit::OverlayEffect effect = Toolkit::OverlayEffect::New( image );
45   DALI_TEST_CHECK( effect );
46
47   ImageActor actor = ImageActor::New( image );
48   actor.SetSize( 100.0f, 100.0f );
49   actor.SetShaderEffect( effect );
50   Stage::GetCurrent().Add( actor );
51
52   application.SendNotification();
53   application.Render();
54
55   END_TEST;
56 }
57
58 int UtcDaliOverlayUninitializedEffect(void)
59 {
60   ToolkitTestApplication application;
61
62   Toolkit::OverlayEffect effect;
63
64   try
65   {
66     BitmapImage image = CreateBitmapImage();
67
68     // New() must be called to create a OverlayEffect or it wont be valid.
69     effect.SetEffectImage( image );
70     DALI_TEST_CHECK( false );
71   }
72   catch (Dali::DaliException& e)
73   {
74     // Tests that a negative test of an assertion succeeds
75     DALI_TEST_PRINT_ASSERT( e );
76     DALI_TEST_CHECK(!effect);
77   }
78   END_TEST;
79 }