Merge remote-tracking branch 'origin/tizen' into devel/new_mesh
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-PropertyBuffer.cpp
1 /*
2  * Copyright (c) 2015 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 <dali/public-api/dali-core.h>
19 #include <dali-test-suite-utils.h>
20
21 using namespace Dali;
22
23 #include <mesh-builder.h>
24
25 void propertyBuffer_test_startup(void)
26 {
27   test_return_value = TET_UNDEF;
28 }
29
30 void propertyBuffer_test_cleanup(void)
31 {
32   test_return_value = TET_PASS;
33 }
34
35 int UtcDaliPropertyBufferNew01(void)
36 {
37   TestApplication application;
38
39   Property::Map texturedQuadVertexFormat;
40   texturedQuadVertexFormat["aPosition"] = Property::VECTOR2;
41   texturedQuadVertexFormat["aVertexCoord"] = Property::VECTOR2;
42
43   PropertyBuffer propertyBuffer = PropertyBuffer::New( PropertyBuffer::STATIC,
44                                                        texturedQuadVertexFormat, 4 );
45
46   DALI_TEST_EQUALS( (bool)propertyBuffer, true, TEST_LOCATION );
47   END_TEST;
48 }
49
50 int UtcDaliPropertyBufferNew02(void)
51 {
52   TestApplication application;
53   PropertyBuffer propertyBuffer;
54   DALI_TEST_EQUALS( (bool)propertyBuffer, false, TEST_LOCATION );
55   END_TEST;
56 }
57
58 int UtcDaliPropertyBufferDownCast01(void)
59 {
60   TestApplication application;
61
62   Property::Map texturedQuadVertexFormat;
63   texturedQuadVertexFormat["aPosition"] = Property::VECTOR2;
64   texturedQuadVertexFormat["aVertexCoord"] = Property::VECTOR2;
65
66   PropertyBuffer propertyBuffer = PropertyBuffer::New( PropertyBuffer::STATIC,
67                                                        texturedQuadVertexFormat, 4 );
68
69   BaseHandle handle(propertyBuffer);
70   PropertyBuffer propertyBuffer2 = PropertyBuffer::DownCast(handle);
71   DALI_TEST_EQUALS( (bool)propertyBuffer2, true, TEST_LOCATION );
72   END_TEST;
73 }
74
75 int UtcDaliPropertyBufferDownCast02(void)
76 {
77   TestApplication application;
78
79   Handle handle = Handle::New(); // Create a custom object
80   PropertyBuffer propertyBuffer = PropertyBuffer::DownCast(handle);
81   DALI_TEST_EQUALS( (bool)propertyBuffer, false, TEST_LOCATION );
82   END_TEST;
83 }