[utest] Add 108 test cases
[platform/core/uifw/libtdm.git] / utests / src / ut_tdm_pp.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 TDMPP : public testing::Test {
40 protected:
41         tdm_display *dpy = NULL;
42         tdm_pp_capability pp_capabilities = (tdm_pp_capability) -42;
43         bool has_pp = false;
44         void SetUp(void)
45         {
46                 setenv("TDM_DLOG", "1", 1);
47                 setenv("XDG_RUNTIME_DIR", ".", 1);
48                 setenv("TBM_DLOG", "1", 1);
49                 tdm_error error = TDM_ERROR_NONE;
50                 dpy = tdm_display_init(&error);
51                 ASSERT_TRUE(error == TDM_ERROR_NONE);
52                 ASSERT_FALSE(dpy == NULL);
53                 error = tdm_display_get_pp_capabilities(dpy, &pp_capabilities);
54 #ifdef FAIL_ON_UNSUPPORTED
55                 ASSERT_GT(pp_capabilities, 0);
56 #endif
57                 if (pp_capabilities > 0)
58                         has_pp = true;
59         }
60         void TearDown(void)
61         {
62                 tdm_display_deinit(dpy);
63                 dpy = NULL;
64                 unsetenv("TDM_DLOG");
65                 unsetenv("XDG_RUNTIME_DIR");
66                 unsetenv("TBM_DLOG");
67                 unsetenv("TBM_DISPLAY_SERVER");
68         }
69 };
70
71 TEST_F(TDMPP, DisplayGetPPAvailableFormatsSuccessful)
72 {
73         SKIP_FLAG(has_pp);
74         const tbm_format * formats = NULL;
75         int count = -42;
76         ASSERT_TRUE(TDM_ERROR_NONE == tdm_display_get_pp_available_formats(dpy, &formats, &count));
77         ASSERT_FALSE(-42 == count);
78         ASSERT_FALSE(NULL == formats);
79 }