uncert.c 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 SWCLT_HSTATE g_last_state_change;
  24. static ks_cond_t *g_cond;
  25. static void __on_sess_hmon_event(swclt_sess_t sess, swclt_hstate_change_t *state_change_info, const char *cb_data)
  26. {
  27. REQUIRE(!strcmp(cb_data, "bobo"));
  28. ks_cond_lock(g_cond);
  29. g_last_state_change = state_change_info->new_state;
  30. ks_cond_broadcast(g_cond);
  31. ks_cond_unlock(g_cond);
  32. }
  33. typedef void(*swclt_hstate_change_cb_t)(swclt_handle_base_t *ctx, swclt_hstate_change_t *state_change_request);
  34. void test_uncert_exp(ks_pool_t *pool)
  35. {
  36. swclt_sess_t sess;
  37. swclt_sess_ctx_t *sess_ctx;
  38. swclt_hmon_t hmon;
  39. REQUIRE(!ks_cond_create(&g_cond, NULL));
  40. /* Load the config we expect session to load */
  41. REQUIRE(swclt_config_get_authentication(g_uncertified_config));
  42. REQUIRE(!swclt_sess_create(&sess, g_target_ident_str, g_uncertified_config));
  43. /* Register a monitor to get to know when session comes online successfully */
  44. REQUIRE(!swclt_hmon_register(&hmon, sess, __on_sess_hmon_event, "bobo"));
  45. {
  46. ks_handle_t next = 0;
  47. uint32_t count = 0;
  48. while (KS_STATUS_SUCCESS == ks_handle_enum_type(SWCLT_HTYPE_HMON, &next))
  49. count++;
  50. REQUIRE(count == 1);
  51. }
  52. ks_cond_lock(g_cond);
  53. /* Now take the session onine */
  54. REQUIRE(!swclt_sess_connect(sess));
  55. ks_cond_wait(g_cond);
  56. /* Should be online */
  57. REQUIRE(g_last_state_change == SWCLT_HSTATE_ONLINE);
  58. /* Now disconnect the session */
  59. REQUIRE(!swclt_sess_disconnect(sess));
  60. /* Should be offline now */
  61. ks_cond_wait(g_cond);
  62. REQUIRE(g_last_state_change == SWCLT_HSTATE_OFFLINE);
  63. /* Now delete the monitor */
  64. ks_handle_destroy(&hmon);
  65. ks_cond_unlock(g_cond);
  66. /* Go online again */
  67. REQUIRE(!swclt_sess_connect(sess));
  68. /* Wait for its low level handle state to be back to OK */
  69. while (swclt_hstate_check(sess, NULL))
  70. ks_sleep(1000);
  71. /* Ok we're done */
  72. ks_cond_destroy(&g_cond);
  73. ks_handle_destroy(&sess);
  74. }