1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2025-present Eclipse ThreadX Contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
#include <stdio.h>
#include <setjmp.h>
#include <cmocka.h> /* macros: https://api.cmocka.org/group__cmocka__asserts.html */
#include "nx_api.h"
#include "nx_azure_iot_hub_client.h"
#include "nx_azure_iot_hub_client_properties.h"
#include "nx_azure_iot_cert.h"
#include "nx_azure_iot_ciphersuites.h"
#define DEMO_DHCP_DISABLE
#define DEMO_IPV4_ADDRESS IP_ADDRESS(192, 168, 100, 33)
#define DEMO_IPV4_MASK 0xFFFFFF00UL
#define DEMO_GATEWAY_ADDRESS IP_ADDRESS(192, 168, 100, 1)
#define DEMO_DNS_SERVER_ADDRESS IP_ADDRESS(192, 168, 100, 1)
#define NETWORK_DRIVER _nx_ram_network_driver
/* Include main.c in the test case since we need to disable DHCP in this test. */
#include "main.c"
#define STRING_UNSIGNED_ARGS(s) (UCHAR *)s, strlen(s)
#ifndef DEMO_CLOUD_STACK_SIZE
#define DEMO_CLOUD_STACK_SIZE 2048
#endif /* DEMO_CLOUD_STACK_SIZE */
#ifndef DEMO_CLOUD_THREAD_PRIORITY
#define DEMO_CLOUD_THREAD_PRIORITY (4)
#endif /* DEMO_CLOUD_THREAD_PRIORITY */
static UINT api_no_model_id_test();
static VOID api_model_id_test();
static NX_AZURE_IOT iot;
static NX_AZURE_IOT_HUB_CLIENT iot_client;
static NX_SECURE_X509_CERT root_ca_cert;
static UCHAR metadata_buffer[NX_AZURE_IOT_TLS_METADATA_BUFFER_SIZE];
static ULONG demo_cloud_thread_stack[DEMO_CLOUD_STACK_SIZE / sizeof(ULONG)];
NX_SECURE_X509_CERT device_certificate;
NX_PACKET *packet_ptr;
UCHAR *property_name = "propertyA";
USHORT property_name_length = sizeof("propertyA") - 1;
UCHAR *property_value;
USHORT property_value_lenght;
UCHAR *name;
USHORT name_length;
UCHAR *context_ptr;
USHORT context_length;
UCHAR *component_name;
USHORT component_name_length;
UCHAR message_buffer[1024];
UINT message_length = 1024;
UINT request_id;
UINT response_status;
ULONG version;
NX_AZURE_IOT_JSON_WRITER json_writer;
NX_AZURE_IOT_JSON_READER json_reader;
UCHAR json_buffer[2014];
VOID demo_entry(NX_IP* ip_ptr, NX_PACKET_POOL* pool_ptr, NX_DNS* dns_ptr, UINT (*unix_time_callback)(ULONG *unix_time))
{
/* Initialize root certificate. */
assert_int_equal(nx_secure_x509_certificate_initialize(&root_ca_cert, (UCHAR *)_nx_azure_iot_root_cert, (USHORT)_nx_azure_iot_root_cert_size,
NX_NULL, 0, NULL, 0, NX_SECURE_X509_KEY_TYPE_NONE),
NX_AZURE_IOT_SUCCESS);
assert_int_equal(nx_azure_iot_create(&iot, (UCHAR *)"Azure IoT", ip_ptr, pool_ptr, dns_ptr, (UCHAR *)demo_cloud_thread_stack,
sizeof(demo_cloud_thread_stack), DEMO_CLOUD_THREAD_PRIORITY, unix_time_callback),
NX_AZURE_IOT_SUCCESS);
/* Perform actual tests. */
api_no_model_id_test();
api_model_id_test();
}
static VOID connection_status_callback(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, UINT status)
{
NX_PARAMETER_NOT_USED(hub_client_ptr);
NX_PARAMETER_NOT_USED(status);
}
static VOID message_receive_callback_properties(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, VOID *context)
{
NX_PARAMETER_NOT_USED(hub_client_ptr);
NX_PARAMETER_NOT_USED(context);
}
static VOID reported_properties_response_callback(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, UINT request_id,
UINT response_status, ULONG version, VOID *args)
{
NX_PARAMETER_NOT_USED(hub_client_ptr);
NX_PARAMETER_NOT_USED(request_id);
NX_PARAMETER_NOT_USED(response_status);
NX_PARAMETER_NOT_USED(version);
NX_PARAMETER_NOT_USED(args);
}
static UINT api_no_model_id_test()
{
/* Using IoT Hub APIs if nx_azure_iot_hub_client_model_id_set is not called after initialization. */
assert_int_equal(nx_azure_iot_hub_client_initialize(&iot_client, &iot,
STRING_UNSIGNED_ARGS("host_name"),
STRING_UNSIGNED_ARGS("device_id"),
STRING_UNSIGNED_ARGS(""),
_nx_azure_iot_tls_supported_crypto,
_nx_azure_iot_tls_supported_crypto_size,
_nx_azure_iot_tls_ciphersuite_map,
_nx_azure_iot_tls_ciphersuite_map_size,
metadata_buffer, sizeof(metadata_buffer),
&root_ca_cert),
NX_AZURE_IOT_SUCCESS);
/* Connect APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_device_cert_set(&iot_client, &device_certificate),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_symmetric_key_set(&iot_client, "symmetric_key", sizeof("symmetric_key") - 1),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_component_add(&iot_client, "componentA", sizeof("componentA") - 1),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_connection_status_callback_set(&iot_client, connection_status_callback),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_receive_callback_set(&iot_client, NX_AZURE_IOT_HUB_PROPERTIES,
message_receive_callback_properties, NX_NULL),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_connect(&iot_client, NX_TRUE, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_disconnect(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
/* C2D APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_receive(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_property_get(&iot_client, packet_ptr,
property_name, property_name_length,
(const UCHAR **)&property_value, &property_value_lenght),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Telemetry APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_message_create(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_component_set(packet_ptr,
"componentA", sizeof("componentA") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_property_add(packet_ptr,
"propertyA", sizeof("propertyA") - 1,
"valueA", sizeof("valueA") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_send(&iot_client, packet_ptr,
"data", sizeof("data") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_message_delete(packet_ptr),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Direct Method APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_message_receive(&iot_client,
(const UCHAR **)&name, (USHORT *)&name_length,
(void **)&context_ptr, &context_length,
&packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_message_response(&iot_client, 200,
"12222", sizeof("12222") - 1,
"payload", sizeof("payload") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Command APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_command_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_command_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_command_message_receive(&iot_client,
(const UCHAR **)&component_name, &component_name_length,
(const UCHAR **)&name, &name_length,
(void **)&context_ptr, &context_length,
&packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_command_message_response(&iot_client, 200,
"12222", sizeof("12222") - 1,
"payload", sizeof("payload") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Device twin APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_response_callback_set(&iot_client,
reported_properties_response_callback,
NX_NULL),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_reported_properties_send(&iot_client,
message_buffer, message_length,
&request_id, &response_status,
&version, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_properties_request(&iot_client, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_properties_receive(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_desired_properties_receive(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Properties APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_properties_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_response_callback_set(&iot_client,
reported_properties_response_callback,
NX_NULL),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_create(&iot_client,
&packet_ptr,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_equal(nx_azure_iot_json_writer_with_buffer_init(&json_writer, json_buffer, sizeof(json_buffer)),
NX_AZURE_IOT_SUCCESS);
assert_int_equal(nx_azure_iot_json_writer_append_begin_object(&json_writer),
NX_AZURE_IOT_SUCCESS);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_component_begin(&iot_client,
&json_writer,
"componentA",
sizeof("componentA") - 1),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_component_end(&iot_client, &json_writer),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_status_begin(&iot_client, &json_writer,
"property_name", sizeof("property_name") - 1,
200, 20,
NX_NULL, 0),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_equal(nx_azure_iot_json_writer_append_int32(&json_writer, 20),
NX_AZURE_IOT_SUCCESS);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_status_end(&iot_client, &json_writer),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_send(&iot_client,
packet_ptr,
&request_id, &response_status,
&version, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_request(&iot_client, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_receive(&iot_client,
&packet_ptr,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_writable_properties_receive(&iot_client,
&packet_ptr,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_component_property_next_get(&iot_client,
&json_reader,
NX_AZURE_IOT_HUB_WRITABLE_PROPERTIES,
NX_AZURE_IOT_HUB_CLIENT_PROPERTY_WRITABLE,
(const UCHAR **)&component_name,
&component_name_length),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Deinitialize. */
assert_int_not_equal(nx_azure_iot_hub_client_deinitialize(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
}
static VOID api_model_id_test()
{
/* Using PnP APIs if nx_azure_iot_hub_client_model_id_set is called after initialization. */
assert_int_equal(nx_azure_iot_hub_client_initialize(&iot_client, &iot,
STRING_UNSIGNED_ARGS("host_name"),
STRING_UNSIGNED_ARGS("device_id"),
STRING_UNSIGNED_ARGS(""),
_nx_azure_iot_tls_supported_crypto,
_nx_azure_iot_tls_supported_crypto_size,
_nx_azure_iot_tls_ciphersuite_map,
_nx_azure_iot_tls_ciphersuite_map_size,
metadata_buffer, sizeof(metadata_buffer),
&root_ca_cert),
NX_AZURE_IOT_SUCCESS);
assert_int_equal(nx_azure_iot_hub_client_model_id_set(&iot_client,
"pnp_model_id_unit_test",
sizeof("pnp_model_id_unit_test") - 1),
NX_AZURE_IOT_SUCCESS);
/* Connect APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_device_cert_set(&iot_client, &device_certificate),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_symmetric_key_set(&iot_client, "symmetric_key", sizeof("symmetric_key") - 1),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_component_add(&iot_client, "componentA", sizeof("componentA") - 1),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_connection_status_callback_set(&iot_client, connection_status_callback),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_receive_callback_set(&iot_client, NX_AZURE_IOT_HUB_PROPERTIES,
message_receive_callback_properties, NX_NULL),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_connect(&iot_client, NX_TRUE, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_disconnect(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
/* C2D APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_receive(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_cloud_message_property_get(&iot_client, packet_ptr,
property_name, property_name_length,
(const UCHAR **)&property_value, &property_value_lenght),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Telemetry APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_message_create(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_component_set(packet_ptr,
"componentA", sizeof("componentA") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_property_add(packet_ptr,
"propertyA", sizeof("propertyA") - 1,
"valueA", sizeof("valueA") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_send(&iot_client, packet_ptr,
"data", sizeof("data") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_telemetry_message_delete(packet_ptr),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Direct Method APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_message_receive(&iot_client,
(const UCHAR **)&name, (USHORT *)&name_length,
(void **)&context_ptr, &context_length,
&packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_direct_method_message_response(&iot_client, 200,
"12222", sizeof("12222") - 1,
"payload", sizeof("payload") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Command APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_command_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_command_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_command_message_receive(&iot_client,
(const UCHAR **)&component_name, &component_name_length,
(const UCHAR **)&name, &name_length,
(void **)&context_ptr, &context_length,
&packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_command_message_response(&iot_client, 200,
"12222", sizeof("12222") - 1,
"payload", sizeof("payload") - 1,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Device twin APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_response_callback_set(&iot_client,
reported_properties_response_callback,
NX_NULL),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_reported_properties_send(&iot_client,
message_buffer, message_length,
&request_id, &response_status,
&version, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_properties_request(&iot_client, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_properties_receive(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_device_twin_desired_properties_receive(&iot_client, &packet_ptr, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Properties APIs. */
assert_int_not_equal(nx_azure_iot_hub_client_properties_enable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_disable(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_response_callback_set(&iot_client,
reported_properties_response_callback,
NX_NULL),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_create(&iot_client,
&packet_ptr,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_equal(nx_azure_iot_json_writer_with_buffer_init(&json_writer, json_buffer, sizeof(json_buffer)),
NX_AZURE_IOT_SUCCESS);
assert_int_equal(nx_azure_iot_json_writer_append_begin_object(&json_writer),
NX_AZURE_IOT_SUCCESS);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_component_begin(&iot_client,
&json_writer,
"componentA",
sizeof("componentA") - 1),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_component_end(&iot_client, &json_writer),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_status_begin(&iot_client, &json_writer,
"property_name", sizeof("property_name") - 1,
200, 20,
NX_NULL, 0),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_equal(nx_azure_iot_json_writer_append_int32(&json_writer, 20),
NX_AZURE_IOT_SUCCESS);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_status_end(&iot_client, &json_writer),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_reported_properties_send(&iot_client,
packet_ptr,
&request_id, &response_status,
&version, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_request(&iot_client, NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_receive(&iot_client,
&packet_ptr,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_writable_properties_receive(&iot_client,
&packet_ptr,
NX_NO_WAIT),
NX_AZURE_IOT_NOT_SUPPORTED);
assert_int_not_equal(nx_azure_iot_hub_client_properties_component_property_next_get(&iot_client,
&json_reader,
NX_AZURE_IOT_HUB_WRITABLE_PROPERTIES,
NX_AZURE_IOT_HUB_CLIENT_PROPERTY_WRITABLE,
(const UCHAR **)&component_name,
&component_name_length),
NX_AZURE_IOT_NOT_SUPPORTED);
/* Deinitialize. */
assert_int_not_equal(nx_azure_iot_hub_client_deinitialize(&iot_client),
NX_AZURE_IOT_NOT_SUPPORTED);
}
UINT __wrap_nx_azure_iot_publish_packet_get(NX_AZURE_IOT *nx_azure_iot_ptr, NXD_MQTT_CLIENT *client_ptr,
NX_PACKET **packet_pptr, UINT wait_option)
{
return(NX_AZURE_IOT_FAILURE);
}
UINT __wrap_az_iot_hub_client_properties_builder_begin_component(az_iot_hub_client const* client,
az_json_writer* ref_json_writer,
az_span component_name)
{
return(NX_AZURE_IOT_FAILURE);
}
UINT __wrap_az_iot_hub_client_properties_builder_end_component(az_iot_hub_client const* client,
az_json_writer* ref_json_writer)
{
return(NX_AZURE_IOT_FAILURE);
}
UINT __wrap_az_iot_hub_client_properties_builder_begin_response_status(az_iot_hub_client const* client,
az_json_writer* ref_json_writer,
az_span property_name,
int32_t ack_code,
int32_t ack_version,
az_span ack_description)
{
return(NX_AZURE_IOT_FAILURE);
}
UINT __wrap_az_iot_hub_client_properties_builder_end_response_status(az_iot_hub_client const* client,
az_json_writer* ref_json_writer)
{
return(NX_AZURE_IOT_FAILURE);
}
|