Change DebugPriority name
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-scene3d / utc-Dali-StringCallback.cpp
1 /*
2  * Copyright (c) 2022 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 // Enable debug log for test coverage
19 #define DEBUG_ENABLED 1
20
21 #include <dali-test-suite-utils.h>
22 #include <string_view>
23 #include "dali-scene3d/public-api/loader/string-callback.h"
24
25 using namespace Dali;
26 using namespace Dali::Scene3D::Loader;
27
28 namespace
29 {
30 char sBuffer[64];
31
32 void TestLogFunction(Integration::Log::DebugPriority level, std::string& str)
33 {
34   snprintf(sBuffer, sizeof(sBuffer), "%d: %s", level, str.c_str());
35 }
36
37 } // namespace
38
39 int UtcDaliUtilsDefaultStringCallback(void)
40 {
41   InstallLogFunction(TestLogFunction);
42   DefaultErrorCallback("Hello world!");
43   DALI_TEST_EQUAL(std::string(sBuffer), "3: string-callback.cpp: DefaultErrorCallback(28) > Hello world!");
44   END_TEST;
45 }