change the utests to haltests
[platform/core/uifw/libtdm.git] / haltests / src / tc_tdm_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 "tc_tdm.h"
32
33 /* LCOV_EXCL_START */
34
35 void TDMEnv::SetUp(void)
36 {
37         const char *test_backend;
38         int thread = 1;
39
40         TDM_UT_ENTRY();
41
42         setenv("XDG_RUNTIME_DIR", "/run", 1);
43         setenv("TBM_DISPLAY_SERVER", "1", 1);
44
45 #ifdef TDM_UT_TEST_WITH_PARAMS
46         /* commit_per_vblank depends on backend. can't choose it in frontend side.
47          * this is only for testing.
48          */
49         int commit_per_vblank = ::testing::get<0>(GetParam());
50         tdm_config_set_int(TDM_CONFIG_KEY_GENERAL_COMMIT_PER_VBLANK, commit_per_vblank);
51
52         thread = ::testing::get<1>(GetParam());
53         test_backend = ::testing::get<2>(GetParam());
54 #else
55         test_backend = ::testing::get<0>(GetParam());
56 #endif
57
58         tdm_config_set_int(TDM_CONFIG_KEY_GENERAL_THREAD, thread);
59
60         if (!test_backend)
61                 test_backend = TDM_DEFAULT_MODULE;
62         tdm_config_set_string(TDM_CONFIG_KEY_GENERAL_BACKENDS, test_backend);
63
64         const char *debug = getenv("TDM_UT_DEBUG_MODULE");
65         if (debug && strstr(debug, "1"))
66                 tdm_config_set_string(TDM_CONFIG_KEY_DEBUG_MODULE, "buffer,vblank,commit,pp,capture");
67
68         debug = getenv("TDM_UT_DEBUG_DUMP");
69         if (debug && (debug[0] == '1'))
70                 tdm_config_set_string(TDM_CONFIG_KEY_DEBUG_DUMP, "all");
71 }
72
73 void TDMEnv::TearDown(void)
74 {
75         unsetenv("XDG_RUNTIME_DIR");
76         unsetenv("TBM_DISPLAY_SERVER");
77 }
78
79 TEST_P(TDMEnv, DisplayInitDeinit)
80 {
81         tdm_display *dpy;
82         tdm_error ret;
83
84         dpy = tdm_display_init(&ret);
85         ASSERT_EQ(ret, TDM_ERROR_NONE);
86         ASSERT_NE(dpy, NULL);
87
88         tdm_display_deinit(dpy);
89 }
90
91 TEST_P(TDMEnv, DisplayInitDeinitWithoutEnv)
92 {
93         tdm_display *dpy;
94         tdm_error ret;
95
96         TDMEnv::TearDown();
97
98         dpy = tdm_display_init(&ret);
99         ASSERT_EQ(ret, TDM_ERROR_OPERATION_FAILED);
100         ASSERT_EQ(dpy, NULL);
101 }
102
103 TEST_P(TDMEnv, DisplayInitFewTimes)
104 {
105         tdm_display *dpy[10];
106         int d;
107         tdm_error ret;
108
109         for (d = 0; d < 10; d++) {
110                 dpy[d] = tdm_display_init(&ret);
111                 ASSERT_EQ(ret, TDM_ERROR_NONE);
112                 ASSERT_NE(dpy[d], NULL);
113         }
114
115         for (d = 0; d < 9; d++)
116                 ASSERT_EQ(dpy[d], dpy[d + 1]);
117
118         for (d = 0; d < 10; d++)
119                 tdm_display_deinit(dpy[d]);
120 }
121
122 TEST_P(TDMEnv, DisplayInitDeinitWithTBM)
123 {
124         tdm_display *dpy;
125         tbm_bufmgr bufmgr;
126         tdm_error ret;
127
128         bufmgr = tbm_bufmgr_init(-1);
129         ASSERT_NE(bufmgr, NULL);
130
131         dpy = tdm_display_init(&ret);
132         ASSERT_EQ(ret, TDM_ERROR_NONE);
133         ASSERT_NE(dpy, NULL);
134
135         tdm_display_deinit(dpy);
136         tbm_bufmgr_deinit(bufmgr);
137 }
138
139 TEST_P(TDMEnv, DisplayInitDeinitWithoutBackends)
140 {
141 }
142
143 TEST_P(TDMEnv, DisplayDeinitWithNULL)
144 {
145         tdm_display_deinit(NULL);
146 }
147
148 #ifdef TDM_UT_TEST_WITH_PARAMS
149 INSTANTIATE_TEST_CASE_P(TDMEnvParams,
150                                                 TDMEnv,
151                                                 Combine(Bool(), Bool(), Values(TDM_DEFAULT_MODULE)));
152 #else
153 INSTANTIATE_TEST_CASE_P(TDMEnvParams,
154                                                 TDMEnv,
155                                                 Values(TDM_DEFAULT_MODULE));
156 #endif
157
158 /* LCOV_EXCL_END */