utests: re-implementation
[platform/core/uifw/libtdm.git] / utests / src / ut_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 "ut_tdm.h"
32
33 void TDMEnv::SetUp(void)
34 {
35         const char *test_backend;
36
37         TDM_UT_ENTRY();
38
39         setenv("XDG_RUNTIME_DIR", "/run", 1);
40         setenv("TBM_DISPLAY_SERVER", "1", 1);
41
42         tdm_config_set_int(TDM_CONFIG_KEY_GENERAL_THREAD, ::testing::get<0>(GetParam()));
43         tdm_config_set_int(TDM_CONFIG_KEY_GENERAL_COMMIT_PER_VBLANK, ::testing::get<1>(GetParam()));
44
45         const char *debug = getenv("TDM_DEBUG_MODULE");
46         if (debug && strstr(debug, "1"))
47                 tdm_config_set_string(TDM_CONFIG_KEY_DEBUG_MODULE, "buffer,thread,event,vblank,commit,pp,capture");
48
49         test_backend = ::testing::get<2>(GetParam());
50         if (!test_backend)
51                 test_backend = TDM_DEFAULT_MODULE;
52         tdm_config_set_string(TDM_CONFIG_KEY_GENERAL_BACKENDS, test_backend);
53 }
54
55 void TDMEnv::TearDown(void)
56 {
57         unsetenv("XDG_RUNTIME_DIR");
58         unsetenv("TBM_DISPLAY_SERVER");
59 }
60
61 #ifdef UT_TDM_ENV_ENABLE
62
63 TEST_P(TDMEnv, DisplayInitDeinit)
64 {
65         tdm_display *dpy;
66         tdm_error ret;
67
68         dpy = tdm_display_init(&ret);
69         ASSERT_TRUE(ret == TDM_ERROR_NONE);
70         ASSERT_TRUE(dpy != NULL);
71
72         tdm_display_deinit(dpy);
73 }
74
75 TEST_P(TDMEnv, DisplayInitDeinitWithoutEnv)
76 {
77         tdm_display *dpy;
78         tdm_error ret;
79
80         TDMEnv::TearDown();
81
82         dpy = tdm_display_init(&ret);
83         ASSERT_TRUE(ret == TDM_ERROR_OPERATION_FAILED);
84         ASSERT_TRUE(dpy == NULL);
85 }
86
87 TEST_P(TDMEnv, DisplayInitFewTimes)
88 {
89         tdm_display *dpy[10];
90         int d;
91         tdm_error ret;
92
93         for (d = 0; d < 10; d++) {
94                 dpy[d] = tdm_display_init(&ret);
95                 ASSERT_TRUE(ret == TDM_ERROR_NONE);
96                 ASSERT_TRUE(dpy[d] != NULL);
97         }
98
99         for (d = 0; d < 9; d++)
100                 ASSERT_TRUE(dpy[d] == dpy[d + 1]);
101
102         for (d = 0; d < 10; d++)
103                 tdm_display_deinit(dpy[d]);
104 }
105
106 TEST_P(TDMEnv, DisplayInitDeinitWithTBM)
107 {
108         tdm_display *dpy;
109         tbm_bufmgr bufmgr;
110         tdm_error ret;
111
112         bufmgr = tbm_bufmgr_init(-1);
113         ASSERT_TRUE(bufmgr != NULL);
114
115         dpy = tdm_display_init(&ret);
116         ASSERT_TRUE(ret == TDM_ERROR_NONE);
117         ASSERT_TRUE(dpy != NULL);
118
119         tdm_display_deinit(dpy);
120         tbm_bufmgr_deinit(bufmgr);
121 }
122
123 TEST_P(TDMEnv, DisplayInitDeinitWithoutBackends)
124 {
125         ASSERT_TRUE(1);
126 }
127
128 TEST_P(TDMEnv, DisplayInitDeinitWrongDpyBadAddress)
129 {
130         tdm_display *dpy;
131         tdm_error ret;
132
133         dpy = tdm_display_init(&ret);
134         ASSERT_TRUE(ret == TDM_ERROR_NONE);
135         ASSERT_TRUE(dpy != NULL);
136
137         EXPECT_EXIT({
138                 tdm_display *wrong_dpy = (tdm_display *)TDM_UT_INVALID_VALUE;
139                 tdm_display_deinit(wrong_dpy);
140                 exit(0);
141         }, ::testing::ExitedWithCode(0), "");
142
143         tdm_display_deinit(dpy);
144 }
145
146 TEST_P(TDMEnv, DisplayDeinitWithNULL)
147 {
148         tdm_display_deinit(NULL);
149 }
150
151 TEST_P(TDMEnv, DisplayDeinitRepeatWithSameDpy)
152 {
153         tdm_display *dpy;
154         tdm_error ret;
155
156         dpy = tdm_display_init(&ret);
157         ASSERT_TRUE(ret == TDM_ERROR_NONE);
158         ASSERT_TRUE(dpy != NULL);
159
160         EXPECT_EXIT({
161                 tdm_display_deinit(dpy);
162                 tdm_display_deinit(dpy);
163                 exit(0);
164         }, ::testing::ExitedWithCode(0), "");
165
166         tdm_display_deinit(dpy);
167 }
168
169 INSTANTIATE_TEST_CASE_P(TDMEnvParams,
170                                                 TDMEnv,
171                                                 Combine(Bool(), Bool(), Values(TDM_DEFAULT_MODULE)));
172
173 #endif