Added Haltest for wifi-mesh-manager
[platform/core/connectivity/wifi-mesh-manager.git] / haltest / manager.cpp
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <iostream>
20 #include <gmock/gmock.h>
21 #include <gtest/gtest.h>
22
23 #include "manager.h"
24
25 Manager::Manager()
26 {
27         Create();
28 }
29
30 Manager::~Manager()
31 {
32         Destroy();
33 }
34
35 error_e Manager::EnableManager(void)
36 {
37         GVariant *message = NULL;
38         error_e error = ERROR_NONE;
39         int result = 0;
40
41         message = InvokeMethod(WIFI_MESH_MGR_SERVICE".manager",
42                 WIFI_MESH_MGR_MANAGER_PATH,
43                 WIFI_MESH_MGR_MANAGER_INTERFACE,
44                 WIFI_MESH_MGR_METHOD_MANAGER_START,
45                 NULL,
46                 &error);
47
48         if (message == NULL) {
49                 GLOGD("Failed to invoke dbus method");
50                 return error;
51         }
52
53         g_variant_get(message, "(i)", &result);
54         GLOGD("Successfully stop manager [%d]", result);
55         g_variant_unref(message);
56
57         return ERROR_NONE;
58 }
59
60 error_e Manager::DisableManager(void)
61 {
62         GVariant *message = NULL;
63         error_e error = ERROR_NONE;
64         int result = 0;
65
66         message = InvokeMethod(WIFI_MESH_MGR_SERVICE,
67                 WIFI_MESH_MGR_MANAGER_PATH,
68                 WIFI_MESH_MGR_MANAGER_INTERFACE,
69                 WIFI_MESH_MGR_METHOD_MANAGER_STOP,
70                 NULL,
71                 &error);
72
73         if (message == NULL) {
74                 GLOGD("Failed to invoke dbus method");
75                 return error;
76         }
77
78         g_variant_get(message, "(i)", &result);
79         GLOGD("Successfully stop manager [%d]", result);
80         g_variant_unref(message);
81
82         return ERROR_NONE;
83 }