callback.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (c) 2018 SignalWire, Inc
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in all
  12. * copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. #include "swclt_test.h"
  23. static ks_bool_t g_called = KS_FALSE;
  24. void route_add_handler(swclt_sess_t sess, const blade_netcast_rqu_t *rqu, const blade_netcast_route_add_param_t *params)
  25. {
  26. g_called = KS_TRUE;
  27. }
  28. void test_callback(ks_pool_t *pool)
  29. {
  30. swclt_sess_t sess;
  31. swclt_sess_ctx_t *sess_ctx;
  32. swclt_store_t store;
  33. /* Load the config we expect session to load */
  34. REQUIRE(swclt_config_get_private_key_path(g_certified_config));
  35. REQUIRE(swclt_config_get_client_cert_path(g_certified_config));
  36. REQUIRE(swclt_config_get_cert_chain_path(g_certified_config));
  37. REQUIRE(!swclt_sess_create(&sess, g_target_ident_str, g_certified_config));
  38. /* Get the node store */
  39. REQUIRE(!swclt_sess_nodestore(sess, &store));
  40. /* Add a store callback */
  41. REQUIRE(!swclt_store_cb_route_add(store, route_add_handler));
  42. /* Go online */
  43. REQUIRE(!swclt_sess_connect(sess));
  44. /* Wait for its low level handle state to be ready */
  45. while (!swclt_sess_connected(sess))
  46. ks_sleep(1000);
  47. ks_log(KS_LOG_INFO, "*** Online!");
  48. /* Wait for the netcast */
  49. ks_sleep_ms(5000);
  50. REQUIRE(g_called);
  51. /* Ok we're done */
  52. ks_handle_destroy(&sess);
  53. }