Change 'Feature List' link
[platform/core/api/connection.git] / test / connection_test.c
1 /*
2  * Copyright (c) 2011-2013 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 <errno.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <unistd.h>
22 #include <glib.h>
23
24 #include "net_connection.h"
25
26 #include <tizen_error.h>
27
28 #define LOG_RED "\033[0;31m"
29 #define LOG_GREEN "\033[0;32m"
30 #define LOG_BROWN "\033[0;33m"
31 #define LOG_BLUE "\033[0;34m"
32 #define LOG_END "\033[0;m"
33
34 #define RETURN_FAIL_DESTROY(x) {connection_profile_destroy(x); return -1; }
35
36 gboolean test_thread(GIOChannel *source, GIOCondition condition, gpointer data);
37
38 connection_h connection = NULL;
39 static GSList *state_cb_list = NULL;
40
41
42 static bool test_get_user_string(const char *msg, char *buf, int buf_size)
43 {
44         if (msg == NULL || buf == NULL || buf_size < 2)
45                 return false;
46
47         int rv;
48         printf("%s\n", msg);
49         memset(buf, 0, buf_size);
50         rv = read(0, buf, buf_size - 1);
51
52         if (rv < 0 || buf[0] == '\0' || buf[0] == '\n' || buf[0] == '\r') {
53                 buf[0] = '\0';
54                 return false;
55         }
56
57         buf[rv-1] = '\0';
58         return true;
59 }
60
61 static bool test_get_user_int(const char *msg, int *num)
62 {
63         if (msg == NULL || num == NULL)
64                 return false;
65
66         int rv;
67         char buf[32] = {0,};
68         printf("%s\n", msg);
69         rv = read(0, buf, 32);
70
71         if (rv < 0 || *buf == 0 || *buf == '\n' || *buf == '\r')
72                 return false;
73
74         *num = atoi(buf);
75         return true;
76 }
77
78 static const char *test_print_state(connection_profile_state_e state)
79 {
80         switch (state) {
81         case CONNECTION_PROFILE_STATE_DISCONNECTED:
82                 return "Disconnected";
83         case CONNECTION_PROFILE_STATE_ASSOCIATION:
84                 return "Association";
85         case CONNECTION_PROFILE_STATE_CONFIGURATION:
86                 return "Configuration";
87         case CONNECTION_PROFILE_STATE_CONNECTED:
88                 return "Connected";
89         default:
90                 return "Unknown";
91         }
92 }
93
94 static const char *test_print_connection_type(connection_type_e type)
95 {
96         switch (type) {
97         case CONNECTION_TYPE_DISCONNECTED:
98                 return "Disconnected";
99         case CONNECTION_TYPE_WIFI:
100                 return "Wifi";
101         case CONNECTION_TYPE_CELLULAR:
102                 return "Cellular";
103         case CONNECTION_TYPE_ETHERNET:
104                 return "Ethernet";
105         case CONNECTION_TYPE_BT:
106                 return "BT";
107         case CONNECTION_TYPE_NET_PROXY:
108                 return "Net_Proxy";
109         default:
110                 return "Unknown";
111         }
112 }
113
114 static const char *test_print_cellular_state(connection_cellular_state_e state)
115 {
116         switch (state) {
117         case CONNECTION_CELLULAR_STATE_OUT_OF_SERVICE:
118                 return "Out of service";
119         case CONNECTION_CELLULAR_STATE_FLIGHT_MODE:
120                 return "Flight mode";
121         case CONNECTION_CELLULAR_STATE_ROAMING_OFF:
122                 return "Roaming off";
123         case CONNECTION_CELLULAR_STATE_CALL_ONLY_AVAILABLE:
124                 return "Call only available";
125         case CONNECTION_CELLULAR_STATE_AVAILABLE:
126                 return "Available";
127         case CONNECTION_CELLULAR_STATE_CONNECTED:
128                 return "Connected";
129         default:
130                 return "Unknown";
131         }
132 }
133
134 static const char *test_print_wifi_state(connection_wifi_state_e state)
135 {
136         switch (state) {
137         case CONNECTION_WIFI_STATE_DEACTIVATED:
138                 return "Deactivated";
139         case CONNECTION_WIFI_STATE_DISCONNECTED:
140                 return "Disconnected";
141         case CONNECTION_WIFI_STATE_CONNECTED:
142                 return "Connected";
143         default:
144                 return "Unknown";
145         }
146 }
147
148 static const char *test_print_cellular_service_type(connection_cellular_service_type_e type)
149 {
150         switch (type) {
151         case CONNECTION_CELLULAR_SERVICE_TYPE_UNKNOWN:
152                 return "Unknown";
153         case CONNECTION_CELLULAR_SERVICE_TYPE_INTERNET:
154                 return "Internet";
155         case CONNECTION_CELLULAR_SERVICE_TYPE_MMS:
156                 return "MMS";
157         case CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_INTERNET:
158                 return "Prepaid internet";
159         case CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_MMS:
160                 return "Prepaid MMS";
161         case CONNECTION_CELLULAR_SERVICE_TYPE_TETHERING:
162                 return "Tethering";
163         case CONNECTION_CELLULAR_SERVICE_TYPE_APPLICATION:
164                 return "Application";
165         default:
166                 return "Unknown";
167         }
168 }
169
170 static const char* test_print_cellular_auth_type(connection_cellular_auth_type_e type)
171 {
172         switch (type) {
173         case CONNECTION_CELLULAR_AUTH_TYPE_PAP:
174                 return "PAP";
175         case CONNECTION_CELLULAR_AUTH_TYPE_CHAP:
176                 return "CHAP";
177         case CONNECTION_CELLULAR_AUTH_TYPE_NONE:
178         default:
179                 return "None";
180         }
181 }
182
183 static const char* test_print_cellular_pdn_type(connection_cellular_pdn_type_e type)
184 {
185         switch (type) {
186         case CONNECTION_CELLULAR_PDN_TYPE_IPV4:
187                 return "IPv4";
188         case CONNECTION_CELLULAR_PDN_TYPE_IPV6:
189                 return "IPv6";
190         case CONNECTION_CELLULAR_PDN_TYPE_IPV4_IPv6:
191                 return "Dual";
192         case CONNECTION_CELLULAR_PDN_TYPE_UNKNOWN:
193         default:
194                 return "Unknown";
195         }
196 }
197
198 static const char *test_print_error(connection_error_e error)
199 {
200         switch (error) {
201         case CONNECTION_ERROR_NONE:
202                 return "CONNECTION_ERROR_NONE";
203         case CONNECTION_ERROR_INVALID_PARAMETER:
204                 return "CONNECTION_ERROR_INVALID_PARAMETER";
205         case CONNECTION_ERROR_OUT_OF_MEMORY:
206                 return "CONNECTION_ERROR_OUT_OF_MEMORY";
207         case CONNECTION_ERROR_INVALID_OPERATION:
208                 return "CONNECTION_ERROR_INVALID_OPERATION";
209         case CONNECTION_ERROR_ADDRESS_FAMILY_NOT_SUPPORTED:
210                 return "CONNECTION_ERROR_ADDRESS_FAMILY_NOT_SUPPORTED";
211         case CONNECTION_ERROR_OPERATION_FAILED:
212                 return "CONNECTION_ERROR_OPERATION_FAILED";
213         case CONNECTION_ERROR_ITERATOR_END:
214                 return "CONNECTION_ERROR_ITERATOR_END";
215         case CONNECTION_ERROR_NO_CONNECTION:
216                 return "CONNECTION_ERROR_NO_CONNECTION";
217         case CONNECTION_ERROR_NOW_IN_PROGRESS:
218                 return "CONNECTION_ERROR_NOW_IN_PROGRESS";
219         case CONNECTION_ERROR_ALREADY_EXISTS:
220                 return "CONNECTION_ERROR_ALREADY_EXISTS";
221         case CONNECTION_ERROR_OPERATION_ABORTED:
222                 return "CONNECTION_ERROR_OPERATION_ABORTED";
223         case CONNECTION_ERROR_DHCP_FAILED:
224                 return "CONNECTION_ERROR_DHCP_FAILED";
225         case CONNECTION_ERROR_INVALID_KEY:
226                 return "CONNECTION_ERROR_INVALID_KEY";
227         case CONNECTION_ERROR_NO_REPLY:
228                 return "CONNECTION_ERROR_NO_REPLY";
229         case CONNECTION_ERROR_PERMISSION_DENIED:
230                 return "CONNECTION_ERROR_PERMISSION_DENIED";
231         case CONNECTION_ERROR_NOT_SUPPORTED:
232                 return "CONNECTION_ERROR_NOT_SUPPORTED";
233         default:
234                 return "CONNECTION_ERROR_UNKNOWN";
235         }
236 }
237
238 static void test_type_changed_callback(connection_type_e type, void* user_data)
239 {
240         printf("Type changed callback, connection type : %d\n", type);
241 }
242
243 static void test_ip_changed_callback(const char* ipv4_address, const char* ipv6_address, void* user_data)
244 {
245         printf("IP changed callback, IPv4 address : %s, IPv6 address : %s\n",
246                         ipv4_address, (ipv6_address ? ipv6_address : "NULL"));
247 }
248
249 static void test_proxy_changed_callback(const char* ipv4_address, const char* ipv6_address, void* user_data)
250 {
251         printf("Proxy changed callback, IPv4 address : %s, IPv6 address : %s\n",
252                         ipv4_address, (ipv6_address ? ipv6_address : "NULL"));
253 }
254
255 static void test_profile_state_callback(connection_profile_state_e state, void* user_data)
256 {
257         char *profile_name;
258         connection_profile_h profile = user_data;
259
260         if (profile == NULL)
261                 return;
262
263         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE)
264                 return;
265
266         printf("[%s] : %s\n", test_print_state(state), profile_name);
267         g_free(profile_name);
268 }
269
270 static void test_connection_opened_callback(connection_error_e result, void* user_data)
271 {
272         if (result ==  CONNECTION_ERROR_NONE)
273                 printf("Connection open Succeeded\n");
274         else
275                 printf("Connection open Failed, err : [%s]\n", test_print_error(result));
276 }
277
278 static void test_connection_closed_callback(connection_error_e result, void* user_data)
279 {
280         if (result ==  CONNECTION_ERROR_NONE)
281                 printf("Connection close Succeeded\n");
282         else
283                 printf("Connection close Failed, err : [%s]\n", test_print_error(result));
284 }
285
286 static void test_connection_reset_profile_callback(connection_error_e result, void* user_data)
287 {
288         if (result ==  CONNECTION_ERROR_NONE)
289                 printf("Reset profile Succeeded\n");
290         else
291                 printf("Reset profile Failed, err : [%s]\n", test_print_error(result));
292 }
293
294 static void test_connection_set_default_callback(connection_error_e result, void* user_data)
295 {
296         if (result ==  CONNECTION_ERROR_NONE)
297                 printf("Default profile setting Succeeded\n");
298         else
299                 printf("Default profile setting Failed, err : [%s]\n", test_print_error(result));
300 }
301
302 void test_get_ethernet_cable_state_callback(connection_ethernet_cable_state_e state,
303                                                                 void* user_data)
304 {
305         if (state == CONNECTION_ETHERNET_CABLE_ATTACHED)
306                 printf("Ethernet Cable Connected\n");
307         else if (state == CONNECTION_ETHERNET_CABLE_DETACHED)
308                 printf("Ethernet Cable Disconnected\n");
309 }
310
311 static bool test_get_user_selected_profile(connection_profile_h *profile, bool select)
312 {
313         int rv = 0;
314         int input = 0;
315         char *profile_name;
316         connection_profile_type_e profile_type;
317         connection_profile_state_e profile_state;
318         connection_profile_iterator_h profile_iter;
319         connection_profile_h profile_h;
320
321         connection_profile_h profile_list[100] = {0,};
322         int profile_count = 0;
323
324         rv = connection_get_profile_iterator(connection, CONNECTION_ITERATOR_TYPE_REGISTERED, &profile_iter);
325         if (rv != CONNECTION_ERROR_NONE) {
326                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
327                 return false;
328         }
329
330         while (connection_profile_iterator_has_next(profile_iter)) {
331                 if (connection_profile_iterator_next(profile_iter, &profile_h) != CONNECTION_ERROR_NONE) {
332                         printf("Fail to get profile handle\n");
333                         return false;
334                 }
335
336                 if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
337                         printf("Fail to get profile name\n");
338                         return false;
339                 }
340
341                 if (connection_profile_get_type(profile_h, &profile_type) != CONNECTION_ERROR_NONE) {
342                         printf("Fail to get profile type\n");
343                         g_free(profile_name);
344                         return false;
345                 }
346
347                 if (connection_profile_get_state(profile_h, &profile_state) != CONNECTION_ERROR_NONE) {
348                         printf("Fail to get profile state\n");
349                         g_free(profile_name);
350                         return false;
351                 }
352
353                 printf("%d. state:[%s], profile name:%s", profile_count,
354                                 test_print_state(profile_state), profile_name);
355                 if (profile_type == CONNECTION_PROFILE_TYPE_CELLULAR) {
356                         connection_cellular_service_type_e service_type;
357                         if (connection_profile_get_cellular_service_type(
358                                 profile_h, &service_type) !=
359                                 CONNECTION_ERROR_NONE)
360                                 printf("Fail to get cellular service type!\n");
361
362                         printf("[%s]",
363                                 test_print_cellular_service_type(service_type));
364                 }
365                 printf("\n");
366
367                 profile_list[profile_count] = profile_h;
368                 profile_count++;
369
370                 g_free(profile_name);
371                 if (profile_count >= 100)
372                         break;
373         }
374
375         if (select == false)
376                 return true;
377
378         if (test_get_user_int("Input profile number(Enter for cancel) :", &input) == false ||
379             input >= profile_count ||
380             input < 0) {
381                 printf("Wrong number!!\n");
382                 return false;
383         }
384
385         if (profile)
386                 *profile = profile_list[input];
387
388         return true;
389 }
390
391 static int test_update_cellular_info(connection_profile_h profile)
392 {
393         int rv = 0;
394         char input_str1[100] = {0,};
395         char input_str2[100] = {0,};
396         int input_int = 0;
397         int type_val = 0;
398
399         if (test_get_user_int("Input Network Type (internet:1, MMS:2, Prepaid internet:3, "
400                         "Prepaid MMS:4, Tethering:5, Application:6)"
401                         " - (Enter for skip) :", &input_int)) {
402                 switch (input_int) {
403                 case 1:
404                         rv = connection_profile_set_cellular_service_type(profile,
405                                         CONNECTION_CELLULAR_SERVICE_TYPE_INTERNET);
406                         break;
407                 case 2:
408                         rv = connection_profile_set_cellular_service_type(profile,
409                                         CONNECTION_CELLULAR_SERVICE_TYPE_MMS);
410                         break;
411                 case 3:
412                         rv = connection_profile_set_cellular_service_type(profile,
413                                         CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_INTERNET);
414                         break;
415                 case 4:
416                         rv = connection_profile_set_cellular_service_type(profile,
417                                         CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_MMS);
418                         break;
419                 case 5:
420                         rv = connection_profile_set_cellular_service_type(profile,
421                                         CONNECTION_CELLULAR_SERVICE_TYPE_TETHERING);
422                         break;
423                 case 6:
424                         rv = connection_profile_set_cellular_service_type(profile,
425                                         CONNECTION_CELLULAR_SERVICE_TYPE_APPLICATION);
426                         break;
427                 default:
428                         return -1;
429                 }
430
431                 if (rv != CONNECTION_ERROR_NONE)
432                         return -1;
433         } else
434                 return -1;
435
436         if (test_get_user_string("Input Apn - (Enter for skip) :", input_str1, 100)) {
437                 g_strstrip(input_str1);
438                 rv = connection_profile_set_cellular_apn(profile, input_str1);
439                 if (rv != CONNECTION_ERROR_NONE)
440                         return -1;
441         }
442
443         if (test_get_user_string("Input Proxy - (Enter for skip) :", input_str1, 100)) {
444                 g_strstrip(input_str1);
445                 rv = connection_profile_set_proxy_address(profile, CONNECTION_ADDRESS_FAMILY_IPV4, input_str1);
446                 if (rv != CONNECTION_ERROR_NONE)
447                         return -1;
448         }
449
450         if (test_get_user_string("Input HomeURL - (Enter for skip) :", input_str1, 100)) {
451                 g_strstrip(input_str1);
452                 rv = connection_profile_set_cellular_home_url(profile, input_str1);
453                 if (rv != CONNECTION_ERROR_NONE)
454                         return -1;
455         }
456
457         if (test_get_user_int("Input AuthType(0:NONE 1:PAP 2:CHAP) - (Enter for skip) :", &input_int)) {
458                 switch (input_int) {
459                 case 0:
460                         rv = connection_profile_set_cellular_auth_info(profile,
461                                         CONNECTION_CELLULAR_AUTH_TYPE_NONE, "", "");
462                         if (rv != CONNECTION_ERROR_NONE)
463                                 return -1;
464
465                         break;
466                 case 1:
467                         type_val = CONNECTION_CELLULAR_AUTH_TYPE_PAP;
468                         /* fall through */
469                 case 2:
470                         if (input_int == 2) type_val = CONNECTION_CELLULAR_AUTH_TYPE_CHAP;
471
472                         if (test_get_user_string("Input AuthId(Enter for skip) :", input_str1, 100) == false)
473                                 input_str1[0] = 0;
474                         if (test_get_user_string("Input AuthPwd(Enter for skip) :", input_str2, 100) == false)
475                                 input_str2[0] = 0;
476
477                         g_strstrip(input_str1);
478                         g_strstrip(input_str2);
479                         rv = connection_profile_set_cellular_auth_info(profile, type_val, input_str1, input_str2);
480                         if (rv != CONNECTION_ERROR_NONE)
481                                 return -1;
482                 }
483         }
484
485         if (test_get_user_int("Input PdnType(1:IPv4 2:IPv6 3:IPv4v6) - (Enter for skip) :", &input_int)) {
486                 switch (input_int) {
487                 case 1:
488                         rv = connection_profile_set_cellular_pdn_type(profile, CONNECTION_CELLULAR_PDN_TYPE_IPV4);
489                         break;
490                 case 2:
491                         rv = connection_profile_set_cellular_pdn_type(profile, CONNECTION_CELLULAR_PDN_TYPE_IPV6);
492                         break;
493                 case 3:
494                         rv = connection_profile_set_cellular_pdn_type(profile, CONNECTION_CELLULAR_PDN_TYPE_IPV4_IPv6);
495                         break;
496                 }
497
498                 if (rv != CONNECTION_ERROR_NONE)
499                         return -1;
500         }
501
502         if (test_get_user_int("Input RoamPdnType(1:IPv4 2:IPv6 3:IPv4v6) - (Enter for skip) :", &input_int)) {
503                 switch (input_int) {
504                 case 1:
505                         rv = connection_profile_set_cellular_roam_pdn_type(profile, CONNECTION_CELLULAR_PDN_TYPE_IPV4);
506                         break;
507                 case 2:
508                         rv = connection_profile_set_cellular_roam_pdn_type(profile, CONNECTION_CELLULAR_PDN_TYPE_IPV6);
509                         break;
510                 case 3:
511                         rv = connection_profile_set_cellular_roam_pdn_type(profile, CONNECTION_CELLULAR_PDN_TYPE_IPV4_IPv6);
512                         break;
513                 }
514
515                 if (rv != CONNECTION_ERROR_NONE)
516                         return -1;
517         }
518
519         return 1;
520 }
521
522 static int test_update_wifi_info(connection_profile_h profile)
523 {
524         int rv = 0;
525         char input_str[100] = {0,};
526
527         if (test_get_user_string("Input Passphrase - (Enter for skip) :", input_str, 100)) {
528                 rv = connection_profile_set_wifi_passphrase(profile, input_str);
529                 if (rv != CONNECTION_ERROR_NONE)
530                         return -1;
531         }
532
533         return 1;
534 }
535
536 static int test_update_dns_info(connection_profile_h profile,
537                 connection_address_family_e address_family)
538 {
539         int rv = 0;
540         char input_str[100] = {0,};
541         if (test_get_user_string("Input DNS 1 Address - (Enter for skip) :", input_str, 100)) {
542                 rv = connection_profile_set_dns_address(profile,
543                                 1,
544                                 address_family,
545                                 input_str);
546                 if (rv != CONNECTION_ERROR_NONE)
547                         return -1;
548
549                 if (test_get_user_string("Input DNS 2 Address - (Enter for skip) :", input_str, 100)) {
550                         rv = connection_profile_set_dns_address(profile,
551                                         2,
552                                         address_family,
553                                         input_str);
554                         if (rv != CONNECTION_ERROR_NONE)
555                                 return -1;
556                 }
557         }
558         return 1;
559 }
560
561 static int test_update_ip_info(connection_profile_h profile, connection_address_family_e address_family)
562 {
563         int rv = 0;
564         int input_int = 0;
565         char input_str[100] = {0,};
566
567         if (test_get_user_string("Input IP Address - (Enter for skip) :", input_str, 100)) {
568                 rv = connection_profile_set_ip_address(profile,
569                                                         address_family,
570                                                         input_str);
571                 if (rv != CONNECTION_ERROR_NONE)
572                         return -1;
573         }
574
575         if (test_get_user_string("Input Netmask - (Enter for skip) :", input_str, 100)) {
576                 rv = connection_profile_set_subnet_mask(profile,
577                                                         address_family,
578                                                         input_str);
579                 if (rv != CONNECTION_ERROR_NONE)
580                         return -1;
581         }
582
583         if (test_get_user_int("Input Prefix Length - (Enter for skip) :", &input_int)) {
584                 rv = connection_profile_set_prefix_length(profile,
585                                                         address_family,
586                                                         input_int);
587                 if (rv != CONNECTION_ERROR_NONE)
588                         return -1;
589         }
590
591         if (test_get_user_string("Input Gateway - (Enter for skip) :", input_str, 100)) {
592                 rv = connection_profile_set_gateway_address(profile,
593                                                         address_family,
594                                                         input_str);
595                 if (rv != CONNECTION_ERROR_NONE)
596                         return -1;
597         }
598
599         if (test_update_dns_info(profile, address_family) < 0)
600                 return -1;
601
602         return 1;
603 }
604
605 static int test_update_proxy_info(connection_profile_h profile, connection_address_family_e address_family)
606 {
607         int rv = 0;
608         int input_int = 0;
609         char input_str[100] = {0,};
610
611         if (test_get_user_int("Input Proxy Type (1:direct, 2:auto, 3:manual)"
612                                         " - (Enter for skip) :", &input_int)) {
613                 switch (input_int) {
614                 case 1:
615                         rv = connection_profile_set_proxy_type(profile,
616                                         CONNECTION_PROXY_TYPE_DIRECT);
617
618                         if (rv != CONNECTION_ERROR_NONE)
619                                 return -1;
620                         else
621                                 return 1;
622                 case 2:
623                         rv = connection_profile_set_proxy_type(profile,
624                                         CONNECTION_PROXY_TYPE_AUTO);
625                         break;
626                 case 3:
627                         rv = connection_profile_set_proxy_type(profile,
628                                         CONNECTION_PROXY_TYPE_MANUAL);
629                         break;
630                 default:
631                         return -1;
632                 }
633
634                 if (rv != CONNECTION_ERROR_NONE)
635                         return -1;
636
637                 if (test_get_user_string("Input auto Proxy URL or Proxy address"
638                                         " - (Enter for skip) :", input_str, 100)) {
639                         rv = connection_profile_set_proxy_address(profile,
640                                                                 address_family,
641                                                                 input_str);
642                         if (rv != CONNECTION_ERROR_NONE)
643                                 return -1;
644                 }
645
646         } else
647                 return -1;
648
649         return 1;
650 }
651
652
653
654 static int test_update_network_info(connection_profile_h profile)
655 {
656         int rv = 0;
657         int input_int = 0;
658         int dns_input = 0;
659         int address_family = 0;
660
661         test_get_user_int("Input Address Family (0:IPv4 1:IPv6) :", &address_family);
662
663         if (test_get_user_int("Input IPv4/IPv6 Address Type (DHCP:1, Static:2, Auto:3)"
664                                 " - (Enter for skip) :", &input_int)) {
665                 switch (input_int) {
666                 case 1:
667                         rv = connection_profile_set_ip_config_type(profile,
668                                         address_family,
669                                         CONNECTION_IP_CONFIG_TYPE_DYNAMIC);
670                         if (test_get_user_int("Input DNS Address Type (Static:1, DHCP:2)"
671                                                 " - (Enter for skip) :", &dns_input)) {
672                                 switch (dns_input) {
673                                 case CONNECTION_DNS_CONFIG_TYPE_STATIC:
674                                         rv = connection_profile_set_dns_config_type(
675                                                         profile,
676                                                         address_family,
677                                                         CONNECTION_DNS_CONFIG_TYPE_STATIC);
678                                         if (rv != CONNECTION_ERROR_NONE)
679                                                 return -1;
680                                         if (test_update_dns_info(profile,
681                                                                 address_family) == -1)
682                                                 return -1;
683                                         break;
684                                 case CONNECTION_DNS_CONFIG_TYPE_DYNAMIC:
685                                         rv = connection_profile_set_dns_config_type(
686                                                         profile,
687                                                         address_family,
688                                                         CONNECTION_DNS_CONFIG_TYPE_DYNAMIC);
689                                         if (rv != CONNECTION_ERROR_NONE)
690                                                 return -1;
691                                         break;
692                                 }
693                         }
694                         break;
695                 case 2:
696                         rv = connection_profile_set_ip_config_type(profile,
697                                                                    address_family,
698                                                                    CONNECTION_IP_CONFIG_TYPE_STATIC);
699                         if (rv != CONNECTION_ERROR_NONE)
700                                 return -1;
701
702                         if (test_update_ip_info(profile, address_family) == -1)
703                                 return -1;
704
705                         if (test_update_proxy_info(profile, address_family) == -1)
706                                 return -1;
707                         break;
708                 case 3:
709                         rv = connection_profile_set_ip_config_type(profile,
710                                                                 address_family,
711                                                                 CONNECTION_IP_CONFIG_TYPE_AUTO);
712                         break;
713                 default:
714                         return -1;
715                 }
716
717                 if (rv != CONNECTION_ERROR_NONE)
718                         return -1;
719         } else
720                 return -1;
721
722         return 1;
723 }
724
725 static void test_print_cellular_info(connection_profile_h profile)
726 {
727         connection_cellular_service_type_e service_type;
728         connection_cellular_pdn_type_e pdn_type;
729         connection_cellular_pdn_type_e roam_pdn_type;
730         char *apn = NULL;
731         connection_cellular_auth_type_e auth_type;
732         char *user_name = NULL;
733         char *password = NULL;
734         char *home_url = NULL;
735         bool roaming = false;
736         bool hidden = false;
737         bool editable = false;
738
739         if (connection_profile_get_cellular_service_type(profile, &service_type) != CONNECTION_ERROR_NONE)
740                 printf("Fail to get cellular service type!\n");
741         else
742                 printf("Cellular service type : %s\n", test_print_cellular_service_type(service_type));
743
744         if (connection_profile_get_cellular_pdn_type(profile, &pdn_type) != CONNECTION_ERROR_NONE)
745                 printf("Fail to get cellular pdn type!\n");
746         else
747                 printf("Cellular pdn type : %s\n", test_print_cellular_pdn_type(pdn_type));
748
749         if (connection_profile_get_cellular_roam_pdn_type(profile, &roam_pdn_type) != CONNECTION_ERROR_NONE)
750                 printf("Fail to get cellular roam pdn type!\n");
751         else
752                 printf("Cellular roam pdn type : %s\n", test_print_cellular_pdn_type(roam_pdn_type));
753
754         if (connection_profile_get_cellular_apn(profile, &apn) != CONNECTION_ERROR_NONE)
755                 printf("Fail to get cellular APN!\n");
756         else {
757                 printf("Cellular APN : %s\n", apn);
758                 g_free(apn);
759         }
760
761         if (connection_profile_get_cellular_auth_info(profile, &auth_type, &user_name, &password) != CONNECTION_ERROR_NONE)
762                 printf("Fail to get auth info!\n");
763         else {
764                 printf("Cellular auth type : %s\n", test_print_cellular_auth_type(auth_type));
765                 printf("Cellular user_name : %s\n", user_name);
766                 printf("Cellular password : %s\n", password);
767                 g_free(user_name);
768                 g_free(password);
769         }
770
771         if (connection_profile_get_cellular_home_url(profile, &home_url) != CONNECTION_ERROR_NONE)
772                 printf("Fail to get cellular home url!\n");
773         else {
774                 printf("Cellular home url : %s\n", home_url);
775                 g_free(home_url);
776         }
777
778         if (connection_profile_is_cellular_roaming(profile, &roaming) != CONNECTION_ERROR_NONE)
779                 printf("Fail to get cellular roaming state!\n");
780         else
781                 printf("Cellular roaming : %s\n", roaming ? "true" : "false");
782
783         if (connection_profile_is_cellular_hidden(profile, &hidden) != CONNECTION_ERROR_NONE)
784                 printf("Fail to get cellular hidden state!\n");
785         else
786                 printf("Cellular hidden : %s\n", hidden ? "true" : "false");
787
788         if (connection_profile_is_cellular_editable(profile, &editable) != CONNECTION_ERROR_NONE)
789                 printf("Fail to get cellular editing state!\n");
790         else
791                 printf("Cellular editable : %s\n", editable ? "true" : "false");
792 }
793
794 static void test_print_wifi_info(connection_profile_h profile)
795 {
796         char *essid = NULL;
797         char *bssid = NULL;
798         int rssi = 0;
799         int frequency = 0;
800         int max_speed = 0;
801         connection_wifi_security_type_e security_type;
802         connection_wifi_encryption_type_e encryption_type;
803         bool pass_required = false;
804         bool wps_supported = false;
805
806         if (connection_profile_get_wifi_essid(profile, &essid) != CONNECTION_ERROR_NONE)
807                 printf("Fail to get Wi-Fi essid!\n");
808         else {
809                 printf("Wi-Fi essid : %s\n", essid);
810                 g_free(essid);
811         }
812
813         if (connection_profile_get_wifi_bssid(profile, &bssid) != CONNECTION_ERROR_NONE)
814                 printf("Fail to get Wi-Fi bssid!\n");
815         else {
816                 printf("Wi-Fi bssid : %s\n", bssid);
817                 g_free(bssid);
818         }
819
820         if (connection_profile_get_wifi_rssi(profile, &rssi) != CONNECTION_ERROR_NONE)
821                 printf("Fail to get Wi-Fi rssi!\n");
822         else
823                 printf("Wi-Fi rssi : %d\n", rssi);
824
825         if (connection_profile_get_wifi_frequency(profile, &frequency) != CONNECTION_ERROR_NONE)
826                 printf("Fail to get Wi-Fi frequency!\n");
827         else
828                 printf("Wi-Fi frequency : %d\n", frequency);
829
830         if (connection_profile_get_wifi_max_speed(profile, &max_speed) != CONNECTION_ERROR_NONE)
831                 printf("Fail to get Wi-Fi max speed!\n");
832         else
833                 printf("Wi-Fi max speed : %d\n", max_speed);
834
835         if (connection_profile_get_wifi_security_type(profile, &security_type) != CONNECTION_ERROR_NONE)
836                 printf("Fail to get Wi-Fi security type!\n");
837         else
838                 printf("Wi-Fi security type : %d\n", security_type);
839
840         if (connection_profile_get_wifi_encryption_type(profile, &encryption_type) != CONNECTION_ERROR_NONE)
841                 printf("Fail to get Wi-Fi encryption type!\n");
842         else
843                 printf("Wi-Fi encryption type : %d\n", encryption_type);
844
845         if (connection_profile_is_wifi_passphrase_required(profile, &pass_required) != CONNECTION_ERROR_NONE)
846                 printf("Fail to get Wi-Fi passphrase required!\n");
847         else
848                 printf("Wi-Fi passphrase required : %s\n", pass_required ? "true" : "false");
849
850         if (connection_profile_is_wifi_wps_supported(profile, &wps_supported) != CONNECTION_ERROR_NONE)
851                 printf("Fail to get Wi-Fi wps info\n");
852         else
853                 printf("Wi-Fi wps supported : %s\n", wps_supported ? "true" : "false");
854 }
855
856 static void test_print_network_info(connection_profile_h profile, connection_address_family_e address_family)
857 {
858         char *interface_name = NULL;
859         char *ip = NULL;
860         char *subnet = NULL;
861         char *gateway = NULL;
862         char *dns1 = NULL;
863         char *dns2 = NULL;
864         char *proxy = NULL;
865         int prefix_len;
866         connection_ip_config_type_e ip_type;
867         connection_proxy_type_e proxy_type;
868         connection_dns_config_type_e dns_type;
869
870         if (connection_profile_get_network_interface_name(profile, &interface_name) != CONNECTION_ERROR_NONE)
871                 printf("Fail to get interface name!\n");
872         else {
873                 printf("Interface name : %s\n", interface_name);
874                 g_free(interface_name);
875         }
876
877         if (connection_profile_get_ip_config_type(profile, address_family, &ip_type) != CONNECTION_ERROR_NONE)
878                 printf("Fail to get ipconfig type!\n");
879         else
880                 printf("Ipconfig type : %d\n", ip_type);
881
882         if (connection_profile_get_ip_address(profile, address_family, &ip) != CONNECTION_ERROR_NONE)
883                 printf("Fail to get IP address!\n");
884         else {
885                 printf("IP address : %s\n", ip);
886                 g_free(ip);
887         }
888
889         if (connection_profile_get_gateway_address(profile, address_family, &gateway) != CONNECTION_ERROR_NONE)
890                 printf("Fail to get gateway!\n");
891         else {
892                 printf("Gateway : %s\n", gateway);
893                 g_free(gateway);
894         }
895
896         if (connection_profile_get_subnet_mask(profile, address_family, &subnet) != CONNECTION_ERROR_NONE)
897                 printf("Fail to get subnet mask!\n");
898         else {
899                 printf("Subnet mask : %s\n", subnet);
900                 g_free(subnet);
901         }
902
903         if (connection_profile_get_prefix_length(profile, address_family, &prefix_len) != CONNECTION_ERROR_NONE)
904                 printf("Fail to get prefix length!\n");
905         else
906                 printf("Prefix length : %d\n", prefix_len);
907
908         if (connection_profile_get_dns_config_type(profile, address_family, &dns_type) != CONNECTION_ERROR_NONE)
909                 printf("Fail to get DNS configuration type!\n");
910         else
911                 printf("DNS configuration type : %d\n", dns_type);
912
913         if (connection_profile_get_dns_address(profile, 1, address_family, &dns1) != CONNECTION_ERROR_NONE)
914                 printf("Fail to get DNS1!\n");
915         else {
916                 printf("DNS1 : %s\n", dns1);
917                 g_free(dns1);
918         }
919
920         if (connection_profile_get_dns_address(profile, 2, address_family, &dns2) != CONNECTION_ERROR_NONE)
921                 printf("Fail to get DNS2!\n");
922         else {
923                 printf("DNS2 : %s\n", dns2);
924                 g_free(dns2);
925         }
926
927         if (connection_profile_get_proxy_type(profile, &proxy_type) != CONNECTION_ERROR_NONE)
928                 printf("Fail to get proxy type!\n");
929         else
930                 printf("Proxy type : %d\n", proxy_type);
931
932         if (connection_profile_get_proxy_address(profile, address_family, &proxy) != CONNECTION_ERROR_NONE)
933                 printf("Fail to get proxy!\n");
934         else {
935                 printf("Proxy : %s\n", proxy);
936                 g_free(proxy);
937         }
938 }
939
940 int test_register_client(void)
941 {
942
943         int err = connection_create(&connection);
944
945         if (CONNECTION_ERROR_NONE == err) {
946                 connection_set_type_changed_cb(connection, test_type_changed_callback, NULL);
947                 connection_set_ip_address_changed_cb(connection, test_ip_changed_callback, NULL);
948                 connection_set_proxy_address_changed_cb(connection, test_proxy_changed_callback, NULL);
949                 connection_set_ethernet_cable_state_chaged_cb(connection,
950                                         test_get_ethernet_cable_state_callback, NULL);
951         } else {
952                 printf("Client registration failed [%s]\n", test_print_error(err));
953                 return -1;
954         }
955
956         printf("Client registration success\n");
957         return 1;
958 }
959
960 int  test_deregister_client(void)
961 {
962         int rv = 0;
963         GSList *list;
964         connection_profile_h profile;
965
966         if (connection != NULL)
967                 rv = connection_destroy(connection);
968         else {
969                 printf("Cannot deregister : Handle is NULL\n");
970                 rv = CONNECTION_ERROR_INVALID_OPERATION;
971         }
972
973         if (rv != CONNECTION_ERROR_NONE) {
974                 printf("Client deregistration fail [%s]\n", test_print_error(rv));
975                 return -1;
976         }
977
978         if (state_cb_list) {
979                 for (list = state_cb_list; list; list = list->next) {
980                         profile = list->data;
981                         connection_profile_destroy(profile);
982                 }
983
984                 g_slist_free(state_cb_list);
985                 state_cb_list = NULL;
986         }
987
988         connection = NULL;
989         printf("Client deregistration success\n");
990
991         return 1;
992 }
993
994 int test_get_network_state(void)
995 {
996         int rv = 0;
997         connection_type_e net_state;
998
999         rv = connection_get_type(connection, &net_state);
1000
1001         if (rv != CONNECTION_ERROR_NONE) {
1002                 printf("Fail to get network state [%s]\n", test_print_error(rv));
1003                 return -1;
1004         }
1005
1006         printf("Retval = [%s] network connection state [%s]\n",
1007                 test_print_error(rv), test_print_connection_type(net_state));
1008
1009         return 1;
1010 }
1011
1012 int test_get_cellular_state(void)
1013 {
1014         int rv = 0;
1015         connection_cellular_state_e cellular_state;
1016
1017         rv = connection_get_cellular_state(connection, &cellular_state);
1018
1019         if (rv != CONNECTION_ERROR_NONE) {
1020                 printf("Fail to get Cellular state [%s]\n", test_print_error(rv));
1021                 return -1;
1022         }
1023
1024         printf("Retval = [%s] Cellular state [%s]\n",
1025                 test_print_error(rv), test_print_cellular_state(cellular_state));
1026
1027         return 1;
1028 }
1029
1030 int test_get_wifi_state(void)
1031 {
1032         int rv = 0;
1033         connection_wifi_state_e wifi_state;
1034
1035         rv = connection_get_wifi_state(connection, &wifi_state);
1036
1037         if (rv != CONNECTION_ERROR_NONE) {
1038                 printf("Fail to get WiFi state [%s]\n", test_print_error(rv));
1039                 return -1;
1040         }
1041
1042         printf("Retval = [%s] WiFi state [%s]\n",
1043                 test_print_error(rv), test_print_wifi_state(wifi_state));
1044
1045         return 1;
1046 }
1047
1048 int test_get_current_proxy(void)
1049 {
1050         char *proxy_addr = NULL;
1051
1052         connection_get_proxy(connection, CONNECTION_ADDRESS_FAMILY_IPV4, &proxy_addr);
1053
1054         if (proxy_addr == NULL) {
1055                 printf("Proxy address does not exist\n");
1056                 return -1;
1057         }
1058
1059         printf("Current Proxy [%s]\n", proxy_addr);
1060         g_free(proxy_addr);
1061
1062         return 1;
1063 }
1064
1065 int test_get_current_ip(void)
1066 {
1067         char *ip_addr = NULL;
1068         int input;
1069         bool rv;
1070
1071         rv = test_get_user_int("Input Address type to get"
1072                 "(1:IPV4, 2:IPV6):", &input);
1073
1074         if (rv == false) {
1075                 printf("Invalid input!!\n");
1076                 return -1;
1077         }
1078
1079         switch (input) {
1080         case 1:
1081                 connection_get_ip_address(connection, CONNECTION_ADDRESS_FAMILY_IPV4, &ip_addr);
1082                 if (ip_addr == NULL) {
1083                         printf("IPv4 address does not exist\n");
1084                         return -1;
1085                 }
1086                 printf("IPv4 address : %s\n", ip_addr);
1087                 break;
1088
1089         case 2:
1090                 connection_get_ip_address(connection, CONNECTION_ADDRESS_FAMILY_IPV6, &ip_addr);
1091                 if (ip_addr == NULL) {
1092                         printf("IPv6 address does not exist\n");
1093                         return -1;
1094                 }
1095                 printf("IPv6 address : %s\n", ip_addr);
1096                 break;
1097         default:
1098                 printf("Wrong IP address family!!\n");
1099                 return -1;
1100         }
1101
1102         g_free(ip_addr);
1103         return 1;
1104 }
1105
1106 int test_get_call_statistics_info(void)
1107 {
1108         long long rv = 0;
1109
1110         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA, &rv);
1111         printf("last recv data size [%lld]\n", rv);
1112         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA, &rv);
1113         printf("last sent data size [%lld]\n", rv);
1114         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA, &rv);
1115         printf("total received data size [%lld]\n", rv);
1116         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA, &rv);
1117         printf("total sent data size [%lld]\n", rv);
1118
1119         return 1;
1120 }
1121
1122 int test_get_wifi_call_statistics_info(void)
1123 {
1124         long long rv = 0;
1125
1126         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA, &rv);
1127         printf("WiFi last recv data size [%lld]\n", rv);
1128         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA, &rv);
1129         printf("WiFi last sent data size [%lld]\n", rv);
1130         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA, &rv);
1131         printf("WiFi total received data size [%lld]\n", rv);
1132         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA, &rv);
1133         printf("WiFi total sent data size [%lld]\n", rv);
1134
1135         return 1;
1136 }
1137
1138 int test_get_profile_list(void)
1139 {
1140         if (test_get_user_selected_profile(NULL, false) == false)
1141                 return -1;
1142
1143         return 1;
1144 }
1145
1146 int test_get_default_profile_list(void)
1147 {
1148         int rv = 0;
1149         char *profile_name = NULL;
1150         connection_profile_iterator_h profile_iter;
1151         connection_profile_h profile_h;
1152         connection_cellular_service_type_e service_type;
1153         bool is_default = false;
1154
1155         rv = connection_get_profile_iterator(connection, CONNECTION_ITERATOR_TYPE_DEFAULT, &profile_iter);
1156         if (rv != CONNECTION_ERROR_NONE) {
1157                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
1158                 return -1;
1159         }
1160
1161         while (connection_profile_iterator_has_next(profile_iter)) {
1162                 if (connection_profile_iterator_next(profile_iter, &profile_h) != CONNECTION_ERROR_NONE) {
1163                         printf("Fail to get profile handle\n");
1164                         return -1;
1165                 }
1166
1167                 if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
1168                         printf("Fail to get profile name\n");
1169                         return -1;
1170                 }
1171                 printf("profile name : %s\n", profile_name);
1172                 g_free(profile_name);
1173
1174                 if (connection_profile_get_cellular_service_type(profile_h, &service_type) != CONNECTION_ERROR_NONE) {
1175                         printf("Fail to get profile service type\n");
1176                         return -1;
1177                 }
1178                 printf("service type : %d\n", service_type);
1179
1180                 if (connection_profile_is_cellular_default(profile_h, &is_default) != CONNECTION_ERROR_NONE) {
1181                         printf("Fail to get profile subscriber id\n");
1182                         return -1;
1183                 }
1184                 printf("Default : %d\n", is_default);
1185         }
1186
1187         return 1;
1188 }
1189
1190 int test_get_connected_profile_list(void)
1191 {
1192         int rv = 0;
1193         char *profile_name = NULL;
1194         connection_profile_iterator_h profile_iter;
1195         connection_profile_h profile_h;
1196         bool is_default = false;
1197         connection_profile_type_e type;
1198
1199         rv = connection_get_profile_iterator(connection, CONNECTION_ITERATOR_TYPE_CONNECTED, &profile_iter);
1200         if (rv != CONNECTION_ERROR_NONE) {
1201                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
1202                 return -1;
1203         }
1204
1205         while (connection_profile_iterator_has_next(profile_iter)) {
1206                 if (connection_profile_iterator_next(profile_iter, &profile_h) != CONNECTION_ERROR_NONE) {
1207                         printf("Fail to get profile handle\n");
1208                         return -1;
1209                 }
1210
1211                 if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
1212                         printf("Fail to get profile name\n");
1213                         return -1;
1214                 }
1215                 printf("profile name is %s\n", profile_name);
1216                 g_free(profile_name);
1217
1218                 if (connection_profile_get_type(profile_h, &type) != CONNECTION_ERROR_NONE) {
1219                         printf("Fail to get profile type\n");
1220                         return -1;
1221                 }
1222                 printf("profile type is %d\n", type);
1223
1224                 if (type == CONNECTION_PROFILE_TYPE_CELLULAR) {
1225                 if (connection_profile_is_cellular_default(profile_h, &is_default) != CONNECTION_ERROR_NONE) {
1226                         printf("Fail to get profile is default\n");
1227                         return -1;
1228                 }
1229                         printf("[%s]\n", is_default ? "default" : "not default");
1230                 }
1231         }
1232
1233         return 1;
1234 }
1235
1236 int test_get_current_profile(void)
1237 {
1238         int rv = 0;
1239         char *profile_name = NULL;
1240         connection_profile_h profile_h;
1241
1242         rv = connection_get_current_profile(connection, &profile_h);
1243         if (rv != CONNECTION_ERROR_NONE) {
1244                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
1245                 return -1;
1246         }
1247
1248         if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
1249                 printf("Fail to get profile name\n");
1250                 return -1;
1251         }
1252         printf("profile name : %s\n", profile_name);
1253         g_free(profile_name);
1254
1255         connection_profile_destroy(profile_h);
1256
1257         return 1;
1258 }
1259
1260 int test_open_profile(void)
1261 {
1262         connection_profile_h profile;
1263
1264         printf("\n** Choose a profile to open. **\n");
1265
1266         if (test_get_user_selected_profile(&profile, true) == false)
1267                 return -1;
1268
1269         if (connection_open_profile(connection, profile, test_connection_opened_callback, NULL) != CONNECTION_ERROR_NONE) {
1270                 printf("Connection open Failed!!\n");
1271                 return -1;
1272         }
1273
1274         return 1;
1275 }
1276
1277 int test_get_default_cellular_service_type(void)
1278 {
1279         int input;
1280         int rv;
1281         int service_type;
1282         connection_profile_h profile;
1283         char *profile_name = NULL;
1284
1285         rv = test_get_user_int("Input profile type to get"
1286                         "(1:Internet, 2:MMS, 3:Prepaid internet, 4:Prepaid MMS, 5:Tethering, 6:Application):", &input);
1287
1288         if (rv == false) {
1289                 printf("Invalid input!!\n");
1290                 return -1;
1291         }
1292
1293         switch (input) {
1294         case 1:
1295                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_INTERNET;
1296                 break;
1297         case 2:
1298                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_MMS;
1299                 break;
1300         case 3:
1301                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_INTERNET;
1302                 break;
1303         case 4:
1304                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_MMS;
1305                 break;
1306         case 5:
1307                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_TETHERING;
1308                 break;
1309         case 6:
1310                 service_type =  CONNECTION_CELLULAR_SERVICE_TYPE_APPLICATION;
1311                 break;
1312         default:
1313                 printf("Wrong number!!\n");
1314                 return -1;
1315         }
1316
1317         if (connection_get_default_cellular_service_profile(connection, service_type, &profile) != CONNECTION_ERROR_NONE)
1318                 return -1;
1319
1320         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1321                 printf("Fail to get profile name\n");
1322                 connection_profile_destroy(profile);
1323                 return -1;
1324         }
1325         printf("Default profile name : %s\n", profile_name);
1326         g_free(profile_name);
1327
1328         connection_profile_destroy(profile);
1329
1330         return 1;
1331 }
1332
1333 int test_set_default_cellular_service_type(void)
1334 {
1335         connection_profile_h profile;
1336         connection_cellular_service_type_e type;
1337         int input, rv;
1338
1339         rv = test_get_user_int("Input API type (1:sync, 2:async)", &input);
1340
1341         if (rv == false || (input != 1 && input != 2)) {
1342                 printf("Invalid input!!\n");
1343                 return -1;
1344         }
1345
1346         printf("\n** Choose a profile to set default service(internet or prepaid internet type only). **\n");
1347
1348         if (test_get_user_selected_profile(&profile, true) == false)
1349                 return -1;
1350
1351         if (connection_profile_get_cellular_service_type(profile, &type) != CONNECTION_ERROR_NONE) {
1352                 printf("Fail to get cellular service type\n");
1353                 return -1;
1354         }
1355
1356         if (input == 1) {
1357                 if (connection_set_default_cellular_service_profile(connection, type, profile) != CONNECTION_ERROR_NONE)
1358                         return -1;
1359         } else {
1360                 if (connection_set_default_cellular_service_profile_async(connection,
1361                                 type, profile, test_connection_set_default_callback, NULL) != CONNECTION_ERROR_NONE)
1362                         return -1;
1363         }
1364
1365         return 1;
1366 }
1367
1368 int test_close_profile(void)
1369 {
1370         connection_profile_h profile;
1371
1372         printf("\n** Choose a profile to close. **\n");
1373
1374         if (test_get_user_selected_profile(&profile, true) == false)
1375                 return -1;
1376
1377         if (connection_close_profile(connection, profile, test_connection_closed_callback, NULL) != CONNECTION_ERROR_NONE) {
1378                 printf("Connection close Failed!!\n");
1379                 return -1;
1380         }
1381
1382         return 1;
1383 }
1384
1385 int test_add_profile(void)
1386 {
1387         int rv = 0;
1388         connection_profile_h profile;
1389         char input_str[100] = {0,};
1390
1391         if (test_get_user_string("Input Keyword - (Enter for skip) :", input_str, 100) == false)
1392                 return -1;
1393
1394         g_strstrip(input_str);
1395         rv = connection_profile_create(CONNECTION_PROFILE_TYPE_CELLULAR, input_str, &profile);
1396         if (rv != CONNECTION_ERROR_NONE)
1397                 RETURN_FAIL_DESTROY(profile);
1398
1399         if (test_update_cellular_info(profile) == -1)
1400                 RETURN_FAIL_DESTROY(profile);
1401
1402         rv = connection_add_profile(connection, profile);
1403         if (rv != CONNECTION_ERROR_NONE)
1404                 RETURN_FAIL_DESTROY(profile);
1405
1406         connection_profile_destroy(profile);
1407         return 1;
1408 }
1409
1410 int test_remove_profile(void)
1411 {
1412         connection_profile_h profile;
1413
1414         printf("\n** Choose a profile to remove. **\n");
1415         if (test_get_user_selected_profile(&profile, true) == false)
1416                 return -1;
1417
1418         if (connection_remove_profile(connection, profile) != CONNECTION_ERROR_NONE) {
1419                 printf("Remove profile Failed!!\n");
1420                 return -1;
1421         }
1422
1423         return 1;
1424 }
1425
1426 int test_update_profile(void)
1427 {
1428         int rv = 0;
1429
1430         connection_profile_type_e prof_type;
1431         connection_profile_h profile;
1432
1433         printf("\n** Choose a profile to update. **\n");
1434         if (test_get_user_selected_profile(&profile, true) == false)
1435                 return -1;
1436
1437         if (connection_profile_get_type(profile, &prof_type) != CONNECTION_ERROR_NONE)
1438                 return -1;
1439
1440         switch (prof_type) {
1441         case CONNECTION_PROFILE_TYPE_CELLULAR:
1442                 if (test_update_cellular_info(profile) == -1)
1443                         return -1;
1444
1445                 break;
1446         case CONNECTION_PROFILE_TYPE_WIFI:
1447                 if (test_update_wifi_info(profile) == -1)
1448                         return -1;
1449
1450                 if (test_update_network_info(profile) == -1)
1451                         return -1;
1452
1453                 break;
1454         case CONNECTION_PROFILE_TYPE_ETHERNET:
1455                 if (test_update_network_info(profile) == -1)
1456                         return -1;
1457                 break;
1458
1459         case CONNECTION_PROFILE_TYPE_BT:
1460                 printf("Not supported!\n");
1461                 /* fall through */
1462         default:
1463                 return -1;
1464         }
1465
1466         rv = connection_update_profile(connection, profile);
1467         if (rv != CONNECTION_ERROR_NONE)
1468                 return -1;
1469
1470         return 1;
1471 }
1472
1473 int test_get_profile_info(void)
1474 {
1475         connection_profile_type_e prof_type;
1476         connection_profile_state_e profile_state;
1477         connection_profile_state_e profile_ipv6_state;
1478         connection_profile_h profile;
1479         char *profile_name = NULL;
1480         int address_family = 0;
1481
1482         printf("\n** Choose a profile to print. **\n");
1483         if (test_get_user_selected_profile(&profile, true) == false)
1484                 return -1;
1485
1486         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1487                 printf("Fail to get profile name\n");
1488                 return -1;
1489         } else {
1490                 printf("Profile Name : %s\n", profile_name);
1491                 g_free(profile_name);
1492         }
1493
1494         if (connection_profile_get_state(profile, &profile_state) != CONNECTION_ERROR_NONE) {
1495                 printf("Fail to get profile IPv4 state\n");
1496                 return -1;
1497         } else
1498                 printf("Profile State : %s\n", test_print_state(profile_state));
1499
1500         if (connection_profile_get_ipv6_state(profile, &profile_ipv6_state) != CONNECTION_ERROR_NONE) {
1501                 printf("Fail to get profile IPv6 state\n");
1502                 return -1;
1503         } else
1504                 printf("Profile IPv6 State : %s\n", test_print_state(profile_ipv6_state));
1505
1506
1507         if (connection_profile_get_type(profile, &prof_type) != CONNECTION_ERROR_NONE)
1508                 return -1;
1509
1510         test_get_user_int("Input Address Family (0:IPv4 1:IPv6) :", &address_family);
1511
1512         switch (prof_type) {
1513         case CONNECTION_PROFILE_TYPE_CELLULAR:
1514                 printf("Profile Type : Cellular\n");
1515                 test_print_cellular_info(profile);
1516                 break;
1517         case CONNECTION_PROFILE_TYPE_WIFI:
1518                 printf("Profile Type : Wi-Fi\n");
1519                 test_print_wifi_info(profile);
1520                 break;
1521         case CONNECTION_PROFILE_TYPE_ETHERNET:
1522                 printf("Profile Type : Ethernet\n");
1523                 break;
1524         case CONNECTION_PROFILE_TYPE_BT:
1525                 printf("Profile Type : Bluetooth\n");
1526                 break;
1527         default:
1528                 return -1;
1529         }
1530
1531         test_print_network_info(profile, address_family);
1532
1533         return 1;
1534 }
1535
1536 int test_refresh_profile_info(void)
1537 {
1538         connection_profile_type_e prof_type;
1539         connection_profile_state_e profile_state;
1540         connection_profile_h profile;
1541         char *profile_name = NULL;
1542         int address_family = 0;
1543
1544         printf("\n** Choose a profile to refresh. **\n");
1545         if (test_get_user_selected_profile(&profile, true) == false)
1546                 return -1;
1547
1548         if (connection_profile_refresh(profile) != CONNECTION_ERROR_NONE)
1549                 return -1;
1550
1551         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1552                 printf("Fail to get profile name\n");
1553                 return -1;
1554         } else {
1555                 printf("Profile Name : %s\n", profile_name);
1556                 g_free(profile_name);
1557         }
1558
1559         if (connection_profile_get_state(profile, &profile_state) != CONNECTION_ERROR_NONE) {
1560                 printf("Fail to get profile state\n");
1561                 return -1;
1562         } else
1563                 printf("Profile State : %s\n", test_print_state(profile_state));
1564
1565
1566         if (connection_profile_get_type(profile, &prof_type) != CONNECTION_ERROR_NONE)
1567                 return -1;
1568
1569         test_get_user_int("Input Address Family (0:IPv4 1:IPv6) :", &address_family);
1570
1571         switch (prof_type) {
1572         case CONNECTION_PROFILE_TYPE_CELLULAR:
1573                 printf("Profile Type : Cellular\n");
1574                 test_print_cellular_info(profile);
1575                 break;
1576         case CONNECTION_PROFILE_TYPE_WIFI:
1577                 printf("Profile Type : Wi-Fi\n");
1578                 test_print_wifi_info(profile);
1579                 break;
1580         case CONNECTION_PROFILE_TYPE_ETHERNET:
1581                 printf("Profile Type : Ethernet\n");
1582                 break;
1583         case CONNECTION_PROFILE_TYPE_BT:
1584                 printf("Profile Type : Bluetooth\n");
1585                 break;
1586         default:
1587                 return -1;
1588         }
1589
1590         test_print_network_info(profile, address_family);
1591
1592         return 1;
1593 }
1594
1595 int test_set_state_changed_callback()
1596 {
1597         connection_profile_h profile;
1598         connection_profile_h profile_clone;
1599
1600         printf("\n** Choose a profile to set callback. **\n");
1601         if (test_get_user_selected_profile(&profile, true) == false)
1602                 return -1;
1603
1604         if (connection_profile_clone(&profile_clone, profile) != CONNECTION_ERROR_NONE)
1605                 return -1;
1606
1607         if (connection_profile_set_state_changed_cb(profile,
1608                         test_profile_state_callback, profile_clone) != CONNECTION_ERROR_NONE) {
1609                 connection_profile_destroy(profile_clone);
1610                 return -1;
1611         }
1612
1613         state_cb_list = g_slist_append(state_cb_list, profile_clone);
1614
1615         return 1;
1616 }
1617
1618 int test_unset_state_changed_callback()
1619 {
1620         connection_profile_h profile;
1621         GSList *list;
1622         char *profile_name = NULL;
1623         int count = 0;
1624         int input = 0;
1625
1626         printf("\n** Choose a profile to unset callback. **\n");
1627         for (list = state_cb_list; list; list = list->next) {
1628                 profile = list->data;
1629                 if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1630                         printf("Fail to get profile name!\n");
1631                         return -1;
1632                 } else {
1633                         printf("%d. %s\n", count, profile_name);
1634                         g_free(profile_name);
1635                 }
1636
1637                 count++;
1638         }
1639
1640         if (test_get_user_int("Input profile number(Enter for cancel) :", &input) == false ||
1641             input >= count ||
1642             input < 0) {
1643                 printf("Wrong number!!\n");
1644                 return -1;
1645         }
1646
1647         count = 0;
1648         for (list = state_cb_list; list; list = list->next) {
1649                 if (count == input) {
1650                         profile = list->data;
1651                         goto unset;
1652                 }
1653
1654                 count++;
1655         }
1656
1657         return -1;
1658
1659 unset:
1660         if (connection_profile_unset_state_changed_cb(profile) != CONNECTION_ERROR_NONE)
1661                 return -1;
1662
1663         state_cb_list = g_slist_remove(state_cb_list, profile);
1664         connection_profile_destroy(profile);
1665
1666         return 1;
1667 }
1668
1669 int test_reset_call_statistics_info(void)
1670 {
1671         int ret = CONNECTION_ERROR_NONE;
1672
1673         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA);
1674         printf("reset last recv data size [%d]\n", ret);
1675         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA);
1676         printf("last sent data size [%d]\n", ret);
1677         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA);
1678         printf("total received data size [%d]\n", ret);
1679         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA);
1680         printf("total sent data size [%d]\n", ret);
1681
1682         return 1;
1683 }
1684
1685 int test_reset_wifi_call_statistics_info(void)
1686 {
1687         int ret = CONNECTION_ERROR_NONE;
1688
1689         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA);
1690         printf("WiFi last sent data size [%d]\n", ret);
1691         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA);
1692         printf("WiFi last recv data size [%d]\n", ret);
1693         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA);
1694         printf("WiFi total sent data size [%d]\n", ret);
1695         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA);
1696         printf("WiFi total received data size [%d]\n", ret);
1697
1698         return 1;
1699 }
1700
1701 int test_add_route(void)
1702 {
1703         int rv = 0;
1704         char ip_addr[100] = {0};
1705         char if_name[40] = {0};
1706
1707         if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1708                 return -1;
1709
1710         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1711                 return -1;
1712
1713         g_strstrip(ip_addr);
1714         g_strstrip(if_name);
1715         rv = connection_add_route(connection, if_name, ip_addr);
1716         if (rv != CONNECTION_ERROR_NONE) {
1717                 printf("Fail to get add new route [%d]\n", rv);
1718                 return -1;
1719         }
1720         printf("Add Route successfully\n");
1721
1722         return 1;
1723 }
1724
1725 int test_remove_route(void)
1726 {
1727         int rv = 0;
1728         char ip_addr[100] = {0};
1729         char if_name[40] = {0};
1730
1731         if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1732                 return -1;
1733
1734         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1735                 return -1;
1736
1737         g_strstrip(ip_addr);
1738         g_strstrip(if_name);
1739         rv = connection_remove_route(connection, if_name, ip_addr);
1740         if (rv != CONNECTION_ERROR_NONE) {
1741                 printf("Fail to remove the route [%s]\n", test_print_error(rv));
1742                 return -1;
1743         }
1744         printf("Remove Route successfully\n");
1745
1746         return 1;
1747 }
1748
1749 int test_add_route_ipv6(void)
1750 {
1751         int rv = 0;
1752         char ip_addr[100] = {0};
1753         char gateway[100] = {0};
1754         char if_name[40] = {0};
1755
1756         if (test_get_user_string("Input IPv6 - (Enter for skip) :", ip_addr, 100) == false)
1757                 return -1;
1758
1759         if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1760                 return -1;
1761
1762         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1763                 return -1;
1764
1765         g_strstrip(ip_addr);
1766         g_strstrip(gateway);
1767         g_strstrip(if_name);
1768         rv = connection_add_route_ipv6(connection, if_name, ip_addr, gateway);
1769         if (rv != CONNECTION_ERROR_NONE) {
1770                 printf("Fail to get add new route [%d]\n", rv);
1771                 return -1;
1772         }
1773         printf("Add Route successfully\n");
1774
1775         return 1;
1776 }
1777
1778 int test_remove_route_ipv6(void)
1779 {
1780         int rv = 0;
1781         char ip_addr[100] = {0};
1782         char gateway[100] = {0};
1783         char if_name[40] = {0};
1784
1785         if (test_get_user_string("Input IPv6 - (Enter for skip) :", ip_addr, 100) == false)
1786                 return -1;
1787
1788         if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1789                 return -1;
1790
1791         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1792                 return -1;
1793
1794         g_strstrip(ip_addr);
1795         g_strstrip(gateway);
1796         g_strstrip(if_name);
1797         rv = connection_remove_route_ipv6(connection, if_name, ip_addr, gateway);
1798         if (rv != CONNECTION_ERROR_NONE) {
1799                 printf("Fail to remove the route [%d]\n", rv);
1800                 return -1;
1801         }
1802         printf("Remove Route successfully\n");
1803
1804         return 1;
1805 }
1806
1807 int test_get_bt_state(void)
1808 {
1809         int rv = 0;
1810         connection_bt_state_e bt_state;
1811
1812         rv = connection_get_bt_state(connection, &bt_state);
1813
1814         if (rv != CONNECTION_ERROR_NONE) {
1815                 printf("Fail to get Bluetooth state [%s]\n", test_print_error(rv));
1816                 return -1;
1817         }
1818
1819         printf("Retval = [%s], Bluetooth state [%d]\n", test_print_error(rv), bt_state);
1820
1821         return 1;
1822 }
1823
1824 int test_get_profile_id(void)
1825 {
1826         connection_profile_h profile;
1827         char *profile_id;
1828
1829         printf("\n** Choose a profile to see profile id. **\n");
1830         if (test_get_user_selected_profile(&profile, true) == false)
1831                 return -1;
1832
1833         if (connection_profile_get_id(profile, &profile_id) != CONNECTION_ERROR_NONE) {
1834                 printf("Fail to get profile name\n");
1835                 return -1;
1836         } else {
1837                 printf("Profile id : %s\n", profile_id);
1838                 g_free(profile_id);
1839         }
1840
1841         return 1;
1842 }
1843
1844 int test_get_mac_address(void)
1845 {
1846         int rv = 0, type = 0;
1847         connection_type_e conn_type;
1848         char *mac_addr = NULL;
1849
1850         test_get_user_int("Input connection type (1:wifi, 2:ethernet)", &type);
1851
1852         switch (type) {
1853         case 1:
1854                 conn_type = CONNECTION_TYPE_WIFI;
1855                 break;
1856         case 2:
1857                 conn_type = CONNECTION_TYPE_ETHERNET;
1858                 break;
1859         default:
1860                 printf("Wrong number!!\n");
1861                 return -1;
1862         }
1863
1864         rv = connection_get_mac_address(connection, conn_type, &mac_addr);
1865
1866         if (rv != CONNECTION_ERROR_NONE) {
1867                 printf("Fail to get MAC address [%s]\n", test_print_error(rv));
1868                 return -1;
1869         }
1870
1871         printf("mac address is %s\n", mac_addr);
1872
1873         g_free(mac_addr);
1874
1875         return 1;
1876 }
1877
1878 int test_get_ethernet_cable_state(void)
1879 {
1880         int rv = 0;
1881         connection_ethernet_cable_state_e cable_state;
1882
1883         rv = connection_get_ethernet_cable_state(connection, &cable_state);
1884
1885         if (rv != CONNECTION_ERROR_NONE) {
1886                 printf("Fail to get ethernet cable state [%s]\n", test_print_error(rv));
1887                 return -1;
1888         }
1889
1890         printf("Retval = [%s], Ethernet cable state [%d]\n", test_print_error(rv), cable_state);
1891
1892         return 1;
1893 }
1894
1895 int test_reset_profile(void)
1896 {
1897         int type, sim_id, rv;
1898
1899         rv = test_get_user_int("Input reset type (0:default profile reset, 1:delete profile reset)", &type);
1900
1901         if (rv == false || (type != 0 && type != 1)) {
1902                 printf("Invalid input!!\n");
1903                 return -1;
1904         }
1905
1906         rv = test_get_user_int("Input SIM id to reset (0:SIM1, 1:SIM2)", &sim_id);
1907
1908         if (rv == false || (sim_id != 0 && sim_id != 1)) {
1909                 printf("Invalid input!!\n");
1910                 return -1;
1911         }
1912
1913         if (connection_reset_profile(connection, type, sim_id, test_connection_reset_profile_callback, NULL) != CONNECTION_ERROR_NONE)
1914                 return -1;
1915
1916         return 1;
1917 }
1918
1919 static bool test_get_ipv6_address_callback(char *ipv6_address, void* user_data)
1920 {
1921         printf("IPv6 Address : %s\n", ipv6_address);
1922         return true;
1923 }
1924
1925 int test_foreach_ipv6_address(void)
1926 {
1927         int rv = 0;
1928         int type;
1929         connection_type_e conn_type;
1930
1931         test_get_user_int("Input Connection Type(1: WiFi 2: Ethernet) :", &type);
1932
1933         switch (type) {
1934         case 1:
1935                 conn_type = CONNECTION_TYPE_WIFI;
1936                 break;
1937         case 2:
1938                 conn_type = CONNECTION_TYPE_ETHERNET;
1939                 break;
1940         default:
1941                 printf("Wrong number!!\n");
1942                 return -1;
1943         }
1944
1945         rv = connection_foreach_ipv6_address(connection, conn_type, test_get_ipv6_address_callback, NULL);
1946         if (rv != CONNECTION_ERROR_NONE) {
1947                 printf("Fail to get IPv6 address\n");
1948                 return -1;
1949         }
1950
1951         return 1;
1952 }
1953
1954
1955 int main(int argc, char **argv)
1956 {
1957         GMainLoop *mainloop;
1958         mainloop = g_main_loop_new(NULL, FALSE);
1959
1960         GIOChannel *channel = g_io_channel_unix_new(0);
1961         g_io_add_watch(channel, (G_IO_IN|G_IO_ERR|G_IO_HUP|G_IO_NVAL), test_thread, NULL);
1962
1963         printf("Test Thread created...\n");
1964
1965         g_main_loop_run(mainloop);
1966
1967         return 0;
1968 }
1969
1970 gboolean test_thread(GIOChannel *source, GIOCondition condition, gpointer data)
1971 {
1972         int rv = 0;
1973         char a[100];
1974
1975         memset(a, '\0', 100);
1976         printf("Event received from stdin\n");
1977
1978         rv = read(0, a, 100);
1979
1980         if (rv < 0 || a[0] == '0') {
1981                 if (connection != NULL)
1982                         test_deregister_client();
1983
1984                 exit(1);
1985         }
1986
1987         if (*a == '\n' || *a == '\r') {
1988                 printf("\n\n Network Connection API Test App\n\n");
1989                 printf("Options..\n");
1990                 printf(LOG_GREEN "1   - Create Handle and set callbacks\n" LOG_END);
1991                 printf("2   - Destroy Handle(unset callbacks automatically)\n");
1992                 printf(LOG_GREEN "3   - Get network state\n" LOG_END);
1993                 printf(LOG_GREEN "4   - Get cellular state (please insert SIM Card)\n" LOG_END);
1994                 printf(LOG_GREEN "5   - Get wifi state (please turn on WiFi)\n" LOG_END);
1995                 printf("6   - Get current proxy address \n");
1996                 printf("7   - Get current Ip address\n");
1997                 printf("8   - Get cellular data call statistics\n");
1998                 printf("9   - Get WiFi data call statistics\n");
1999                 printf(LOG_GREEN "a   - Get Profile list\n" LOG_END);
2000                 printf(LOG_GREEN "b   - Get Connected Profile list\n" LOG_END);
2001                 printf(LOG_GREEN "c   - Get Current profile\n" LOG_END);
2002                 printf("d   - Open connection with profile\n");
2003                 printf("e   - Get default cellular service by type\n");
2004                 printf("f   - Set default cellular service by type\n");
2005                 printf("g   - Close connection with profile\n");
2006                 printf("h   - Add profile(Cellular and Wifi only)\n");
2007                 printf("i   - Remove profile(Cellular:delete, WiFi:forgot)\n");
2008                 printf("j   - Update profile\n");
2009                 printf("k   - Get profile info\n");
2010                 printf("l   - Refresh profile info\n");
2011                 printf("m   - Set state changed callback\n");
2012                 printf("n   - Unset state changed callback\n");
2013                 printf("o   - Reset cellular data call statistics\n");
2014                 printf("p   - Reset WiFi data call statistics\n");
2015                 printf("q   - Add new route\n");
2016                 printf("r   - Remove a route\n");
2017                 printf("s   - Get Bluetooth state\n");
2018                 printf("t   - Get profile id\n");
2019                 printf("u   - Reset profile\n");
2020                 printf("v   - Get all cellular default profiles\n");
2021                 printf("w   - Get mac address\n");
2022                 printf("x   - Get ethernet cable state\n");
2023                 printf("B   - Add IPv6 new route\n");
2024                 printf("C   - Remove IPv6 route\n");
2025                 printf("D   - Get IPv6 address\n");
2026                 printf(LOG_RED "0   - Exit \n" LOG_END);
2027                 printf("ENTER   - Show options menu.......\n");
2028         }
2029
2030         switch (a[0]) {
2031         case '1':
2032                 rv = test_register_client();
2033                 break;
2034         case '2':
2035                 rv = test_deregister_client();
2036                 break;
2037         case '3':
2038                 rv = test_get_network_state();
2039                 break;
2040         case '4':
2041                 rv = test_get_cellular_state();
2042                 break;
2043         case '5':
2044                 rv = test_get_wifi_state();
2045                 break;
2046         case '6':
2047                 rv = test_get_current_proxy();
2048                 break;
2049         case '7':
2050                 rv = test_get_current_ip();
2051                 break;
2052         case '8':
2053                 rv = test_get_call_statistics_info();
2054                 break;
2055         case '9':
2056                 rv = test_get_wifi_call_statistics_info();
2057                 break;
2058         case 'a':
2059                 rv = test_get_profile_list();
2060                 break;
2061         case 'b':
2062                 rv = test_get_connected_profile_list();
2063                 break;
2064         case 'c':
2065                 rv = test_get_current_profile();
2066                 break;
2067         case 'd':
2068                 rv = test_open_profile();
2069                 break;
2070         case 'e':
2071                 rv = test_get_default_cellular_service_type();
2072                 break;
2073         case 'f':
2074                 rv = test_set_default_cellular_service_type();
2075                 break;
2076         case 'g':
2077                 rv = test_close_profile();
2078                 break;
2079         case 'h':
2080                 rv = test_add_profile();
2081                 break;
2082         case 'i':
2083                 rv = test_remove_profile();
2084                 break;
2085         case 'j':
2086                 rv = test_update_profile();
2087                 break;
2088         case 'k':
2089                 rv = test_get_profile_info();
2090                 break;
2091         case 'l':
2092                 rv = test_refresh_profile_info();
2093                 break;
2094         case 'm':
2095                 rv = test_set_state_changed_callback();
2096                 break;
2097         case 'n':
2098                 rv = test_unset_state_changed_callback();
2099                 break;
2100         case 'o':
2101                 rv = test_reset_call_statistics_info();
2102                 break;
2103         case 'p':
2104                 rv = test_reset_wifi_call_statistics_info();
2105                 break;
2106         case 'q':
2107                 rv = test_add_route();
2108                 break;
2109         case 'r':
2110                 rv = test_remove_route();
2111                 break;
2112         case 's':
2113                 rv = test_get_bt_state();
2114                 break;
2115         case 't':
2116                 rv = test_get_profile_id();
2117                 break;
2118         case 'u':
2119                 rv = test_reset_profile();
2120                 break;
2121         case 'v':
2122                 rv = test_get_default_profile_list();
2123                 break;
2124         case 'w':
2125                 rv = test_get_mac_address();
2126                 break;
2127         case 'x':
2128                 rv = test_get_ethernet_cable_state();
2129                 break;
2130         case 'B':
2131                 rv = test_add_route_ipv6();
2132                 break;
2133         case 'C':
2134                 rv = test_remove_route_ipv6();
2135                 break;
2136         case 'D':
2137                 rv = test_foreach_ipv6_address();
2138                 break;
2139         }
2140
2141         if (rv == 1)
2142                 printf("Operation succeeded!\n");
2143         else
2144                 printf("Operation failed!\n");
2145
2146         return TRUE;
2147 }