fe2c0ae619c6a0d83aa80e309ff672f55ea2d540
[platform/core/uifw/mmi-framework.git] / tests / mmi-main-test.cpp
1 /*
2 * Copyright © 2021 Samsung Electronics co., Ltd. All Rights Reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "mmi.h"
25 #include "mmi-client.h"
26 #include "mmi-tests.h"
27 #include "mmi-ipc.h"
28
29 #include <Ecore.h>
30 #include <rpc-port-internal.h>
31
32 class MMIMainTest : public ::testing::Test
33 {
34 public:
35         void SetUp(void) override
36         {
37                 ecore_init();
38         }
39
40         void TearDown(void) override
41         {
42                 ecore_shutdown();
43         }
44 };
45
46 TEST_F(MMIMainTest, MMIMainInit)
47 {
48         int res = mmi_init();
49
50         EXPECT_EQ(res, MMI_ERROR_NONE);
51
52         mmi_shutdown();
53 }
54
55 TEST_F(MMIMainTest, MmiClientCreateSuccess)
56 {
57         int res = mmi_client_create();
58
59         EXPECT_EQ(res, MMI_ERROR_NONE);
60
61         mmi_client_destroy();
62 }
63
64 TEST_F(MMIMainTest, MMIClientSetResultCb)
65 {
66         int res = mmi_init();
67         int input_event_type = 0;
68
69         EXPECT_EQ(res, MMI_ERROR_NONE);
70
71         res = mmi_client_set_result_cb(input_event_type, NULL, NULL);
72         EXPECT_EQ(res, MMI_ERROR_NONE);
73
74         mmi_shutdown();
75 }