package version up to 1.18.0
[platform/core/uifw/libtdm.git] / utests / src / ut_tdm_backend_env.cpp
1 /**************************************************************************
2  *
3  * Copyright 2016 Samsung Electronics co., Ltd. All Rights Reserved.
4  *
5  * Contact: Konstantin Drabeniuk <k.drabeniuk@samsung.com>
6  * Contact: Andrii Sokolenko <a.sokolenko@samsung.com>
7  * Contact: Roman Marchenko <r.marchenko@samsung.com>
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining a
10  * copy of this software and associated documentation files (the
11  * "Software"), to deal in the Software without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sub license, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice (including the
18  * next paragraph) shall be included in all copies or substantial portions
19  * of the Software.
20  *
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
24  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
25  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28  *
29 **************************************************************************/
30
31 #include "ut_tdm.h"
32
33 /* LCOV_EXCL_START */
34
35 bool enable_porting_debug = false;
36
37 void TDMBackendEnv::SetUp(void)
38 {
39         const char *debug;
40
41         TDMEnv::SetUp();
42
43         /* thread, commit_per_vblank should be turned off for testing TDMBackend
44          * all TDMBackend's tcs should call tdm_output_commit once in a vblank.
45          * don't call tdm_layer_commit.
46          */
47         tdm_config_set_int(TDM_CONFIG_KEY_GENERAL_THREAD, 0);
48         tdm_config_set_int(TDM_CONFIG_KEY_GENERAL_COMMIT_PER_VBLANK, 0);
49
50         debug = getenv("TDM_UT_DEBUG_BACKEND");
51         if (debug && (debug[0] == '1'))
52                 enable_porting_debug = true;
53 }
54
55 void TDMBackendEnv::TearDown(void)
56 {
57         TDMEnv::TearDown();
58 }
59
60 TEST_P(TDMBackendEnv, VerifyDisplay)
61 {
62         tdm_display *dpy;
63         tdm_error ret;
64
65         dpy = tdm_display_init(&ret);
66         TDM_UT_ASSERT_TRUE(dpy != NULL, "display init failed: %s", tdm_error_str(ret));
67
68         TDM_UT_INFO("display init success");
69
70         tdm_display_deinit(dpy);
71 }
72
73 #ifdef TDM_UT_TEST_WITH_PARAMS
74 INSTANTIATE_TEST_CASE_P(TDMBackendEnvParams,
75                                                 TDMBackendEnv,
76                                                 Combine(Bool(), Bool(), Values(TDM_DEFAULT_MODULE)));
77 #else
78 INSTANTIATE_TEST_CASE_P(TDMBackendEnvParams,
79                                                 TDMBackendEnv,
80                                                 Values(TDM_DEFAULT_MODULE));
81 #endif
82
83 /* LCOV_EXCL_END */