Initialize Tizen 2.3
[framework/system/deviced.git] / src / auto-test / earjack.c
1 /*
2  * test
3  *
4  * Copyright (c) 2013 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 #include "test.h"
19
20 static const struct device_change_type {
21         char *name;
22         char *status;
23 } device_change_types [] = {
24         {"jack",        "1"},
25         {"jack",        "0"},
26         {"key", "1"},
27         {"key", "0"},
28 };
29
30 static int test(int index)
31 {
32         DBusError err;
33         DBusMessage *msg;
34         int ret, ret_val;
35         char *param[4];
36
37         param[0] = METHOD_SET_DEVICE;
38         param[1] = "2";
39         param[2] = device_change_types[index].name;
40         param[3] = device_change_types[index].status;
41
42         msg = dbus_method_sync_with_reply(DEVICED_BUS_NAME,
43                         DEVICED_PATH_SYSNOTI,
44                         DEVICED_INTERFACE_SYSNOTI,
45                         METHOD_SET_DEVICE, "siss", param);
46         if (!msg) {
47                 _E("fail : %s %s %s %s",
48                         DEVICED_BUS_NAME, DEVICED_PATH_SYSNOTI, DEVICED_INTERFACE_SYSNOTI,
49                         METHOD_SET_DEVICE);
50                 return -EBADMSG;
51         }
52
53         dbus_error_init(&err);
54
55         ret = dbus_message_get_args(msg, &err, DBUS_TYPE_INT32, &ret_val, DBUS_TYPE_INVALID);
56         if (ret == 0) {
57                 _E("no message : [%s:%s]", err.name, err.message);
58                 dbus_error_free(&err);
59                 ret_val = -EBADMSG;
60         }
61         _I("%s %s", device_change_types[index].name, device_change_types[index].status);
62         dbus_message_unref(msg);
63         dbus_error_free(&err);
64         sleep(TEST_WAIT_TIME_INTERVAL);
65         return ret_val;
66 }
67
68 static void unit(char *unit, char *status)
69 {
70         int index;
71
72         for (index = 0; index < ARRAY_SIZE(device_change_types); index++) {
73                 if (strcmp(unit, device_change_types[index].name) != 0 ||
74                     strcmp(status, device_change_types[index].status) != 0)
75                         continue;
76                 test(index);
77         }
78 }
79
80 static void earjack_init(void *data)
81 {
82         int index;
83
84         _I("start test");
85         for (index = 0; index < ARRAY_SIZE(device_change_types); index++)
86                 test(index);
87 }
88
89 static void earjack_exit(void *data)
90 {
91         _I("end test");
92 }
93
94 static int earjack_unit(int argc, char **argv)
95 {
96         int status;
97
98         if (argv[1] == NULL)
99                 return -EINVAL;
100         if (argc != 3)
101                 return -EAGAIN;
102
103         unit(argv[1], argv[2]);
104 out:
105         return 0;
106 }
107
108 static const struct test_ops earjack_test_ops = {
109         .priority = TEST_PRIORITY_NORMAL,
110         .name     = "earjack",
111         .init     = earjack_init,
112         .exit    = earjack_exit,
113         .unit    = earjack_unit,
114 };
115
116 TEST_OPS_REGISTER(&earjack_test_ops)
117