check_client_subscriptions.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <pthread.h>
  7. #include "ua_types.h"
  8. #include "ua_server.h"
  9. #include "ua_client.h"
  10. #include "ua_client_highlevel.h"
  11. #include "ua_config_default.h"
  12. #include "ua_network_tcp.h"
  13. #include "check.h"
  14. #include "testing_clock.h"
  15. UA_Server *server;
  16. UA_ServerConfig *config;
  17. UA_Boolean *running;
  18. UA_ServerNetworkLayer nl;
  19. pthread_t server_thread;
  20. static void * serverloop(void *_) {
  21. while(*running)
  22. UA_Server_run_iterate(server, true);
  23. return NULL;
  24. }
  25. static void setup(void) {
  26. running = UA_Boolean_new();
  27. *running = true;
  28. config = UA_ServerConfig_new_default();
  29. server = UA_Server_new(config);
  30. UA_Server_run_startup(server);
  31. pthread_create(&server_thread, NULL, serverloop, NULL);
  32. }
  33. static void teardown(void) {
  34. *running = false;
  35. pthread_join(server_thread, NULL);
  36. UA_Server_run_shutdown(server);
  37. UA_Boolean_delete(running);
  38. UA_Server_delete(server);
  39. UA_ServerConfig_delete(config);
  40. }
  41. #ifdef UA_ENABLE_SUBSCRIPTIONS
  42. UA_Boolean notificationReceived;
  43. static void monitoredItemHandler(UA_UInt32 monId, UA_DataValue *value, void *context) {
  44. notificationReceived = true;
  45. }
  46. START_TEST(Client_subscription) {
  47. UA_Client *client = UA_Client_new(UA_ClientConfig_default);
  48. UA_StatusCode retval = UA_Client_connect(client, "opc.tcp://localhost:4840");
  49. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  50. UA_UInt32 subId;
  51. retval = UA_Client_Subscriptions_new(client, UA_SubscriptionSettings_default, &subId);
  52. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  53. /* monitor the server state */
  54. UA_UInt32 monId;
  55. retval = UA_Client_Subscriptions_addMonitoredItem(client, subId, UA_NODEID_NUMERIC(0, 2259),
  56. UA_ATTRIBUTEID_VALUE, monitoredItemHandler,
  57. NULL, &monId);
  58. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  59. UA_sleep((UA_UInt32)UA_SubscriptionSettings_default.requestedPublishingInterval + 1);
  60. notificationReceived = false;
  61. retval = UA_Client_Subscriptions_manuallySendPublishRequest(client);
  62. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  63. ck_assert_uint_eq(notificationReceived, true);
  64. retval = UA_Client_Subscriptions_removeMonitoredItem(client, subId, monId);
  65. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  66. retval = UA_Client_Subscriptions_remove(client, subId);
  67. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  68. UA_Client_disconnect(client);
  69. UA_Client_delete(client);
  70. }
  71. END_TEST
  72. START_TEST(Client_methodcall) {
  73. UA_Client *client = UA_Client_new(UA_ClientConfig_default);
  74. UA_StatusCode retval = UA_Client_connect(client, "opc.tcp://localhost:4840");
  75. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  76. UA_UInt32 subId;
  77. retval = UA_Client_Subscriptions_new(client, UA_SubscriptionSettings_default, &subId);
  78. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  79. /* monitor the server state */
  80. UA_UInt32 monId;
  81. retval = UA_Client_Subscriptions_addMonitoredItem(client, subId, UA_NODEID_NUMERIC(0, 2259),
  82. UA_ATTRIBUTEID_VALUE, NULL, NULL, &monId);
  83. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  84. /* call a method to get monitored item id */
  85. UA_Variant input;
  86. UA_Variant_init(&input);
  87. UA_Variant_setScalarCopy(&input, &subId, &UA_TYPES[UA_TYPES_UINT32]);
  88. size_t outputSize;
  89. UA_Variant *output;
  90. retval = UA_Client_call(client, UA_NODEID_NUMERIC(0, UA_NS0ID_SERVER),
  91. UA_NODEID_NUMERIC(0, UA_NS0ID_SERVER_GETMONITOREDITEMS), 1, &input, &outputSize, &output);
  92. ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
  93. ck_assert_uint_eq(outputSize, 2);
  94. ck_assert_uint_eq(output[0].arrayLength, 1);
  95. ck_assert_uint_eq(*((UA_UInt32*)output[0].data), monId);
  96. UA_Array_delete(output, outputSize, &UA_TYPES[UA_TYPES_VARIANT]);
  97. UA_Variant_deleteMembers(&input);
  98. /* call with invalid subscription id */
  99. UA_Variant_init(&input);
  100. subId = 0;
  101. UA_Variant_setScalarCopy(&input, &subId, &UA_TYPES[UA_TYPES_UINT32]);
  102. retval = UA_Client_call(client, UA_NODEID_NUMERIC(0, UA_NS0ID_SERVER),
  103. UA_NODEID_NUMERIC(0, UA_NS0ID_SERVER_GETMONITOREDITEMS), 1, &input, &outputSize, &output);
  104. ck_assert_uint_eq(retval, UA_STATUSCODE_BADSUBSCRIPTIONIDINVALID);
  105. UA_Variant_deleteMembers(&input);
  106. UA_Client_disconnect(client);
  107. UA_Client_delete(client);
  108. }
  109. END_TEST
  110. #endif /* UA_ENABLE_SUBSCRIPTIONS */
  111. static Suite* testSuite_Client(void) {
  112. TCase *tc_client = tcase_create("Client Subscription Basic");
  113. tcase_add_checked_fixture(tc_client, setup, teardown);
  114. #ifdef UA_ENABLE_SUBSCRIPTIONS
  115. tcase_add_test(tc_client, Client_subscription);
  116. #endif /* UA_ENABLE_SUBSCRIPTIONS */
  117. TCase *tc_client2 = tcase_create("Client Subscription + Method Call of GetMonitoredItmes");
  118. tcase_add_checked_fixture(tc_client2, setup, teardown);
  119. #ifdef UA_ENABLE_SUBSCRIPTIONS
  120. tcase_add_test(tc_client2, Client_methodcall);
  121. #endif /* UA_ENABLE_SUBSCRIPTIONS */
  122. Suite *s = suite_create("Client Subscription");
  123. suite_add_tcase(s,tc_client);
  124. suite_add_tcase(s,tc_client2);
  125. return s;
  126. }
  127. int main(void) {
  128. Suite *s = testSuite_Client();
  129. SRunner *sr = srunner_create(s);
  130. srunner_set_fork_status(sr, CK_NOFORK);
  131. srunner_run_all(sr,CK_NORMAL);
  132. int number_failed = srunner_ntests_failed(sr);
  133. srunner_free(sr);
  134. return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  135. }