Create set result cb API in client and test
[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 void voice_touch_callback(void *user_data, int input_event_type, const char *result_out)
65 {
66 }
67
68 TEST_F(MMIMainTest, MMIClientSetResultCbSuccess)
69 {
70         int res = mmi_init();
71         mmi_input_event_type_e input_event_type = MMI_VOICE_TOUCH;
72
73         EXPECT_EQ(res, MMI_ERROR_NONE);
74
75         res = mmi_client_set_result_cb(input_event_type, voice_touch_callback, NULL);
76         EXPECT_EQ(res, MMI_ERROR_NONE);
77
78         mmi_handle mmi_client = mmi_client_get();
79         GList* iter = NULL;
80         result_cb_s *data = NULL;
81
82         iter = g_list_first(mmi_client->result_cb_list);
83         if(NULL != iter) {
84                 data = (result_cb_s*)iter->data;
85                 EXPECT_NE(data->result_callback, nullptr);
86                 EXPECT_EQ(data->result_callback, voice_touch_callback);
87                 EXPECT_EQ(data->input_event_type, MMI_VOICE_TOUCH);
88         }
89         else {
90                 EXPECT_TRUE(false);
91         }
92
93         mmi_shutdown();
94 }
95
96 TEST_F(MMIMainTest, MMIClientSetResultCbFail)
97 {
98         int res = mmi_init();
99         mmi_input_event_type_e input_event_type = MMI_VOICE_TOUCH;
100
101         EXPECT_EQ(res, MMI_ERROR_NONE);
102
103         res = mmi_client_set_result_cb(input_event_type, NULL, NULL);
104         EXPECT_EQ(res, MMI_ERROR_INVALID_PARAMETER);
105
106         mmi_shutdown();
107 }