[dali_1.4.44] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-Scene3dView.cpp
1 /*
2  * Copyright (c) 2018 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 #include <dali-toolkit/devel-api/controls/scene3d-view/scene3d-view.h>
23
24 using namespace Dali;
25 using namespace Dali::Toolkit;
26
27 void dali_scene_view_startup(void)
28 {
29   test_return_value = TET_UNDEF;
30 }
31
32 void dali_scene_view_cleanup(void)
33 {
34   test_return_value = TET_PASS;
35 }
36
37 namespace
38 {
39
40 /**
41  * For the AnimatedCube.gltf and its Assets
42  * Donated by Norbert Nopper for glTF testing.
43  * Take from https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0/AnimatedCube
44  */
45 const char* TEST_GLTF_FILE_NAME = TEST_RESOURCE_DIR "/AnimatedCube.gltf";
46 /**
47  * For the diffuse and specular cube map texture.
48  * These textures are based off version of Wave engine sample
49  * Take from https://github.com/WaveEngine/Samples
50  *
51  * Copyright (c) 2016 Wave Coorporation
52  *
53  * Permission is hereby granted, free of charge, to any person obtaining a copy
54  * of this software and associated documentation files (the "Software"), to
55  * deal in the Software without restriction, including without limitation the
56  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
57  * sell copies of the Software, and to permit persons to whom the Software is
58  * furnished to do so, subject to the following conditions:
59  *
60  * The above copyright notice and this permission notice shall be included in
61  * all copies or substantial portions of the Software.
62  *
63  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
64  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
66  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
67  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
68  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
69  * THE SOFTWARE.
70  */
71 const char* TEST_DIFFUSE_TEXTURE = TEST_RESOURCE_DIR "/forest_diffuse_cubemap.png";
72 const char* TEST_SPECULAR_TEXTURE = TEST_RESOURCE_DIR "/forest_specular_cubemap.png";
73 }
74
75 int UtcDaliScene3dViewConstructorP(void)
76 {
77   TestApplication application;
78
79   Scene3dView scene3dView;
80
81   DALI_TEST_CHECK( !scene3dView );
82   END_TEST;
83 }
84
85 int UtcDaliScene3dViewCopyConstructorP(void)
86 {
87   TestApplication application;
88
89   // Initialize an object, ref count == 1
90   Scene3dView scene3dView = Scene3dView::New( TEST_GLTF_FILE_NAME );
91
92   Scene3dView copy( scene3dView );
93   DALI_TEST_CHECK( copy );
94   END_TEST;
95 }
96
97 int UtcDaliScene3dViewCopyConstructor2P(void)
98 {
99   TestApplication application;
100
101   // Initialize an object, ref count == 1
102   Toolkit::Scene3dView scene3dView = Toolkit::Scene3dView::New( TEST_GLTF_FILE_NAME, TEST_DIFFUSE_TEXTURE, TEST_SPECULAR_TEXTURE, Vector4::ONE );
103
104   Scene3dView copy( scene3dView );
105   DALI_TEST_CHECK( copy );
106   END_TEST;
107 }
108
109 int UtcDaliScene3dViewAssignmentOperatorP(void)
110 {
111   TestApplication application;
112
113   Scene3dView scene3dView = Scene3dView::New( TEST_GLTF_FILE_NAME );
114
115   Scene3dView copy( scene3dView );
116   DALI_TEST_CHECK( copy );
117
118   DALI_TEST_CHECK( scene3dView == copy );
119   END_TEST;
120 }
121
122 int UtcDaliScene3dViewNewP(void)
123 {
124   ToolkitTestApplication application;
125   tet_infoline(" UtcDaliScene3dViewNewP");
126
127   // Create the Slider actor
128   Scene3dView scene3dView;
129   DALI_TEST_CHECK( !scene3dView );
130
131   scene3dView = Scene3dView::New( TEST_GLTF_FILE_NAME );
132   DALI_TEST_CHECK( scene3dView );
133
134   END_TEST;
135 }
136
137 int UtcDaliScene3dViewDestructorP(void)
138 {
139   ToolkitTestApplication application;
140
141   Scene3dView* scene3dView = new Scene3dView();
142   delete scene3dView;
143
144   DALI_TEST_CHECK( true );
145   END_TEST;
146 }
147
148 int UtcDaliScene3dViewDownCast(void)
149 {
150   ToolkitTestApplication application;
151   tet_infoline(" UtcDaliScene3dViewDownCast");
152
153   Toolkit::Scene3dView view = Toolkit::Scene3dView::New( TEST_GLTF_FILE_NAME );
154   BaseHandle handle(view);
155
156   Toolkit::Scene3dView scene3dView = Toolkit::Scene3dView::DownCast( handle );
157   DALI_TEST_CHECK( view );
158   DALI_TEST_CHECK( scene3dView );
159   DALI_TEST_CHECK( scene3dView == view );
160   END_TEST;
161 }
162
163 int UtcDaliScene3dViewSetLight(void)
164 {
165   ToolkitTestApplication application;
166   tet_infoline(" UtcDaliScene3dViewSetLight");
167
168   Toolkit::Scene3dView view = Toolkit::Scene3dView::New( TEST_GLTF_FILE_NAME );
169
170   bool lightSet = view.SetLight( Scene3dView::LightType::DIRECTIONAL_LIGHT, Vector3( 1.0, 1.0, -1.0 ), Vector3( 0.3, 0.3, 0.3 ) );
171   DALI_TEST_CHECK( lightSet );
172   bool lightSet2 = view.SetLight( Scene3dView::LightType::POINT_LIGHT, Vector3( 1.0, 1.0, -1.0 ), Vector3( 0.3, 0.3, 0.3 ) );
173   DALI_TEST_CHECK( lightSet2 );
174
175   END_TEST;
176 }
177
178 int UtcDaliScene3dViewGetCamera(void)
179 {
180   ToolkitTestApplication application;
181   tet_infoline(" UtcDaliScene3dViewGetCamera");
182
183   Toolkit::Scene3dView view = Toolkit::Scene3dView::New( TEST_GLTF_FILE_NAME );
184
185   CameraActor camera = view.GetDefaultCamera();
186   DALI_TEST_CHECK( camera );
187
188   CameraActor camera2 = view.GetCamera( -1 );
189   DALI_TEST_CHECK( !camera2 );
190
191   CameraActor camera3 = view.GetCamera( 0 );
192   DALI_TEST_CHECK( camera3 );
193
194   CameraActor camera4 = view.GetCamera( view.GetCameraCount() - 1 );
195   DALI_TEST_CHECK( camera4 );
196
197   END_TEST;
198 }
199
200 int UtcDaliScene3dViewAnimations(void)
201 {
202   ToolkitTestApplication application;
203   tet_infoline(" UtcDaliScene3dViewAnimations");
204
205   Toolkit::Scene3dView view = Toolkit::Scene3dView::New( TEST_GLTF_FILE_NAME );
206
207   bool playAnimation = view.PlayAnimations();
208   DALI_TEST_CHECK( playAnimation );
209
210   END_TEST;
211 }
212
213 int UtcDaliScene3dViewAnimations2(void)
214 {
215   ToolkitTestApplication application;
216   tet_infoline(" UtcDaliScene3dViewAnimations2");
217
218   Toolkit::Scene3dView view = Toolkit::Scene3dView::New( TEST_GLTF_FILE_NAME );
219
220   bool animated = true;
221   unsigned int animationCount = view.GetAnimationCount();
222   for( unsigned int i = 0; i < animationCount; ++i )
223   {
224     animated = ( animated && view.PlayAnimation( i ) );
225   }
226   DALI_TEST_CHECK( animated );
227
228   END_TEST;
229 }