262ed29d02c76dce3a60c2fee55f805119f74fe3
[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 *dhcp_server = NULL;
863         char *dns1 = NULL;
864         char *dns2 = NULL;
865         char *proxy = NULL;
866         int prefix_len;
867         connection_ip_config_type_e ip_type;
868         connection_proxy_type_e proxy_type;
869         connection_dns_config_type_e dns_type;
870
871         if (connection_profile_get_network_interface_name(profile, &interface_name) != CONNECTION_ERROR_NONE)
872                 printf("Fail to get interface name!\n");
873         else {
874                 printf("Interface name : %s\n", interface_name);
875                 g_free(interface_name);
876         }
877
878         if (connection_profile_get_ip_config_type(profile, address_family, &ip_type) != CONNECTION_ERROR_NONE)
879                 printf("Fail to get ipconfig type!\n");
880         else
881                 printf("Ipconfig type : %d\n", ip_type);
882
883         if (connection_profile_get_ip_address(profile, address_family, &ip) != CONNECTION_ERROR_NONE)
884                 printf("Fail to get IP address!\n");
885         else {
886                 printf("IP address : %s\n", ip);
887                 g_free(ip);
888         }
889
890         if (connection_profile_get_gateway_address(profile, address_family, &gateway) != CONNECTION_ERROR_NONE)
891                 printf("Fail to get gateway!\n");
892         else {
893                 printf("Gateway : %s\n", gateway);
894                 g_free(gateway);
895         }
896
897         if (connection_profile_get_dhcp_server_address(profile, address_family, &dhcp_server) != CONNECTION_ERROR_NONE)
898                 printf("Fail to get DHCP Server address!\n");
899         else {
900                 printf("DHCP Server : %s\n", dhcp_server);
901                 g_free(dhcp_server);
902         }
903
904         if (connection_profile_get_subnet_mask(profile, address_family, &subnet) != CONNECTION_ERROR_NONE)
905                 printf("Fail to get subnet mask!\n");
906         else {
907                 printf("Subnet mask : %s\n", subnet);
908                 g_free(subnet);
909         }
910
911         if (connection_profile_get_prefix_length(profile, address_family, &prefix_len) != CONNECTION_ERROR_NONE)
912                 printf("Fail to get prefix length!\n");
913         else
914                 printf("Prefix length : %d\n", prefix_len);
915
916         if (connection_profile_get_dns_config_type(profile, address_family, &dns_type) != CONNECTION_ERROR_NONE)
917                 printf("Fail to get DNS configuration type!\n");
918         else
919                 printf("DNS configuration type : %d\n", dns_type);
920
921         if (connection_profile_get_dns_address(profile, 1, address_family, &dns1) != CONNECTION_ERROR_NONE)
922                 printf("Fail to get DNS1!\n");
923         else {
924                 printf("DNS1 : %s\n", dns1);
925                 g_free(dns1);
926         }
927
928         if (connection_profile_get_dns_address(profile, 2, address_family, &dns2) != CONNECTION_ERROR_NONE)
929                 printf("Fail to get DNS2!\n");
930         else {
931                 printf("DNS2 : %s\n", dns2);
932                 g_free(dns2);
933         }
934
935         if (connection_profile_get_proxy_type(profile, &proxy_type) != CONNECTION_ERROR_NONE)
936                 printf("Fail to get proxy type!\n");
937         else
938                 printf("Proxy type : %d\n", proxy_type);
939
940         if (connection_profile_get_proxy_address(profile, address_family, &proxy) != CONNECTION_ERROR_NONE)
941                 printf("Fail to get proxy!\n");
942         else {
943                 printf("Proxy : %s\n", proxy);
944                 g_free(proxy);
945         }
946 }
947
948 int test_register_client(void)
949 {
950
951         int err = connection_create(&connection);
952
953         if (CONNECTION_ERROR_NONE == err) {
954                 connection_set_type_changed_cb(connection, test_type_changed_callback, NULL);
955                 connection_set_ip_address_changed_cb(connection, test_ip_changed_callback, NULL);
956                 connection_set_proxy_address_changed_cb(connection, test_proxy_changed_callback, NULL);
957                 connection_set_ethernet_cable_state_chaged_cb(connection,
958                                         test_get_ethernet_cable_state_callback, NULL);
959         } else {
960                 printf("Client registration failed [%s]\n", test_print_error(err));
961                 return -1;
962         }
963
964         printf("Client registration success\n");
965         return 1;
966 }
967
968 int  test_deregister_client(void)
969 {
970         int rv = 0;
971         GSList *list;
972         connection_profile_h profile;
973
974         if (connection != NULL)
975                 rv = connection_destroy(connection);
976         else {
977                 printf("Cannot deregister : Handle is NULL\n");
978                 rv = CONNECTION_ERROR_INVALID_OPERATION;
979         }
980
981         if (rv != CONNECTION_ERROR_NONE) {
982                 printf("Client deregistration fail [%s]\n", test_print_error(rv));
983                 return -1;
984         }
985
986         if (state_cb_list) {
987                 for (list = state_cb_list; list; list = list->next) {
988                         profile = list->data;
989                         connection_profile_destroy(profile);
990                 }
991
992                 g_slist_free(state_cb_list);
993                 state_cb_list = NULL;
994         }
995
996         connection = NULL;
997         printf("Client deregistration success\n");
998
999         return 1;
1000 }
1001
1002 int test_get_network_state(void)
1003 {
1004         int rv = 0;
1005         connection_type_e net_state;
1006
1007         rv = connection_get_type(connection, &net_state);
1008
1009         if (rv != CONNECTION_ERROR_NONE) {
1010                 printf("Fail to get network state [%s]\n", test_print_error(rv));
1011                 return -1;
1012         }
1013
1014         printf("Retval = [%s] network connection state [%s]\n",
1015                 test_print_error(rv), test_print_connection_type(net_state));
1016
1017         return 1;
1018 }
1019
1020 int test_get_cellular_state(void)
1021 {
1022         int rv = 0;
1023         connection_cellular_state_e cellular_state;
1024
1025         rv = connection_get_cellular_state(connection, &cellular_state);
1026
1027         if (rv != CONNECTION_ERROR_NONE) {
1028                 printf("Fail to get Cellular state [%s]\n", test_print_error(rv));
1029                 return -1;
1030         }
1031
1032         printf("Retval = [%s] Cellular state [%s]\n",
1033                 test_print_error(rv), test_print_cellular_state(cellular_state));
1034
1035         return 1;
1036 }
1037
1038 int test_get_wifi_state(void)
1039 {
1040         int rv = 0;
1041         connection_wifi_state_e wifi_state;
1042
1043         rv = connection_get_wifi_state(connection, &wifi_state);
1044
1045         if (rv != CONNECTION_ERROR_NONE) {
1046                 printf("Fail to get WiFi state [%s]\n", test_print_error(rv));
1047                 return -1;
1048         }
1049
1050         printf("Retval = [%s] WiFi state [%s]\n",
1051                 test_print_error(rv), test_print_wifi_state(wifi_state));
1052
1053         return 1;
1054 }
1055
1056 int test_get_current_proxy(void)
1057 {
1058         char *proxy_addr = NULL;
1059
1060         connection_get_proxy(connection, CONNECTION_ADDRESS_FAMILY_IPV4, &proxy_addr);
1061
1062         if (proxy_addr == NULL) {
1063                 printf("Proxy address does not exist\n");
1064                 return -1;
1065         }
1066
1067         printf("Current Proxy [%s]\n", proxy_addr);
1068         g_free(proxy_addr);
1069
1070         return 1;
1071 }
1072
1073 int test_get_current_ip(void)
1074 {
1075         char *ip_addr = NULL;
1076         int input;
1077         bool rv;
1078
1079         rv = test_get_user_int("Input Address type to get"
1080                 "(1:IPV4, 2:IPV6):", &input);
1081
1082         if (rv == false) {
1083                 printf("Invalid input!!\n");
1084                 return -1;
1085         }
1086
1087         switch (input) {
1088         case 1:
1089                 connection_get_ip_address(connection, CONNECTION_ADDRESS_FAMILY_IPV4, &ip_addr);
1090                 if (ip_addr == NULL) {
1091                         printf("IPv4 address does not exist\n");
1092                         return -1;
1093                 }
1094                 printf("IPv4 address : %s\n", ip_addr);
1095                 break;
1096
1097         case 2:
1098                 connection_get_ip_address(connection, CONNECTION_ADDRESS_FAMILY_IPV6, &ip_addr);
1099                 if (ip_addr == NULL) {
1100                         printf("IPv6 address does not exist\n");
1101                         return -1;
1102                 }
1103                 printf("IPv6 address : %s\n", ip_addr);
1104                 break;
1105         default:
1106                 printf("Wrong IP address family!!\n");
1107                 return -1;
1108         }
1109
1110         g_free(ip_addr);
1111         return 1;
1112 }
1113
1114 int test_get_call_statistics_info(void)
1115 {
1116         long long rv = 0;
1117
1118         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA, &rv);
1119         printf("last recv data size [%lld]\n", rv);
1120         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA, &rv);
1121         printf("last sent data size [%lld]\n", rv);
1122         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA, &rv);
1123         printf("total received data size [%lld]\n", rv);
1124         connection_get_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA, &rv);
1125         printf("total sent data size [%lld]\n", rv);
1126
1127         return 1;
1128 }
1129
1130 int test_get_wifi_call_statistics_info(void)
1131 {
1132         long long rv = 0;
1133
1134         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA, &rv);
1135         printf("WiFi last recv data size [%lld]\n", rv);
1136         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA, &rv);
1137         printf("WiFi last sent data size [%lld]\n", rv);
1138         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA, &rv);
1139         printf("WiFi total received data size [%lld]\n", rv);
1140         connection_get_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA, &rv);
1141         printf("WiFi total sent data size [%lld]\n", rv);
1142
1143         return 1;
1144 }
1145
1146 int test_get_profile_list(void)
1147 {
1148         if (test_get_user_selected_profile(NULL, false) == false)
1149                 return -1;
1150
1151         return 1;
1152 }
1153
1154 int test_get_default_profile_list(void)
1155 {
1156         int rv = 0;
1157         char *profile_name = NULL;
1158         connection_profile_iterator_h profile_iter;
1159         connection_profile_h profile_h;
1160         connection_cellular_service_type_e service_type;
1161         bool is_default = false;
1162
1163         rv = connection_get_profile_iterator(connection, CONNECTION_ITERATOR_TYPE_DEFAULT, &profile_iter);
1164         if (rv != CONNECTION_ERROR_NONE) {
1165                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
1166                 return -1;
1167         }
1168
1169         while (connection_profile_iterator_has_next(profile_iter)) {
1170                 if (connection_profile_iterator_next(profile_iter, &profile_h) != CONNECTION_ERROR_NONE) {
1171                         printf("Fail to get profile handle\n");
1172                         return -1;
1173                 }
1174
1175                 if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
1176                         printf("Fail to get profile name\n");
1177                         return -1;
1178                 }
1179                 printf("profile name : %s\n", profile_name);
1180                 g_free(profile_name);
1181
1182                 if (connection_profile_get_cellular_service_type(profile_h, &service_type) != CONNECTION_ERROR_NONE) {
1183                         printf("Fail to get profile service type\n");
1184                         return -1;
1185                 }
1186                 printf("service type : %d\n", service_type);
1187
1188                 if (connection_profile_is_cellular_default(profile_h, &is_default) != CONNECTION_ERROR_NONE) {
1189                         printf("Fail to get profile subscriber id\n");
1190                         return -1;
1191                 }
1192                 printf("Default : %d\n", is_default);
1193         }
1194
1195         return 1;
1196 }
1197
1198 int test_get_connected_profile_list(void)
1199 {
1200         int rv = 0;
1201         char *profile_name = NULL;
1202         connection_profile_iterator_h profile_iter;
1203         connection_profile_h profile_h;
1204         bool is_default = false;
1205         connection_profile_type_e type;
1206
1207         rv = connection_get_profile_iterator(connection, CONNECTION_ITERATOR_TYPE_CONNECTED, &profile_iter);
1208         if (rv != CONNECTION_ERROR_NONE) {
1209                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
1210                 return -1;
1211         }
1212
1213         while (connection_profile_iterator_has_next(profile_iter)) {
1214                 if (connection_profile_iterator_next(profile_iter, &profile_h) != CONNECTION_ERROR_NONE) {
1215                         printf("Fail to get profile handle\n");
1216                         return -1;
1217                 }
1218
1219                 if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
1220                         printf("Fail to get profile name\n");
1221                         return -1;
1222                 }
1223                 printf("profile name is %s\n", profile_name);
1224                 g_free(profile_name);
1225
1226                 if (connection_profile_get_type(profile_h, &type) != CONNECTION_ERROR_NONE) {
1227                         printf("Fail to get profile type\n");
1228                         return -1;
1229                 }
1230                 printf("profile type is %d\n", type);
1231
1232                 if (type == CONNECTION_PROFILE_TYPE_CELLULAR) {
1233                 if (connection_profile_is_cellular_default(profile_h, &is_default) != CONNECTION_ERROR_NONE) {
1234                         printf("Fail to get profile is default\n");
1235                         return -1;
1236                 }
1237                         printf("[%s]\n", is_default ? "default" : "not default");
1238                 }
1239         }
1240
1241         return 1;
1242 }
1243
1244 int test_get_current_profile(void)
1245 {
1246         int rv = 0;
1247         char *profile_name = NULL;
1248         connection_profile_h profile_h;
1249
1250         rv = connection_get_current_profile(connection, &profile_h);
1251         if (rv != CONNECTION_ERROR_NONE) {
1252                 printf("Fail to get profile iterator [%s]\n", test_print_error(rv));
1253                 return -1;
1254         }
1255
1256         if (connection_profile_get_name(profile_h, &profile_name) != CONNECTION_ERROR_NONE) {
1257                 printf("Fail to get profile name\n");
1258                 return -1;
1259         }
1260         printf("profile name : %s\n", profile_name);
1261         g_free(profile_name);
1262
1263         connection_profile_destroy(profile_h);
1264
1265         return 1;
1266 }
1267
1268 int test_open_profile(void)
1269 {
1270         connection_profile_h profile;
1271
1272         printf("\n** Choose a profile to open. **\n");
1273
1274         if (test_get_user_selected_profile(&profile, true) == false)
1275                 return -1;
1276
1277         if (connection_open_profile(connection, profile, test_connection_opened_callback, NULL) != CONNECTION_ERROR_NONE) {
1278                 printf("Connection open Failed!!\n");
1279                 return -1;
1280         }
1281
1282         return 1;
1283 }
1284
1285 int test_get_default_cellular_service_type(void)
1286 {
1287         int input;
1288         int rv;
1289         int service_type;
1290         connection_profile_h profile;
1291         char *profile_name = NULL;
1292
1293         rv = test_get_user_int("Input profile type to get"
1294                         "(1:Internet, 2:MMS, 3:Prepaid internet, 4:Prepaid MMS, 5:Tethering, 6:Application):", &input);
1295
1296         if (rv == false) {
1297                 printf("Invalid input!!\n");
1298                 return -1;
1299         }
1300
1301         switch (input) {
1302         case 1:
1303                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_INTERNET;
1304                 break;
1305         case 2:
1306                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_MMS;
1307                 break;
1308         case 3:
1309                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_INTERNET;
1310                 break;
1311         case 4:
1312                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_PREPAID_MMS;
1313                 break;
1314         case 5:
1315                 service_type = CONNECTION_CELLULAR_SERVICE_TYPE_TETHERING;
1316                 break;
1317         case 6:
1318                 service_type =  CONNECTION_CELLULAR_SERVICE_TYPE_APPLICATION;
1319                 break;
1320         default:
1321                 printf("Wrong number!!\n");
1322                 return -1;
1323         }
1324
1325         if (connection_get_default_cellular_service_profile(connection, service_type, &profile) != CONNECTION_ERROR_NONE)
1326                 return -1;
1327
1328         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1329                 printf("Fail to get profile name\n");
1330                 connection_profile_destroy(profile);
1331                 return -1;
1332         }
1333         printf("Default profile name : %s\n", profile_name);
1334         g_free(profile_name);
1335
1336         connection_profile_destroy(profile);
1337
1338         return 1;
1339 }
1340
1341 int test_set_default_cellular_service_type(void)
1342 {
1343         connection_profile_h profile;
1344         connection_cellular_service_type_e type;
1345         int input, rv;
1346
1347         rv = test_get_user_int("Input API type (1:sync, 2:async)", &input);
1348
1349         if (rv == false || (input != 1 && input != 2)) {
1350                 printf("Invalid input!!\n");
1351                 return -1;
1352         }
1353
1354         printf("\n** Choose a profile to set default service(internet or prepaid internet type only). **\n");
1355
1356         if (test_get_user_selected_profile(&profile, true) == false)
1357                 return -1;
1358
1359         if (connection_profile_get_cellular_service_type(profile, &type) != CONNECTION_ERROR_NONE) {
1360                 printf("Fail to get cellular service type\n");
1361                 return -1;
1362         }
1363
1364         if (input == 1) {
1365                 if (connection_set_default_cellular_service_profile(connection, type, profile) != CONNECTION_ERROR_NONE)
1366                         return -1;
1367         } else {
1368                 if (connection_set_default_cellular_service_profile_async(connection,
1369                                 type, profile, test_connection_set_default_callback, NULL) != CONNECTION_ERROR_NONE)
1370                         return -1;
1371         }
1372
1373         return 1;
1374 }
1375
1376 int test_close_profile(void)
1377 {
1378         connection_profile_h profile;
1379
1380         printf("\n** Choose a profile to close. **\n");
1381
1382         if (test_get_user_selected_profile(&profile, true) == false)
1383                 return -1;
1384
1385         if (connection_close_profile(connection, profile, test_connection_closed_callback, NULL) != CONNECTION_ERROR_NONE) {
1386                 printf("Connection close Failed!!\n");
1387                 return -1;
1388         }
1389
1390         return 1;
1391 }
1392
1393 int test_add_profile(void)
1394 {
1395         int rv = 0;
1396         connection_profile_h profile;
1397         char input_str[100] = {0,};
1398
1399         if (test_get_user_string("Input Keyword - (Enter for skip) :", input_str, 100) == false)
1400                 return -1;
1401
1402         g_strstrip(input_str);
1403         rv = connection_profile_create(CONNECTION_PROFILE_TYPE_CELLULAR, input_str, &profile);
1404         if (rv != CONNECTION_ERROR_NONE)
1405                 RETURN_FAIL_DESTROY(profile);
1406
1407         if (test_update_cellular_info(profile) == -1)
1408                 RETURN_FAIL_DESTROY(profile);
1409
1410         rv = connection_add_profile(connection, profile);
1411         if (rv != CONNECTION_ERROR_NONE)
1412                 RETURN_FAIL_DESTROY(profile);
1413
1414         connection_profile_destroy(profile);
1415         return 1;
1416 }
1417
1418 int test_remove_profile(void)
1419 {
1420         connection_profile_h profile;
1421
1422         printf("\n** Choose a profile to remove. **\n");
1423         if (test_get_user_selected_profile(&profile, true) == false)
1424                 return -1;
1425
1426         if (connection_remove_profile(connection, profile) != CONNECTION_ERROR_NONE) {
1427                 printf("Remove profile Failed!!\n");
1428                 return -1;
1429         }
1430
1431         return 1;
1432 }
1433
1434 int test_update_profile(void)
1435 {
1436         int rv = 0;
1437
1438         connection_profile_type_e prof_type;
1439         connection_profile_h profile;
1440
1441         printf("\n** Choose a profile to update. **\n");
1442         if (test_get_user_selected_profile(&profile, true) == false)
1443                 return -1;
1444
1445         if (connection_profile_get_type(profile, &prof_type) != CONNECTION_ERROR_NONE)
1446                 return -1;
1447
1448         switch (prof_type) {
1449         case CONNECTION_PROFILE_TYPE_CELLULAR:
1450                 if (test_update_cellular_info(profile) == -1)
1451                         return -1;
1452
1453                 break;
1454         case CONNECTION_PROFILE_TYPE_WIFI:
1455                 if (test_update_wifi_info(profile) == -1)
1456                         return -1;
1457
1458                 if (test_update_network_info(profile) == -1)
1459                         return -1;
1460
1461                 break;
1462         case CONNECTION_PROFILE_TYPE_ETHERNET:
1463                 if (test_update_network_info(profile) == -1)
1464                         return -1;
1465                 break;
1466
1467         case CONNECTION_PROFILE_TYPE_BT:
1468                 printf("Not supported!\n");
1469                 /* fall through */
1470         default:
1471                 return -1;
1472         }
1473
1474         rv = connection_update_profile(connection, profile);
1475         if (rv != CONNECTION_ERROR_NONE)
1476                 return -1;
1477
1478         return 1;
1479 }
1480
1481 int test_get_profile_info(void)
1482 {
1483         connection_profile_type_e prof_type;
1484         connection_profile_state_e profile_state;
1485         connection_profile_state_e profile_ipv6_state;
1486         connection_profile_h profile;
1487         char *profile_name = NULL;
1488         int address_family = 0;
1489
1490         printf("\n** Choose a profile to print. **\n");
1491         if (test_get_user_selected_profile(&profile, true) == false)
1492                 return -1;
1493
1494         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1495                 printf("Fail to get profile name\n");
1496                 return -1;
1497         } else {
1498                 printf("Profile Name : %s\n", profile_name);
1499                 g_free(profile_name);
1500         }
1501
1502         if (connection_profile_get_state(profile, &profile_state) != CONNECTION_ERROR_NONE) {
1503                 printf("Fail to get profile IPv4 state\n");
1504                 return -1;
1505         } else
1506                 printf("Profile State : %s\n", test_print_state(profile_state));
1507
1508         if (connection_profile_get_ipv6_state(profile, &profile_ipv6_state) != CONNECTION_ERROR_NONE) {
1509                 printf("Fail to get profile IPv6 state\n");
1510                 return -1;
1511         } else
1512                 printf("Profile IPv6 State : %s\n", test_print_state(profile_ipv6_state));
1513
1514
1515         if (connection_profile_get_type(profile, &prof_type) != CONNECTION_ERROR_NONE)
1516                 return -1;
1517
1518         test_get_user_int("Input Address Family (0:IPv4 1:IPv6) :", &address_family);
1519
1520         switch (prof_type) {
1521         case CONNECTION_PROFILE_TYPE_CELLULAR:
1522                 printf("Profile Type : Cellular\n");
1523                 test_print_cellular_info(profile);
1524                 break;
1525         case CONNECTION_PROFILE_TYPE_WIFI:
1526                 printf("Profile Type : Wi-Fi\n");
1527                 test_print_wifi_info(profile);
1528                 break;
1529         case CONNECTION_PROFILE_TYPE_ETHERNET:
1530                 printf("Profile Type : Ethernet\n");
1531                 break;
1532         case CONNECTION_PROFILE_TYPE_BT:
1533                 printf("Profile Type : Bluetooth\n");
1534                 break;
1535         default:
1536                 return -1;
1537         }
1538
1539         test_print_network_info(profile, address_family);
1540
1541         return 1;
1542 }
1543
1544 int test_refresh_profile_info(void)
1545 {
1546         connection_profile_type_e prof_type;
1547         connection_profile_state_e profile_state;
1548         connection_profile_h profile;
1549         char *profile_name = NULL;
1550         int address_family = 0;
1551
1552         printf("\n** Choose a profile to refresh. **\n");
1553         if (test_get_user_selected_profile(&profile, true) == false)
1554                 return -1;
1555
1556         if (connection_profile_refresh(profile) != CONNECTION_ERROR_NONE)
1557                 return -1;
1558
1559         if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1560                 printf("Fail to get profile name\n");
1561                 return -1;
1562         } else {
1563                 printf("Profile Name : %s\n", profile_name);
1564                 g_free(profile_name);
1565         }
1566
1567         if (connection_profile_get_state(profile, &profile_state) != CONNECTION_ERROR_NONE) {
1568                 printf("Fail to get profile state\n");
1569                 return -1;
1570         } else
1571                 printf("Profile State : %s\n", test_print_state(profile_state));
1572
1573
1574         if (connection_profile_get_type(profile, &prof_type) != CONNECTION_ERROR_NONE)
1575                 return -1;
1576
1577         test_get_user_int("Input Address Family (0:IPv4 1:IPv6) :", &address_family);
1578
1579         switch (prof_type) {
1580         case CONNECTION_PROFILE_TYPE_CELLULAR:
1581                 printf("Profile Type : Cellular\n");
1582                 test_print_cellular_info(profile);
1583                 break;
1584         case CONNECTION_PROFILE_TYPE_WIFI:
1585                 printf("Profile Type : Wi-Fi\n");
1586                 test_print_wifi_info(profile);
1587                 break;
1588         case CONNECTION_PROFILE_TYPE_ETHERNET:
1589                 printf("Profile Type : Ethernet\n");
1590                 break;
1591         case CONNECTION_PROFILE_TYPE_BT:
1592                 printf("Profile Type : Bluetooth\n");
1593                 break;
1594         default:
1595                 return -1;
1596         }
1597
1598         test_print_network_info(profile, address_family);
1599
1600         return 1;
1601 }
1602
1603 int test_set_state_changed_callback()
1604 {
1605         connection_profile_h profile;
1606         connection_profile_h profile_clone;
1607
1608         printf("\n** Choose a profile to set callback. **\n");
1609         if (test_get_user_selected_profile(&profile, true) == false)
1610                 return -1;
1611
1612         if (connection_profile_clone(&profile_clone, profile) != CONNECTION_ERROR_NONE)
1613                 return -1;
1614
1615         if (connection_profile_set_state_changed_cb(profile,
1616                         test_profile_state_callback, profile_clone) != CONNECTION_ERROR_NONE) {
1617                 connection_profile_destroy(profile_clone);
1618                 return -1;
1619         }
1620
1621         state_cb_list = g_slist_append(state_cb_list, profile_clone);
1622
1623         return 1;
1624 }
1625
1626 int test_unset_state_changed_callback()
1627 {
1628         connection_profile_h profile;
1629         GSList *list;
1630         char *profile_name = NULL;
1631         int count = 0;
1632         int input = 0;
1633
1634         printf("\n** Choose a profile to unset callback. **\n");
1635         for (list = state_cb_list; list; list = list->next) {
1636                 profile = list->data;
1637                 if (connection_profile_get_name(profile, &profile_name) != CONNECTION_ERROR_NONE) {
1638                         printf("Fail to get profile name!\n");
1639                         return -1;
1640                 } else {
1641                         printf("%d. %s\n", count, profile_name);
1642                         g_free(profile_name);
1643                 }
1644
1645                 count++;
1646         }
1647
1648         if (test_get_user_int("Input profile number(Enter for cancel) :", &input) == false ||
1649             input >= count ||
1650             input < 0) {
1651                 printf("Wrong number!!\n");
1652                 return -1;
1653         }
1654
1655         count = 0;
1656         for (list = state_cb_list; list; list = list->next) {
1657                 if (count == input) {
1658                         profile = list->data;
1659                         goto unset;
1660                 }
1661
1662                 count++;
1663         }
1664
1665         return -1;
1666
1667 unset:
1668         if (connection_profile_unset_state_changed_cb(profile) != CONNECTION_ERROR_NONE)
1669                 return -1;
1670
1671         state_cb_list = g_slist_remove(state_cb_list, profile);
1672         connection_profile_destroy(profile);
1673
1674         return 1;
1675 }
1676
1677 int test_reset_call_statistics_info(void)
1678 {
1679         int ret = CONNECTION_ERROR_NONE;
1680
1681         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA);
1682         printf("reset last recv data size [%d]\n", ret);
1683         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA);
1684         printf("last sent data size [%d]\n", ret);
1685         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA);
1686         printf("total received data size [%d]\n", ret);
1687         ret = connection_reset_statistics(connection, CONNECTION_TYPE_CELLULAR, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA);
1688         printf("total sent data size [%d]\n", ret);
1689
1690         return 1;
1691 }
1692
1693 int test_reset_wifi_call_statistics_info(void)
1694 {
1695         int ret = CONNECTION_ERROR_NONE;
1696
1697         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA);
1698         printf("WiFi last sent data size [%d]\n", ret);
1699         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA);
1700         printf("WiFi last recv data size [%d]\n", ret);
1701         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA);
1702         printf("WiFi total sent data size [%d]\n", ret);
1703         ret = connection_reset_statistics(connection, CONNECTION_TYPE_WIFI, CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA);
1704         printf("WiFi total received data size [%d]\n", ret);
1705
1706         return 1;
1707 }
1708
1709 int test_add_route(void)
1710 {
1711         int rv = 0;
1712         char ip_addr[100] = {0};
1713         char if_name[40] = {0};
1714
1715         if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1716                 return -1;
1717
1718         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1719                 return -1;
1720
1721         g_strstrip(ip_addr);
1722         g_strstrip(if_name);
1723         rv = connection_add_route(connection, if_name, ip_addr);
1724         if (rv != CONNECTION_ERROR_NONE) {
1725                 printf("Fail to get add new route [%d]\n", rv);
1726                 return -1;
1727         }
1728         printf("Add Route successfully\n");
1729
1730         return 1;
1731 }
1732
1733 int test_remove_route(void)
1734 {
1735         int rv = 0;
1736         char ip_addr[100] = {0};
1737         char if_name[40] = {0};
1738
1739         if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1740                 return -1;
1741
1742         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1743                 return -1;
1744
1745         g_strstrip(ip_addr);
1746         g_strstrip(if_name);
1747         rv = connection_remove_route(connection, if_name, ip_addr);
1748         if (rv != CONNECTION_ERROR_NONE) {
1749                 printf("Fail to remove the route [%s]\n", test_print_error(rv));
1750                 return -1;
1751         }
1752         printf("Remove Route successfully\n");
1753
1754         return 1;
1755 }
1756
1757 int test_add_route_ipv6(void)
1758 {
1759         int rv = 0;
1760         char ip_addr[100] = {0};
1761         char gateway[100] = {0};
1762         char if_name[40] = {0};
1763
1764         if (test_get_user_string("Input IPv6 - (Enter for skip) :", ip_addr, 100) == false)
1765                 return -1;
1766
1767         if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1768                 return -1;
1769
1770         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1771                 return -1;
1772
1773         g_strstrip(ip_addr);
1774         g_strstrip(gateway);
1775         g_strstrip(if_name);
1776         rv = connection_add_route_ipv6(connection, if_name, ip_addr, gateway);
1777         if (rv != CONNECTION_ERROR_NONE) {
1778                 printf("Fail to get add new route [%d]\n", rv);
1779                 return -1;
1780         }
1781         printf("Add Route successfully\n");
1782
1783         return 1;
1784 }
1785
1786 int test_remove_route_ipv6(void)
1787 {
1788         int rv = 0;
1789         char ip_addr[100] = {0};
1790         char gateway[100] = {0};
1791         char if_name[40] = {0};
1792
1793         if (test_get_user_string("Input IPv6 - (Enter for skip) :", ip_addr, 100) == false)
1794                 return -1;
1795
1796         if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1797                 return -1;
1798
1799         if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1800                 return -1;
1801
1802         g_strstrip(ip_addr);
1803         g_strstrip(gateway);
1804         g_strstrip(if_name);
1805         rv = connection_remove_route_ipv6(connection, if_name, ip_addr, gateway);
1806         if (rv != CONNECTION_ERROR_NONE) {
1807                 printf("Fail to remove the route [%d]\n", rv);
1808                 return -1;
1809         }
1810         printf("Remove Route successfully\n");
1811
1812         return 1;
1813 }
1814
1815 int test_add_route_entry(void)
1816 {
1817         char ip_addr[100] = {0};
1818         char gateway[100] = {0};
1819         char if_name[40] = {0};
1820         int input;
1821         bool input_rv;
1822         int rv = 0;
1823
1824         input_rv = test_get_user_int("Input Address type to get"
1825                 "(1:IPV4, 2:IPV6):", &input);
1826
1827         if (input_rv == false) {
1828                 printf("Invalid input!!\n");
1829                 return -1;
1830         }
1831
1832         switch (input) {
1833         case 1:
1834                 if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1835                         return -1;
1836
1837                 if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1838                         return -1;
1839
1840                 if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1841                         return -1;
1842
1843                 g_strstrip(ip_addr);
1844                 g_strstrip(gateway);
1845                 g_strstrip(if_name);
1846                 rv = connection_add_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV4, if_name, ip_addr, gateway);
1847                 if (rv != CONNECTION_ERROR_NONE) {
1848                         printf("Fail to get add new route [%d]\n", rv);
1849                         return -1;
1850                 }
1851                 printf("Add Route successfully\n");
1852                 break;
1853
1854         case 2:
1855                 if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1856                         return -1;
1857
1858                 if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1859                         return -1;
1860
1861                 if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1862                         return -1;
1863
1864                 g_strstrip(ip_addr);
1865                 g_strstrip(gateway);
1866                 g_strstrip(if_name);
1867                 rv = connection_add_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV6, if_name, ip_addr, gateway);
1868                 if (rv != CONNECTION_ERROR_NONE) {
1869                         printf("Fail to get add new route [%d]\n", rv);
1870                         return -1;
1871                 }
1872                 printf("Add Route successfully\n");
1873                 break;
1874
1875         default:
1876                 printf("Wrong IP address family!!\n");
1877                 return -1;
1878
1879         }
1880
1881         return 1;
1882
1883 }
1884
1885 int test_remove_route_entry(void)
1886 {
1887         char ip_addr[100] = {0};
1888         char gateway[100] = {0};
1889         char if_name[40] = {0};
1890         int input;
1891         bool input_rv;
1892         int rv = 0;
1893
1894         input_rv = test_get_user_int("Input Address type to get"
1895                 "(1:IPV4, 2:IPV6):", &input);
1896
1897         if (input_rv == false) {
1898                 printf("Invalid input!!\n");
1899                 return -1;
1900         }
1901
1902         switch (input) {
1903         case 1:
1904                 if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1905                         return -1;
1906
1907                 if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1908                         return -1;
1909
1910                 if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1911                         return -1;
1912
1913                 g_strstrip(ip_addr);
1914                 g_strstrip(gateway);
1915                 g_strstrip(if_name);
1916                 rv = connection_remove_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV4, if_name, ip_addr, gateway);
1917                 if (rv != CONNECTION_ERROR_NONE) {
1918                         printf("Fail to remove the route [%s]\n", test_print_error(rv));
1919                         return -1;
1920                 }
1921                 printf("Remove Route successfully\n");
1922
1923                 break;
1924
1925         case 2:
1926                 if (test_get_user_string("Input Interface name - (Enter for skip) :", if_name, 40) == false)
1927                         return -1;
1928
1929                 if (test_get_user_string("Input IP - (Enter for skip) :", ip_addr, 100) == false)
1930                         return -1;
1931
1932                 if (test_get_user_string("Input Gateway - (Enter for skip) :", gateway, 100) == false)
1933                         return -1;
1934
1935                 g_strstrip(ip_addr);
1936                 g_strstrip(gateway);
1937                 g_strstrip(if_name);
1938                 rv = connection_remove_route_entry(connection, CONNECTION_ADDRESS_FAMILY_IPV6, if_name, ip_addr, gateway);
1939                 if (rv != CONNECTION_ERROR_NONE) {
1940                         printf("Fail to remove the route [%d]\n", rv);
1941                         return -1;
1942                 }
1943                 printf("Remove Route successfully\n");
1944                 break;
1945
1946         default:
1947                 printf("Wrong IP address family!!\n");
1948                 return -1;
1949
1950         }
1951
1952         return 1;
1953
1954 }
1955
1956 int test_get_bt_state(void)
1957 {
1958         int rv = 0;
1959         connection_bt_state_e bt_state;
1960
1961         rv = connection_get_bt_state(connection, &bt_state);
1962
1963         if (rv != CONNECTION_ERROR_NONE) {
1964                 printf("Fail to get Bluetooth state [%s]\n", test_print_error(rv));
1965                 return -1;
1966         }
1967
1968         printf("Retval = [%s], Bluetooth state [%d]\n", test_print_error(rv), bt_state);
1969
1970         return 1;
1971 }
1972
1973 int test_get_profile_id(void)
1974 {
1975         connection_profile_h profile;
1976         char *profile_id;
1977
1978         printf("\n** Choose a profile to see profile id. **\n");
1979         if (test_get_user_selected_profile(&profile, true) == false)
1980                 return -1;
1981
1982         if (connection_profile_get_id(profile, &profile_id) != CONNECTION_ERROR_NONE) {
1983                 printf("Fail to get profile name\n");
1984                 return -1;
1985         } else {
1986                 printf("Profile id : %s\n", profile_id);
1987                 g_free(profile_id);
1988         }
1989
1990         return 1;
1991 }
1992
1993 int test_get_mac_address(void)
1994 {
1995         int rv = 0, type = 0;
1996         connection_type_e conn_type;
1997         char *mac_addr = NULL;
1998
1999         test_get_user_int("Input connection type (1:wifi, 2:ethernet)", &type);
2000
2001         switch (type) {
2002         case 1:
2003                 conn_type = CONNECTION_TYPE_WIFI;
2004                 break;
2005         case 2:
2006                 conn_type = CONNECTION_TYPE_ETHERNET;
2007                 break;
2008         default:
2009                 printf("Wrong number!!\n");
2010                 return -1;
2011         }
2012
2013         rv = connection_get_mac_address(connection, conn_type, &mac_addr);
2014
2015         if (rv != CONNECTION_ERROR_NONE) {
2016                 printf("Fail to get MAC address [%s]\n", test_print_error(rv));
2017                 return -1;
2018         }
2019
2020         printf("mac address is %s\n", mac_addr);
2021
2022         g_free(mac_addr);
2023
2024         return 1;
2025 }
2026
2027 int test_get_ethernet_cable_state(void)
2028 {
2029         int rv = 0;
2030         connection_ethernet_cable_state_e cable_state;
2031
2032         rv = connection_get_ethernet_cable_state(connection, &cable_state);
2033
2034         if (rv != CONNECTION_ERROR_NONE) {
2035                 printf("Fail to get ethernet cable state [%s]\n", test_print_error(rv));
2036                 return -1;
2037         }
2038
2039         printf("Retval = [%s], Ethernet cable state [%d]\n", test_print_error(rv), cable_state);
2040
2041         return 1;
2042 }
2043
2044 int test_reset_profile(void)
2045 {
2046         int type, sim_id, rv;
2047
2048         rv = test_get_user_int("Input reset type (0:default profile reset, 1:delete profile reset)", &type);
2049
2050         if (rv == false || (type != 0 && type != 1)) {
2051                 printf("Invalid input!!\n");
2052                 return -1;
2053         }
2054
2055         rv = test_get_user_int("Input SIM id to reset (0:SIM1, 1:SIM2)", &sim_id);
2056
2057         if (rv == false || (sim_id != 0 && sim_id != 1)) {
2058                 printf("Invalid input!!\n");
2059                 return -1;
2060         }
2061
2062         if (connection_reset_profile(connection, type, sim_id, test_connection_reset_profile_callback, NULL) != CONNECTION_ERROR_NONE)
2063                 return -1;
2064
2065         return 1;
2066 }
2067
2068 static bool test_get_ipv6_address_callback(char *ipv6_address, void* user_data)
2069 {
2070         printf("IPv6 Address : %s\n", ipv6_address);
2071         return true;
2072 }
2073
2074 int test_foreach_ipv6_address(void)
2075 {
2076         int rv = 0;
2077         int type;
2078         connection_type_e conn_type;
2079
2080         test_get_user_int("Input Connection Type(1: WiFi 2: Ethernet) :", &type);
2081
2082         switch (type) {
2083         case 1:
2084                 conn_type = CONNECTION_TYPE_WIFI;
2085                 break;
2086         case 2:
2087                 conn_type = CONNECTION_TYPE_ETHERNET;
2088                 break;
2089         default:
2090                 printf("Wrong number!!\n");
2091                 return -1;
2092         }
2093
2094         rv = connection_foreach_ipv6_address(connection, conn_type, test_get_ipv6_address_callback, NULL);
2095         if (rv != CONNECTION_ERROR_NONE) {
2096                 printf("Fail to get IPv6 address\n");
2097                 return -1;
2098         }
2099
2100         return 1;
2101 }
2102
2103
2104 int main(int argc, char **argv)
2105 {
2106         GMainLoop *mainloop;
2107         mainloop = g_main_loop_new(NULL, FALSE);
2108
2109         GIOChannel *channel = g_io_channel_unix_new(0);
2110         g_io_add_watch(channel, (G_IO_IN|G_IO_ERR|G_IO_HUP|G_IO_NVAL), test_thread, NULL);
2111
2112         printf("Test Thread created...\n");
2113
2114         g_main_loop_run(mainloop);
2115
2116         return 0;
2117 }
2118
2119 gboolean test_thread(GIOChannel *source, GIOCondition condition, gpointer data)
2120 {
2121         int rv = 0;
2122         char a[100];
2123
2124         memset(a, '\0', 100);
2125         printf("Event received from stdin\n");
2126
2127         rv = read(0, a, 100);
2128
2129         if (rv < 0 || a[0] == '0') {
2130                 if (connection != NULL)
2131                         test_deregister_client();
2132
2133                 exit(1);
2134         }
2135
2136         if (*a == '\n' || *a == '\r') {
2137                 printf("\n\n Network Connection API Test App\n\n");
2138                 printf("Options..\n");
2139                 printf(LOG_GREEN "1   - Create Handle and set callbacks\n" LOG_END);
2140                 printf("2   - Destroy Handle(unset callbacks automatically)\n");
2141                 printf(LOG_GREEN "3   - Get network state\n" LOG_END);
2142                 printf(LOG_GREEN "4   - Get cellular state (please insert SIM Card)\n" LOG_END);
2143                 printf(LOG_GREEN "5   - Get wifi state (please turn on WiFi)\n" LOG_END);
2144                 printf("6   - Get current proxy address \n");
2145                 printf("7   - Get current Ip address\n");
2146                 printf("8   - Get cellular data call statistics\n");
2147                 printf("9   - Get WiFi data call statistics\n");
2148                 printf(LOG_GREEN "a   - Get Profile list\n" LOG_END);
2149                 printf(LOG_GREEN "b   - Get Connected Profile list\n" LOG_END);
2150                 printf(LOG_GREEN "c   - Get Current profile\n" LOG_END);
2151                 printf("d   - Open connection with profile\n");
2152                 printf("e   - Get default cellular service by type\n");
2153                 printf("f   - Set default cellular service by type\n");
2154                 printf("g   - Close connection with profile\n");
2155                 printf("h   - Add profile(Cellular and Wifi only)\n");
2156                 printf("i   - Remove profile(Cellular:delete, WiFi:forgot)\n");
2157                 printf("j   - Update profile\n");
2158                 printf("k   - Get profile info\n");
2159                 printf("l   - Refresh profile info\n");
2160                 printf("m   - Set state changed callback\n");
2161                 printf("n   - Unset state changed callback\n");
2162                 printf("o   - Reset cellular data call statistics\n");
2163                 printf("p   - Reset WiFi data call statistics\n");
2164                 printf("q   - Add new route\n");
2165                 printf("r   - Remove a route\n");
2166                 printf("s   - Get Bluetooth state\n");
2167                 printf("t   - Get profile id\n");
2168                 printf("u   - Reset profile\n");
2169                 printf("v   - Get all cellular default profiles\n");
2170                 printf("w   - Get mac address\n");
2171                 printf("x   - Get ethernet cable state\n");
2172                 printf("B   - Add IPv6 new route\n");
2173                 printf("C   - Remove IPv6 route\n");
2174                 printf("D   - Add new route entry\n");
2175                 printf("E   - Remove route entry\n");
2176                 printf("F   - Get all IPv6 address\n");
2177                 printf(LOG_RED "0   - Exit \n" LOG_END);
2178                 printf("ENTER   - Show options menu.......\n");
2179         }
2180
2181         switch (a[0]) {
2182         case '1':
2183                 rv = test_register_client();
2184                 break;
2185         case '2':
2186                 rv = test_deregister_client();
2187                 break;
2188         case '3':
2189                 rv = test_get_network_state();
2190                 break;
2191         case '4':
2192                 rv = test_get_cellular_state();
2193                 break;
2194         case '5':
2195                 rv = test_get_wifi_state();
2196                 break;
2197         case '6':
2198                 rv = test_get_current_proxy();
2199                 break;
2200         case '7':
2201                 rv = test_get_current_ip();
2202                 break;
2203         case '8':
2204                 rv = test_get_call_statistics_info();
2205                 break;
2206         case '9':
2207                 rv = test_get_wifi_call_statistics_info();
2208                 break;
2209         case 'a':
2210                 rv = test_get_profile_list();
2211                 break;
2212         case 'b':
2213                 rv = test_get_connected_profile_list();
2214                 break;
2215         case 'c':
2216                 rv = test_get_current_profile();
2217                 break;
2218         case 'd':
2219                 rv = test_open_profile();
2220                 break;
2221         case 'e':
2222                 rv = test_get_default_cellular_service_type();
2223                 break;
2224         case 'f':
2225                 rv = test_set_default_cellular_service_type();
2226                 break;
2227         case 'g':
2228                 rv = test_close_profile();
2229                 break;
2230         case 'h':
2231                 rv = test_add_profile();
2232                 break;
2233         case 'i':
2234                 rv = test_remove_profile();
2235                 break;
2236         case 'j':
2237                 rv = test_update_profile();
2238                 break;
2239         case 'k':
2240                 rv = test_get_profile_info();
2241                 break;
2242         case 'l':
2243                 rv = test_refresh_profile_info();
2244                 break;
2245         case 'm':
2246                 rv = test_set_state_changed_callback();
2247                 break;
2248         case 'n':
2249                 rv = test_unset_state_changed_callback();
2250                 break;
2251         case 'o':
2252                 rv = test_reset_call_statistics_info();
2253                 break;
2254         case 'p':
2255                 rv = test_reset_wifi_call_statistics_info();
2256                 break;
2257         case 'q':
2258                 rv = test_add_route();
2259                 break;
2260         case 'r':
2261                 rv = test_remove_route();
2262                 break;
2263         case 's':
2264                 rv = test_get_bt_state();
2265                 break;
2266         case 't':
2267                 rv = test_get_profile_id();
2268                 break;
2269         case 'u':
2270                 rv = test_reset_profile();
2271                 break;
2272         case 'v':
2273                 rv = test_get_default_profile_list();
2274                 break;
2275         case 'w':
2276                 rv = test_get_mac_address();
2277                 break;
2278         case 'x':
2279                 rv = test_get_ethernet_cable_state();
2280                 break;
2281         case 'B':
2282                 rv = test_add_route_ipv6();
2283                 break;
2284         case 'C':
2285                 rv = test_remove_route_ipv6();
2286                 break;
2287         case 'D':
2288                 rv = test_add_route_entry();
2289                 break;
2290         case 'E':
2291                 rv = test_remove_route_entry();
2292                 break;
2293         case 'F':
2294                 rv = test_foreach_ipv6_address();
2295                 break;
2296         }
2297
2298         if (rv == 1)
2299                 printf("Operation succeeded!\n");
2300         else
2301                 printf("Operation failed!\n");
2302
2303         return TRUE;
2304 }