test-udp-dgram-too-big.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to
  5. * deal in the Software without restriction, including without limitation the
  6. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  7. * sell copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  18. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  19. * IN THE SOFTWARE.
  20. */
  21. #include "uv.h"
  22. #include "task.h"
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #define CHECK_HANDLE(handle) \
  27. ASSERT((uv_udp_t*)(handle) == &handle_)
  28. #define CHECK_REQ(req) \
  29. ASSERT((req) == &req_);
  30. static uv_udp_t handle_;
  31. static uv_udp_send_t req_;
  32. static int send_cb_called;
  33. static int close_cb_called;
  34. static void close_cb(uv_handle_t* handle) {
  35. CHECK_HANDLE(handle);
  36. close_cb_called++;
  37. }
  38. static void send_cb(uv_udp_send_t* req, int status) {
  39. CHECK_REQ(req);
  40. CHECK_HANDLE(req->handle);
  41. ASSERT(status == -1);
  42. ASSERT(uv_last_error(uv_default_loop()).code == UV_EMSGSIZE);
  43. uv_close((uv_handle_t*)req->handle, close_cb);
  44. send_cb_called++;
  45. }
  46. TEST_IMPL(udp_dgram_too_big) {
  47. char dgram[65536]; /* 64K MTU is unlikely, even on localhost */
  48. struct sockaddr_in addr;
  49. uv_buf_t buf;
  50. int r;
  51. memset(dgram, 42, sizeof dgram); /* silence valgrind */
  52. r = uv_udp_init(uv_default_loop(), &handle_);
  53. ASSERT(r == 0);
  54. buf = uv_buf_init(dgram, sizeof dgram);
  55. addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
  56. r = uv_udp_send(&req_, &handle_, &buf, 1, addr, send_cb);
  57. ASSERT(r == 0);
  58. ASSERT(close_cb_called == 0);
  59. ASSERT(send_cb_called == 0);
  60. uv_run(uv_default_loop(), UV_RUN_DEFAULT);
  61. ASSERT(send_cb_called == 1);
  62. ASSERT(close_cb_called == 1);
  63. MAKE_VALGRIND_HAPPY();
  64. return 0;
  65. }