Migrating to new test framework
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-Gesture.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
19 #include <stdlib.h>
20 #include <dali/dali.h>
21 #include <dali-test-suite-utils.h>
22
23 using namespace Dali;
24
25 void utc_dali_gesture_startup(void)
26 {
27   test_return_value = TET_UNDEF;
28 }
29
30 void utc_dali_gesture_cleanup(void)
31 {
32   test_return_value = TET_PASS;
33 }
34
35 namespace
36 {
37
38 // TestGesture Struct (Gesture constructor is protected)
39 struct TestGesture : public Gesture
40 {
41 public:
42   TestGesture(Gesture::Type type, Gesture::State state)
43   : Gesture(type, state) {}
44
45   virtual ~TestGesture() {}
46 };
47
48 } // anon namespace
49
50 int UtcDaliGestureConstructor(void)
51 {
52   TestApplication application; // Reset all test adapter return codes
53
54   TestGesture pan(Gesture::Pan, Gesture::Started);
55   DALI_TEST_EQUALS(Gesture::Pan, pan.type, TEST_LOCATION);
56   DALI_TEST_EQUALS(Gesture::Started, pan.state, TEST_LOCATION);
57
58   TestGesture pinch(Gesture::Pinch, Gesture::Clear);
59   DALI_TEST_EQUALS(Gesture::Pinch, pinch.type, TEST_LOCATION);
60   DALI_TEST_EQUALS(Gesture::Clear, pinch.state, TEST_LOCATION);
61
62   // Test copy constructor
63   TestGesture pan2(pan);
64   DALI_TEST_EQUALS(Gesture::Pan, pan2.type, TEST_LOCATION);
65   DALI_TEST_EQUALS(Gesture::Started, pan2.state, TEST_LOCATION);
66   END_TEST;
67 }
68
69 int UtcDaliGestureAssignment(void)
70 {
71   // Test Assignment operator
72   TestGesture pan(Gesture::Pan, Gesture::Finished);
73   DALI_TEST_EQUALS(Gesture::Pan, pan.type, TEST_LOCATION);
74   DALI_TEST_EQUALS(Gesture::Finished, pan.state, TEST_LOCATION);
75
76   TestGesture test(Gesture::Pinch, Gesture::Started);
77   DALI_TEST_EQUALS(Gesture::Pinch, test.type, TEST_LOCATION);
78   DALI_TEST_EQUALS(Gesture::Started, test.state, TEST_LOCATION);
79
80   test = pan;
81   DALI_TEST_EQUALS(Gesture::Pan, test.type, TEST_LOCATION);
82   DALI_TEST_EQUALS(Gesture::Finished, test.state, TEST_LOCATION);
83   END_TEST;
84 }