mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00

Changes since version 1.47.0: * misc: remove deprecated stalebot file (Jameson Nash) * build: disable windows asan buildbot (Ben Noordhuis) * test: don't run tcp_writealot under msan (Ben Noordhuis) * build,win: remove extraneous -lshell32 (Ben Noordhuis) * unix: ignore ifaddrs with NULL ifa_addr (Stephen Gallagher) * unix,win: utility for setting priority for thread (Hao Hu) * pipe: add back error handling to connect / bind (Jameson Nash) * test: check if ipv6 link-local traffic is routable (Ben Noordhuis) * win: remove check for UV_PIPE_NO_TRUNCATE (Jameson Nash) * linux: disable io_uring on hppa below kernel 6.1.51 (matoro) * unix,win: fix read past end of pipe name buffer (Ben Noordhuis) * unix: unbreak macOS < 10.14 (Sergey Fedorov) * aix: disable ipv6 link local (Abdirahim Musse) * doc: move cjihrig to emeriti (cjihrig) * unix: correct pwritev conditional (Bo Anderson) * test_fs.c: Fix issue on 32-bit systems using btrfs (Stephen Gallagher) * misc: ignore libuv-release-tool files (Jameson Nash) * win: honor NoDefaultCurrentDirectoryInExePath env var (Ardi Nugraha) * idna: fix compilation warning (Saúl Ibarra Corretgé) * linux: remove HAVE_IFADDRS_H macro (Ben Noordhuis) * test: skip tcp-write-in-a-row on IBM i (Abdirahim Musse) * build,win: work around missing uuid.dll on MinGW (Anton Bachin) * win: stop using deprecated names (Matheus Izvekov) * unix,win: fix busy loop with zero timeout timers (Matheus Izvekov) * aix,ibmi: use uv_interface_addresses instead of getifaddrs (Abdirahim Musse) * linux: fix bind/connect for abstract sockets (Santiago Gimeno) * win: replace c99 comments with c89 comments (Trevor Flynn) * build: add .cache clangd folder to .gitignore (Juan José Arboleda) * unix: support full TCP keep-alive on Solaris (Andy Pan) * freebsd: fix F_KINFO file path handling (David Carlier) * linux: retry fs op if unsupported by io_uring (Santiago Gimeno) * freebsd: fix build on non-intel archs (David Carlier) * unix: optimize uv__tcp_keepalive cpp directives (Andy Pan) * linux: disable io_uring on ppc64 and ppc64le (Brad King) * doc: add very basic Security Policy document (Santiago Gimeno) * build: re-enable msvc-asan job on CI (Jameson Nash) * win/spawn: optionally run executable paths with no file extension (Brad King) * win: fix ESRCH implementation (Jameson Nash) * unix,win: reset the timer queue on stop (Santiago Gimeno) * fix: always zero-terminate idna output (Ben Noordhuis) * fix: reject zero-length idna inputs (Ben Noordhuis) * test: empty strings are not valid IDNA (Santiago Gimeno) * Merge pull request from GHSA-f74f-cvh7-c6q6 (Ben Noordhuis) -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEYS8OrZQBYiN530QC8ow8jaM8A74FAmXD5fwACgkQ8ow8jaM8 A76H+g/9F2O6hXWfm5LACvIRhcDovK1NLprTp5Ae5qA9klSDzClxi6n7/B9NtDhv X2EwEXhQpc/Y600dbfcmKr6P5Gt2FDhjO3iy9gCrkUN+ZHV7kRCb8dmp+eyGcOag uKqkkpZN6aiT0Jp4H4x66VnSotvLeilHzs16+A3/r5wUNmqzhj0cG/UVaDyZfYEH NCqv5MFw2N9qO5lnsu2g1sDEujnjWhXUcY9D1vVUDf63CU09n+lz1LKRB5LKEGRy bPF/IjuxJAJQA+gsgj1dP2nuUH8IGhNOpkQ2WG8wEuPp6hahGvND4YovP/sDY7pV 9oo+73v1boAlYVS9IhAINVnKiPJx7tHJQvMcmgezSBCrd6v+PoWfL4A9oAWOp1qX ju+PC2Xk7E9Kt5gC9hjDzdMt6nw7Ab5pJ3ZcVF/2Sq27w0T4nxAOOpAt7JnJ53ug o26RWlO9NvBe30Uh2fwqye1UuL17Qjo7Y+ztrMQGmeV+RW693xqZ/bnVOhQupfqI fJNl1BBgInT9IU+A8ZtHeDuRf04hEit0rzS/yGrcHa1bHEHorG5W52nazYIsQURM hwWBDQ2dH2iTogHGdQ/CKdMGwuo+RwCavBXCHu03jf10hy+ImHF5ifJA7WLeH0oF QlCmeJl/26sOHlEa7wQnjhzh7YNg6JDuq6K22a9iR5vnduK1ByU= =67rH -----END PGP SIGNATURE----- Merge tag 'v1.48.0' into merge_1.48.0
116 lines
3.6 KiB
C
116 lines
3.6 KiB
C
/* Copyright libuv project contributors. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "uv.h"
|
|
#include "task.h"
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef _WIN32
|
|
# define S_IFDIR _S_IFDIR
|
|
#endif
|
|
|
|
int cookie1;
|
|
int cookie2;
|
|
int cookie3;
|
|
|
|
|
|
TEST_IMPL(handle_type_name) {
|
|
ASSERT_OK(strcmp(uv_handle_type_name(UV_NAMED_PIPE), "pipe"));
|
|
ASSERT_OK(strcmp(uv_handle_type_name(UV_UDP), "udp"));
|
|
ASSERT_OK(strcmp(uv_handle_type_name(UV_FILE), "file"));
|
|
ASSERT_NULL(uv_handle_type_name(UV_HANDLE_TYPE_MAX));
|
|
ASSERT_NULL(uv_handle_type_name(UV_HANDLE_TYPE_MAX + 1));
|
|
ASSERT_NULL(uv_handle_type_name(UV_UNKNOWN_HANDLE));
|
|
return 0;
|
|
}
|
|
|
|
|
|
TEST_IMPL(req_type_name) {
|
|
ASSERT_OK(strcmp(uv_req_type_name(UV_REQ), "req"));
|
|
ASSERT_OK(strcmp(uv_req_type_name(UV_UDP_SEND), "udp_send"));
|
|
ASSERT_OK(strcmp(uv_req_type_name(UV_WORK), "work"));
|
|
ASSERT_NULL(uv_req_type_name(UV_REQ_TYPE_MAX));
|
|
ASSERT_NULL(uv_req_type_name(UV_REQ_TYPE_MAX + 1));
|
|
ASSERT_NULL(uv_req_type_name(UV_UNKNOWN_REQ));
|
|
return 0;
|
|
}
|
|
|
|
|
|
TEST_IMPL(getters_setters) {
|
|
uv_loop_t* loop;
|
|
uv_pipe_t* pipe;
|
|
uv_fs_t* fs;
|
|
int r;
|
|
|
|
loop = malloc(uv_loop_size());
|
|
ASSERT_NOT_NULL(loop);
|
|
r = uv_loop_init(loop);
|
|
ASSERT_OK(r);
|
|
|
|
uv_loop_set_data(loop, &cookie1);
|
|
ASSERT_PTR_EQ(loop->data, &cookie1);
|
|
ASSERT_PTR_EQ(uv_loop_get_data(loop), &cookie1);
|
|
|
|
pipe = malloc(uv_handle_size(UV_NAMED_PIPE));
|
|
r = uv_pipe_init(loop, pipe, 0);
|
|
ASSERT_OK(r);
|
|
ASSERT_EQ(uv_handle_get_type((uv_handle_t*)pipe), UV_NAMED_PIPE);
|
|
|
|
ASSERT_PTR_EQ(uv_handle_get_loop((uv_handle_t*)pipe), loop);
|
|
pipe->data = &cookie2;
|
|
ASSERT_PTR_EQ(uv_handle_get_data((uv_handle_t*)pipe), &cookie2);
|
|
uv_handle_set_data((uv_handle_t*)pipe, &cookie1);
|
|
ASSERT_PTR_EQ(uv_handle_get_data((uv_handle_t*)pipe), &cookie1);
|
|
ASSERT_PTR_EQ(pipe->data, &cookie1);
|
|
|
|
ASSERT_OK(uv_stream_get_write_queue_size((uv_stream_t*)pipe));
|
|
pipe->write_queue_size++;
|
|
ASSERT_EQ(1, uv_stream_get_write_queue_size((uv_stream_t*)pipe));
|
|
pipe->write_queue_size--;
|
|
uv_close((uv_handle_t*)pipe, NULL);
|
|
|
|
r = uv_run(loop, UV_RUN_DEFAULT);
|
|
ASSERT_OK(r);
|
|
|
|
fs = malloc(uv_req_size(UV_FS));
|
|
uv_fs_stat(loop, fs, ".", NULL);
|
|
|
|
r = uv_run(loop, UV_RUN_DEFAULT);
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_PTR_EQ(uv_req_get_loop((uv_req_t*)fs), loop);
|
|
ASSERT_EQ(uv_fs_get_type(fs), UV_FS_STAT);
|
|
ASSERT_OK(uv_fs_get_result(fs));
|
|
ASSERT_PTR_EQ(uv_fs_get_ptr(fs), uv_fs_get_statbuf(fs));
|
|
ASSERT(uv_fs_get_statbuf(fs)->st_mode & S_IFDIR);
|
|
ASSERT_OK(strcmp(uv_fs_get_path(fs), "."));
|
|
uv_fs_req_cleanup(fs);
|
|
|
|
r = uv_loop_close(loop);
|
|
ASSERT_OK(r);
|
|
|
|
free(pipe);
|
|
free(fs);
|
|
free(loop);
|
|
return 0;
|
|
}
|