Merge "Return errors to caller" into tizen_5.5
[platform/core/connectivity/stc-manager.git] / unittest / 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::StopManager(void)
36 {
37         GVariant *message = NULL;
38         error_e error = ERROR_NONE;
39         int result = 0;
40
41         message = InvokeMethod(STC_MGR_SERVICE,
42                 STC_MGR_MANAGER_PATH,
43                 STC_MGR_MANAGER_INTERFACE,
44                 STC_MGR_METHOD_MANAGER_STOP,
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 }