utest: Add 26 test cases
[platform/core/uifw/libtdm.git] / utests / src / ut_tdm_capture.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 "gtest/gtest.h"
32 #include "ut_common.h"
33 extern "C" {
34 #include "tdm.h"
35 #include "tbm_bufmgr.h"
36 #include "tbm_drm_helper.h"
37 }
38
39 class TDMCapture : public ::testing::Test {
40 protected:
41         tdm_display *dpy = NULL;
42         tdm_capture_capability capture_capabilities = (tdm_capture_capability) -42;
43         bool has_capture = false;
44         tbm_bufmgr tbm_bufmgr = NULL;
45         void SetUp(void)
46         {
47                 setenv("TDM_DLOG", "1", 1);
48                 setenv("XDG_RUNTIME_DIR", ".", 1);
49                 setenv("TBM_DLOG", "1", 1);
50                 setenv("TBM_DISPLAY_SERVER", "1", 1);
51                 tbm_bufmgr = tbm_bufmgr_init(-1);
52                 ASSERT_FALSE(tbm_bufmgr == NULL);
53                 tdm_error error = TDM_ERROR_NONE;
54                 dpy = tdm_display_init(&error);
55                 ASSERT_TRUE(error == TDM_ERROR_NONE);
56                 ASSERT_FALSE(dpy == NULL);
57                 error = tdm_display_get_capture_capabilities(dpy, &capture_capabilities);
58 #ifdef FAIL_ON_UNSUPPORTED
59                 ASSERT_GT(capture_capabilities, 0);
60 #endif
61                 if (capture_capabilities > 0)
62                         has_capture = true;
63         }
64         void TearDown(void)
65         {
66                 tdm_display_deinit(dpy);
67                 dpy = NULL;
68                 tbm_bufmgr_deinit(tbm_bufmgr);
69                 tbm_bufmgr = NULL;
70                 unsetenv("TDM_DLOG");
71                 unsetenv("XDG_RUNTIME_DIR");
72                 unsetenv("TBM_DLOG");
73                 unsetenv("TBM_DISPLAY_SERVER");
74         }
75 };
76
77 TEST_F(TDMCapture, DisplayGetCaptureAvailableFormatsSuccessful)
78 {
79         SKIP_FLAG(has_capture);
80         const tbm_format * formats = NULL;
81         int count = -42;
82         ASSERT_TRUE(TDM_ERROR_NONE == tdm_display_get_catpure_available_formats(dpy, &formats, &count));
83         ASSERT_FALSE(-42 == count);
84         ASSERT_FALSE(NULL == formats);
85 }