Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed-TFT-example-NCS36510 mbed-Accelerometer-example-NCS36510 mbed-Accelerometer-example-NCS36510
test_coap_message_handler.c
00001 /* 00002 * Copyright (c) 2015 ARM Limited. All Rights Reserved. 00003 */ 00004 #include "test_coap_message_handler.h" 00005 #include <string.h> 00006 #include "coap_message_handler.h" 00007 #include "sn_coap_protocol_stub.h" 00008 #include "nsdynmemLIB_stub.h" 00009 #include "sn_coap_builder_stub.h" 00010 #include "sn_coap_parser_stub.h" 00011 #include "socket_api.h" 00012 00013 int retCounter = 0; 00014 int retValue = 0; 00015 00016 static void *own_alloc(uint16_t size) 00017 { 00018 if( retCounter > 0 ){ 00019 retCounter--; 00020 return malloc(size); 00021 } 00022 return NULL; 00023 } 00024 00025 static void own_free(void *ptr) 00026 { 00027 if (ptr) { 00028 free(ptr); 00029 } 00030 } 00031 00032 static uint8_t coap_tx_function(uint8_t *data_ptr, uint16_t data_len, sn_nsdl_addr_s *address_ptr, void *param) 00033 { 00034 return 0; 00035 } 00036 00037 int resp_recv(int8_t service_id, uint16_t msg_id, sn_coap_hdr_s *response_ptr){ 00038 return retValue; 00039 } 00040 00041 int16_t process_cb(int8_t a, sn_coap_hdr_s *b, coap_transaction_t *c) 00042 { 00043 return retValue; 00044 } 00045 00046 bool test_coap_message_handler_init() 00047 { 00048 if( NULL != coap_message_handler_init(NULL, NULL, NULL) ) 00049 return false; 00050 if( NULL != coap_message_handler_init(&own_alloc, NULL, NULL) ) 00051 return false; 00052 if( NULL != coap_message_handler_init(&own_alloc, &own_free, NULL) ) 00053 return false; 00054 if( NULL != coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function) ) 00055 return false; 00056 retCounter = 1; 00057 sn_coap_protocol_stub.expectedCoap = NULL; 00058 if( NULL != coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function) ) 00059 return false; 00060 retCounter = 1; 00061 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00062 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00063 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00064 if( NULL == handle ) 00065 return false; 00066 free(sn_coap_protocol_stub.expectedCoap); 00067 sn_coap_protocol_stub.expectedCoap = NULL; 00068 free(handle); 00069 return true; 00070 } 00071 00072 bool test_coap_message_handler_destroy() 00073 { 00074 if( -1 != coap_message_handler_destroy(NULL) ) 00075 return false; 00076 retCounter = 1; 00077 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00078 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00079 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00080 00081 if( 0 != coap_message_handler_destroy(handle) ) 00082 return false; 00083 00084 free(sn_coap_protocol_stub.expectedCoap); 00085 return true; 00086 } 00087 00088 bool test_coap_message_handler_find_transaction() 00089 { 00090 if( NULL != coap_message_handler_find_transaction(NULL, 0)) 00091 return false; 00092 retCounter = 1; 00093 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00094 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00095 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00096 00097 uint8_t buf[16]; 00098 memset(&buf, 1, 16); 00099 char uri[3]; 00100 uri[0] = "r"; 00101 uri[1] = "s"; 00102 uri[2] = "\0"; 00103 00104 sn_coap_builder_stub.expectedUint16 = 1; 00105 nsdynmemlib_stub.returnCounter = 3; 00106 if( 2 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, &resp_recv)) 00107 return false; 00108 00109 if( NULL == coap_message_handler_find_transaction(&buf, 24)) 00110 return false; 00111 00112 free(sn_coap_protocol_stub.expectedCoap); 00113 sn_coap_protocol_stub.expectedCoap = NULL; 00114 coap_message_handler_destroy(handle); 00115 return true; 00116 } 00117 00118 bool test_coap_message_handler_coap_msg_process() 00119 { 00120 uint8_t buf[16]; 00121 memset(&buf, 1, 16); 00122 if( -1 != coap_message_handler_coap_msg_process(NULL, 0, buf, 22, ns_in6addr_any, NULL, 0, NULL)) 00123 return false; 00124 00125 retCounter = 1; 00126 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00127 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00128 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00129 00130 sn_coap_protocol_stub.expectedHeader = NULL; 00131 if( -1 != coap_message_handler_coap_msg_process(handle, 0, buf, 22, ns_in6addr_any, NULL, 0, process_cb)) 00132 return false; 00133 00134 sn_coap_protocol_stub.expectedHeader = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00135 memset(sn_coap_protocol_stub.expectedHeader, 0, sizeof(sn_coap_hdr_s)); 00136 sn_coap_protocol_stub.expectedHeader->coap_status = 66; 00137 if( -1 != coap_message_handler_coap_msg_process(handle, 0, buf, 22, ns_in6addr_any, NULL, 0, process_cb)) 00138 return false; 00139 00140 sn_coap_protocol_stub.expectedHeader = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00141 memset(sn_coap_protocol_stub.expectedHeader, 0, sizeof(sn_coap_hdr_s)); 00142 sn_coap_protocol_stub.expectedHeader->coap_status = COAP_STATUS_OK; 00143 sn_coap_protocol_stub.expectedHeader->msg_code = 1; 00144 retValue = 0; 00145 if( 0 != coap_message_handler_coap_msg_process(handle, 0, buf, 22, ns_in6addr_any, NULL, 0, process_cb)) 00146 return false; 00147 00148 nsdynmemlib_stub.returnCounter = 1; 00149 retValue = -1; 00150 if( -1 != coap_message_handler_coap_msg_process(handle, 0, buf, 22, ns_in6addr_any, NULL, 0, process_cb)) 00151 return false; 00152 00153 sn_coap_protocol_stub.expectedHeader = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00154 memset(sn_coap_protocol_stub.expectedHeader, 0, sizeof(sn_coap_hdr_s)); 00155 sn_coap_protocol_stub.expectedHeader->coap_status = COAP_STATUS_OK; 00156 sn_coap_protocol_stub.expectedHeader->msg_code = 333; 00157 00158 if( -1 != coap_message_handler_coap_msg_process(handle, 0, buf, 22, ns_in6addr_any, NULL, 0, process_cb)) 00159 return false; 00160 00161 sn_coap_protocol_stub.expectedHeader = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00162 memset(sn_coap_protocol_stub.expectedHeader, 0, sizeof(sn_coap_hdr_s)); 00163 sn_coap_protocol_stub.expectedHeader->coap_status = COAP_STATUS_OK; 00164 sn_coap_protocol_stub.expectedHeader->msg_code = 333; 00165 00166 char uri[3]; 00167 uri[0] = "r"; 00168 uri[1] = "s"; 00169 uri[2] = "\0"; 00170 00171 sn_coap_builder_stub.expectedUint16 = 1; 00172 nsdynmemlib_stub.returnCounter = 3; 00173 if( 2 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, &resp_recv)) 00174 return false; 00175 00176 sn_coap_protocol_stub.expectedHeader->msg_id = 2; 00177 // sn_coap_protocol_stub.expectedHeader->token_ptr = (uint8_t*)malloc(4); 00178 // memset(sn_coap_protocol_stub.expectedHeader->token_ptr, 1, 4); 00179 if( -1 != coap_message_handler_coap_msg_process(handle, 0, buf, 22, ns_in6addr_any, NULL, 0, process_cb)) 00180 return false; 00181 00182 // free(sn_coap_protocol_stub.expectedHeader->token_ptr); 00183 00184 free(sn_coap_protocol_stub.expectedCoap); 00185 sn_coap_protocol_stub.expectedCoap = NULL; 00186 coap_message_handler_destroy(handle); 00187 return true; 00188 } 00189 00190 bool test_coap_message_handler_request_send() 00191 { 00192 retCounter = 1; 00193 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00194 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00195 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00196 00197 uint8_t buf[16]; 00198 memset(&buf, 1, 16); 00199 char uri[3]; 00200 uri[0] = "r"; 00201 uri[1] = "s"; 00202 uri[2] = "\0"; 00203 if( 0 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, NULL)) 00204 return false; 00205 00206 sn_coap_builder_stub.expectedUint16 = 1; 00207 nsdynmemlib_stub.returnCounter = 1; 00208 if( 0 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, NULL)) 00209 return false; 00210 00211 sn_coap_builder_stub.expectedUint16 = 1; 00212 nsdynmemlib_stub.returnCounter = 3; 00213 if( 0 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, NULL)) 00214 return false; 00215 00216 sn_coap_builder_stub.expectedUint16 = 1; 00217 nsdynmemlib_stub.returnCounter = 3; 00218 if( 0 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, NULL)) 00219 return false; 00220 00221 sn_coap_builder_stub.expectedUint16 = 1; 00222 nsdynmemlib_stub.returnCounter = 3; 00223 if( 2 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, &resp_recv)) 00224 return false; 00225 00226 free(sn_coap_protocol_stub.expectedCoap); 00227 sn_coap_protocol_stub.expectedCoap = NULL; 00228 coap_message_handler_destroy(handle); 00229 return true; 00230 } 00231 00232 bool test_coap_message_handler_response_send() 00233 { 00234 if( -1 != coap_message_handler_response_send(NULL, 2, 0, NULL, 1,3,NULL, 0)) 00235 return false; 00236 00237 retCounter = 1; 00238 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00239 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00240 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00241 sn_coap_hdr_s *header = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00242 memset(header, 0, sizeof(sn_coap_hdr_s)); 00243 00244 if( -2 != coap_message_handler_response_send(handle, 2, 0, header, 1,3,NULL, 0)) 00245 return false; 00246 00247 uint8_t buf[16]; 00248 memset(&buf, 1, 16); 00249 char uri[3]; 00250 uri[0] = "r"; 00251 uri[1] = "s"; 00252 uri[2] = "\0"; 00253 sn_coap_builder_stub.expectedUint16 = 1; 00254 nsdynmemlib_stub.returnCounter = 3; 00255 if( 2 != coap_message_handler_request_send(handle, 3, 0, buf, 24, 1, 2, &uri, 4, NULL, 0, &resp_recv)) 00256 return false; 00257 00258 header->msg_id = 2; 00259 sn_coap_builder_stub.expectedUint16 = 2; 00260 coap_transaction_t * tx = coap_message_handler_find_transaction(&buf, 24); 00261 if( tx ){ 00262 tx->client_request = false; 00263 } 00264 sn_coap_builder_stub.expectedHeader = NULL; 00265 if( -1 != coap_message_handler_response_send(handle, 2, 0, header, 1,3,NULL, 0)) 00266 return false; 00267 00268 sn_coap_builder_stub.expectedHeader = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00269 memset(sn_coap_builder_stub.expectedHeader, 0, sizeof(sn_coap_hdr_s)); 00270 nsdynmemlib_stub.returnCounter = 0; 00271 if( -1 != coap_message_handler_response_send(handle, 2, 0, header, 1,3,NULL, 0)) 00272 return false; 00273 00274 sn_coap_builder_stub.expectedHeader = (sn_coap_hdr_s *)malloc(sizeof(sn_coap_hdr_s)); 00275 memset(sn_coap_builder_stub.expectedHeader, 0, sizeof(sn_coap_hdr_s)); 00276 nsdynmemlib_stub.returnCounter = 1; 00277 if( 0 != coap_message_handler_response_send(handle, 2, 0, header, 1,3,NULL, 0)) 00278 return false; 00279 00280 // free(header); 00281 free(sn_coap_protocol_stub.expectedCoap); 00282 sn_coap_protocol_stub.expectedCoap = NULL; 00283 coap_message_handler_destroy(handle); 00284 return true; 00285 } 00286 00287 bool test_coap_message_handler_exec() 00288 { 00289 if( -1 != coap_message_handler_exec(NULL, 0)) 00290 return false; 00291 retCounter = 1; 00292 sn_coap_protocol_stub.expectedCoap = (struct coap_s*)malloc(sizeof(struct coap_s)); 00293 memset(sn_coap_protocol_stub.expectedCoap, 0, sizeof(struct coap_s)); 00294 coap_msg_handler_t *handle = coap_message_handler_init(&own_alloc, &own_free, &coap_tx_function); 00295 if( 0 != coap_message_handler_exec(handle, 0)) 00296 return false; 00297 00298 free(sn_coap_protocol_stub.expectedCoap); 00299 sn_coap_protocol_stub.expectedCoap = NULL; 00300 coap_message_handler_destroy(handle); 00301 return true; 00302 }
Generated on Tue Jul 12 2022 11:02:54 by
