Patch version revert to build other pakages
[platform/core/api/network-info.git] / test / network_info_get_provider_name_test.c
1 /*
2  * Copyright (c) 2011 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
18
19 #include <stdio.h>
20 #include <telephony_network.h>
21 #include <stdlib.h>
22 #include <dlog.h>
23
24 #ifdef LOG_TAG
25 #undef LOG_TAG
26 #endif
27 #define LOG_TAG "TIZEN_N_NETWORK_INFO_TEST"
28
29 int main()
30 {
31         int ret = 0;
32         char* provider_name = NULL;
33         int ret_value = network_info_get_provider_name(&provider_name);
34
35         switch(ret_value)
36         {
37                 case NETWORK_INFO_ERROR_NONE:
38                         LOGI("Provider name is %s", provider_name);
39                         ret = 0;
40                         free(provider_name);
41                         break;
42                 case NETWORK_INFO_ERROR_INVALID_PARAMETER:
43                         LOGI("Invalid parameter");
44                         ret = -1;
45                         break;
46                 case NETWORK_INFO_ERROR_OUT_OF_SERVICE:
47                         LOGI("Out of service");
48                         ret = -1;
49                         break;
50                 case NETWORK_INFO_ERROR_OPERATION_FAILED:
51                         LOGI("Cannot find provider name value");
52                         ret = -1;
53                         break;
54                 default:
55                         LOGI("Unexpected return value");
56                         ret = -1;
57                         break;
58         }
59
60         return ret;
61 }