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

Changes since version 1.46.0: * test: fix license blurb (Ben Noordhuis) * linux: fix harmless warn_unused_result warning (Shuduo Sang) * darwin: fix build warnings (小明) * linux: don't use io_uring on pre-5.10.186 kernels (Ben Noordhuis) * fs: fix WTF-8 decoding issue (Jameson Nash) * test: enable disabled tcp_connect6_error_fault (Ben Noordhuis) * test: enable disabled fs_link (Ben Noordhuis) * test: enable disabled spawn_same_stdout_stderr (Ben Noordhuis) * linux: handle UNAME26 personality (Ben Noordhuis) * build: move cmake_minimum_required version to 3.9 (Keith Winstein) * unix: set ipv6 scope id for link-local addresses (Ben Noordhuis) * unix: match kqueue and epoll code (Trevor Norris) * win,spawn: allow `%PATH%` to be unset (Kyle Edwards) * doc: switch to Furo, a more modern Sphinx theme (Saúl Ibarra Corretgé) * darwin: make TCP_KEEPINTVL and TCP_KEEPCNT available (小明) * win,fs: avoid winapi macro redefinition (Brad King) * linux: add missing riscv syscall numbers (michalbiesek) * doc: fix broken "Shared library" Wikipedia link (Alois Klink) * unix: get mainline kernel version in Ubuntu (Santiago Gimeno) * unix: get mainline kernel version in Debian (Ben Noordhuis) * build: fix qemu install in CI-unix workflow (Santiago Gimeno) * unix: disable io_uring close on selected kernels (Santiago Gimeno) * test: skip tests when ipv6 is not available (Santiago Gimeno) * ibmi: implement ifaddrs, getifaddrs, freeifaddrs (Abdirahim Musse) * unix: reset signal counters after fork (SmorkalovG) * win,process: avoid assert after spawning Store app (Jameson Nash) * unix: remove pread/preadv conditionals (Ben Noordhuis) * unix: remove pwrite/pwritev conditionals (Ben Noordhuis) * darwin: remove workaround for data corruption bug (Ben Noordhuis) * src: default to stream=stderr in handle printer (Ben Noordhuis) * test: switch to new-style ASSERT_EQ macros (Pleuvens) * zos: correctly get cpu model in uv_cpu_info() (jolai) * test: fix get_passwd2 on IBM i (Abdirahim Musse) * unix: don't malloc on sync uv_fs_read (Ben Noordhuis) * freebsd: get fs event path with fcntl(F_KINFO) (David Carlier) * test: switch from ASSERT_* to ASSERT_PTR_* (Pleuvens) * darwin: workaround apple pthread_cond_wait bug (Julien Roncaglia) * doc: uv_close should be called after exit callback (Pleuvens) * test: 192.0.2.0/24 is the actual -TEST-NET-1 (prubel) * unix: add back preadv/pwritev fallback (Ben Noordhuis) * unix: rename variable for consistency (Ben Noordhuis) * unix: merge read/write code into single functions (Ben Noordhuis) * doc: filename arg to uv_fs_event_cb can be NULL (Ben Noordhuis) * build,win: we need to link against shell32.lib (Per Allansson) * unix: no preadv/pwritev workaround if not needed (Jeffrey H. Johnson) * build: add CI for Windows ARM64 (build only) (Per Allansson) * linux: disable io_uring on 32 bits arm systems (Ben Noordhuis) * build: run sanitizers on macos ci (Ben Noordhuis) * misc: export WTF8 conversion utilities (Jameson Nash) * build: fix libuv.a file name for cmake (Jameson Nash) * build: add windows ubsan and clang ci (Matheus Izvekov) * win: improve accuracy of ProductName between arch (Christian Heimlich) -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEz7ucqaW+r9cOKzxaeaZ8VaNnnIsFAmVJLa4ACgkQeaZ8VaNn nIvdMw//XQzU1OasKcghWZZAFmrgy8D+40Q5drSgCFryAA+WA9wXruKOeqQ3vw7+ 9Xwai97fMbxGSFhR2IwjbwD8o8DZotDTMBgSUvuyAlzdw0xB2D+eAnvxaMmYg2km R5eNb2KgmzhC7HFuPbpjWbL1mEnBU8rTSzV6yeMs2LXfLquJoopmgAjB2MXS6/Fr +WkwJx7/B/3wEhhbX5sopd6PT8UcWdbSvB/S+PU12kI0KgJeJlq0jXd5LyDaQYI6 j4XYcpgEp8B/gyiXSgso+eg1CiZQUYVMXZ5+6YA5le/s5ieJwJ2cEvo/HJa5guZ/ PBb+ulucUaupBzQFaPYwnrEzE3YHNVppBcfryxqn48Ih0Z9pNs/6EdxqggYvAyWk VA9Yi0qDFSFgD0hZSkvi/m/UEH17FLTac1DSob4EKfwAJ04spmEtiBWaL+7wQ/ca Kc819NXBaFUb+BEkN711B1CvaT6aef9wZcis42MPHjHJ19BNgb4uAa3GbmrvB2dt EodLGlbOAkKLFC29qAGeKZKhnSWfZS/HvuyqMOgONuJTj0Jm/RdwqIsvILejtj32 7m9saTkRWav4L1yvksUYT24WIk1e324gBgm9411IggdDILgbLYrwWNZb56FgMDQb cqmg0Ap6zMZ9UOf4hfqTiKZPjqqfxgSp20zCjVTy+vsCSXJnFaQ= =7yzD -----END PGP SIGNATURE----- Merge tag 'v1.47.0' into merge_1.47.0
460 lines
12 KiB
C
460 lines
12 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.
|
|
*/
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include "uv.h"
|
|
#include "task.h"
|
|
|
|
#if defined(__unix__) || defined(__POSIX__) || \
|
|
defined(__APPLE__) || defined(__sun) || \
|
|
defined(_AIX) || defined(__MVS__) || \
|
|
defined(__HAIKU__)
|
|
# include <unistd.h> /* unlink, rmdir */
|
|
#else
|
|
# include <direct.h>
|
|
# define rmdir _rmdir
|
|
# define unlink _unlink
|
|
#endif
|
|
|
|
static int flags;
|
|
|
|
static uv_fs_t close_req;
|
|
static uv_fs_t mkdir_req;
|
|
static uv_fs_t open_req;
|
|
static uv_fs_t read_req;
|
|
static uv_fs_t rmdir_req;
|
|
static uv_fs_t unlink_req;
|
|
static uv_fs_t write_req;
|
|
|
|
static char buf[32];
|
|
static uv_buf_t iov;
|
|
|
|
/* Opening the same file multiple times quickly can cause uv_fs_open to fail
|
|
* with EBUSY, so append an identifier to the file name for each operation */
|
|
static int sid = 0;
|
|
|
|
#define FILE_NAME_SIZE 128
|
|
static char absent_file[FILE_NAME_SIZE];
|
|
static char empty_file[FILE_NAME_SIZE];
|
|
static char dummy_file[FILE_NAME_SIZE];
|
|
static char empty_dir[] = "empty_dir";
|
|
|
|
|
|
static void setup(void) {
|
|
int r;
|
|
|
|
/* empty_dir */
|
|
r = uv_fs_rmdir(NULL, &rmdir_req, empty_dir, NULL);
|
|
ASSERT(r == 0 || r == UV_ENOENT);
|
|
ASSERT(rmdir_req.result == 0 || rmdir_req.result == UV_ENOENT);
|
|
uv_fs_req_cleanup(&rmdir_req);
|
|
|
|
r = uv_fs_mkdir(NULL, &mkdir_req, empty_dir, 0755, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(mkdir_req.result);
|
|
uv_fs_req_cleanup(&mkdir_req);
|
|
}
|
|
|
|
|
|
static void refresh(void) {
|
|
int r;
|
|
uv_os_fd_t file;
|
|
|
|
/* absent_file */
|
|
sprintf(absent_file, "test_file_%d", sid++);
|
|
|
|
r = uv_fs_unlink(NULL, &unlink_req, absent_file, NULL);
|
|
ASSERT(r == 0 || r == UV_ENOENT);
|
|
ASSERT(unlink_req.result == 0 || unlink_req.result == UV_ENOENT);
|
|
uv_fs_req_cleanup(&unlink_req);
|
|
|
|
/* empty_file */
|
|
sprintf(empty_file, "test_file_%d", sid++);
|
|
|
|
r = uv_fs_open(NULL, &open_req, empty_file,
|
|
UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY, S_IWUSR | S_IRUSR, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_GE(open_req.result, 0);
|
|
file = (uv_os_fd_t) open_req.result;
|
|
uv_fs_req_cleanup(&open_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, file, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
|
|
/* dummy_file */
|
|
sprintf(dummy_file, "test_file_%d", sid++);
|
|
|
|
r = uv_fs_open(NULL, &open_req, dummy_file,
|
|
UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY, S_IWUSR | S_IRUSR, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_GE(open_req.result, 0);
|
|
file = (uv_os_fd_t) open_req.result;
|
|
uv_fs_req_cleanup(&open_req);
|
|
|
|
iov = uv_buf_init("a", 1);
|
|
r = uv_fs_write(NULL, &write_req, file, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(1, r);
|
|
ASSERT_EQ(1, write_req.result);
|
|
uv_fs_req_cleanup(&write_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, file, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
}
|
|
|
|
|
|
static void cleanup(void) {
|
|
unlink(absent_file);
|
|
unlink(empty_file);
|
|
unlink(dummy_file);
|
|
}
|
|
|
|
|
|
static void openFail(char *file, int error) {
|
|
int r;
|
|
|
|
refresh();
|
|
|
|
r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL);
|
|
ASSERT_EQ(r, error);
|
|
ASSERT_EQ(open_req.result, error);
|
|
uv_fs_req_cleanup(&open_req);
|
|
|
|
/* Ensure the first call does not create the file */
|
|
r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL);
|
|
ASSERT_EQ(r, error);
|
|
ASSERT_EQ(open_req.result, error);
|
|
uv_fs_req_cleanup(&open_req);
|
|
|
|
cleanup();
|
|
}
|
|
|
|
|
|
static void refreshOpen(char *file) {
|
|
int r;
|
|
|
|
refresh();
|
|
|
|
r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL);
|
|
ASSERT_GE(r, 0);
|
|
ASSERT_GE(open_req.result, 0);
|
|
uv_fs_req_cleanup(&open_req);
|
|
}
|
|
|
|
|
|
static void writeExpect(char *file, char *expected, int size) {
|
|
int r;
|
|
uv_os_fd_t fd;
|
|
|
|
refreshOpen(file);
|
|
fd = (uv_os_fd_t) open_req.result;
|
|
|
|
iov = uv_buf_init("b", 1);
|
|
r = uv_fs_write(NULL, &write_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(1, r);
|
|
ASSERT_EQ(1, write_req.result);
|
|
uv_fs_req_cleanup(&write_req);
|
|
|
|
iov = uv_buf_init("c", 1);
|
|
r = uv_fs_write(NULL, &write_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(1, r);
|
|
ASSERT_EQ(1, write_req.result);
|
|
uv_fs_req_cleanup(&write_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, fd, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
|
|
/* Check contents */
|
|
r = uv_fs_open(NULL, &open_req, file, UV_FS_O_RDONLY, S_IWUSR | S_IRUSR, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_GE(open_req.result, 0);
|
|
fd = (uv_os_fd_t) open_req.result;
|
|
uv_fs_req_cleanup(&open_req);
|
|
|
|
iov = uv_buf_init(buf, sizeof(buf));
|
|
r = uv_fs_read(NULL, &read_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(r, size);
|
|
ASSERT_EQ(read_req.result, size);
|
|
ASSERT_OK(strncmp(buf, expected, size));
|
|
uv_fs_req_cleanup(&read_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, fd, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
|
|
cleanup();
|
|
}
|
|
|
|
|
|
static void writeFail(char *file, int error) {
|
|
int r;
|
|
uv_os_fd_t fd;
|
|
|
|
refreshOpen(file);
|
|
fd = (uv_os_fd_t) open_req.result;
|
|
|
|
iov = uv_buf_init("z", 1);
|
|
r = uv_fs_write(NULL, &write_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(r, error);
|
|
ASSERT_EQ(write_req.result, error);
|
|
uv_fs_req_cleanup(&write_req);
|
|
|
|
iov = uv_buf_init("z", 1);
|
|
r = uv_fs_write(NULL, &write_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(r, error);
|
|
ASSERT_EQ(write_req.result, error);
|
|
uv_fs_req_cleanup(&write_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, fd, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
|
|
cleanup();
|
|
}
|
|
|
|
|
|
static void readExpect(char *file, char *expected, int size) {
|
|
int r;
|
|
uv_os_fd_t fd;
|
|
|
|
refreshOpen(file);
|
|
fd = (uv_os_fd_t) open_req.result;
|
|
|
|
iov = uv_buf_init(buf, sizeof(buf));
|
|
r = uv_fs_read(NULL, &read_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(r, size);
|
|
ASSERT_EQ(read_req.result, size);
|
|
ASSERT_OK(strncmp(buf, expected, size));
|
|
uv_fs_req_cleanup(&read_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, fd, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
|
|
cleanup();
|
|
}
|
|
|
|
|
|
static void readFail(char *file, int error) {
|
|
int r;
|
|
uv_os_fd_t fd;
|
|
|
|
refreshOpen(file);
|
|
fd = (uv_os_fd_t) open_req.result;
|
|
|
|
iov = uv_buf_init(buf, sizeof(buf));
|
|
r = uv_fs_read(NULL, &read_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(r, error);
|
|
ASSERT_EQ(read_req.result, error);
|
|
uv_fs_req_cleanup(&read_req);
|
|
|
|
iov = uv_buf_init(buf, sizeof(buf));
|
|
r = uv_fs_read(NULL, &read_req, fd, &iov, 1, -1, NULL);
|
|
ASSERT_EQ(r, error);
|
|
ASSERT_EQ(read_req.result, error);
|
|
uv_fs_req_cleanup(&read_req);
|
|
|
|
r = uv_fs_close(NULL, &close_req, fd, NULL);
|
|
ASSERT_OK(r);
|
|
ASSERT_OK(close_req.result);
|
|
uv_fs_req_cleanup(&close_req);
|
|
|
|
cleanup();
|
|
}
|
|
|
|
|
|
static void fs_open_flags(int add_flags) {
|
|
/* Follow the order from
|
|
* https://github.com/nodejs/node/blob/1a96abe849/lib/internal/fs/utils.js#L329-L354
|
|
*/
|
|
|
|
/* r */
|
|
flags = add_flags | UV_FS_O_RDONLY;
|
|
openFail(absent_file, UV_ENOENT);
|
|
writeFail(empty_file, UV_EBADF);
|
|
readExpect(empty_file, "", 0);
|
|
writeFail(dummy_file, UV_EBADF);
|
|
readExpect(dummy_file, "a", 1);
|
|
writeFail(empty_dir, UV_EBADF);
|
|
readFail(empty_dir, UV_EISDIR);
|
|
|
|
/* rs */
|
|
flags = add_flags | UV_FS_O_RDONLY | UV_FS_O_SYNC;
|
|
openFail(absent_file, UV_ENOENT);
|
|
writeFail(empty_file, UV_EBADF);
|
|
readExpect(empty_file, "", 0);
|
|
writeFail(dummy_file, UV_EBADF);
|
|
readExpect(dummy_file, "a", 1);
|
|
writeFail(empty_dir, UV_EBADF);
|
|
readFail(empty_dir, UV_EISDIR);
|
|
|
|
/* r+ */
|
|
flags = add_flags | UV_FS_O_RDWR;
|
|
openFail(absent_file, UV_ENOENT);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readExpect(empty_file, "", 0);
|
|
writeExpect(dummy_file, "bc", 2);
|
|
readExpect(dummy_file, "a", 1);
|
|
writeFail(empty_dir, UV_EISDIR);
|
|
readFail(empty_dir, UV_EISDIR);
|
|
|
|
/* rs+ */
|
|
flags = add_flags | UV_FS_O_RDWR | UV_FS_O_SYNC;
|
|
openFail(absent_file, UV_ENOENT);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readExpect(empty_file, "", 0);
|
|
writeExpect(dummy_file, "bc", 2);
|
|
readExpect(dummy_file, "a", 1);
|
|
writeFail(empty_dir, UV_EISDIR);
|
|
readFail(empty_dir, UV_EISDIR);
|
|
|
|
/* w */
|
|
flags = add_flags | UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readFail(absent_file, UV_EBADF);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readFail(empty_file, UV_EBADF);
|
|
writeExpect(dummy_file, "bc", 2);
|
|
readFail(dummy_file, UV_EBADF);
|
|
openFail(empty_dir, UV_EISDIR);
|
|
|
|
/* wx */
|
|
flags = add_flags | UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY |
|
|
UV_FS_O_EXCL;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readFail(absent_file, UV_EBADF);
|
|
openFail(empty_file, UV_EEXIST);
|
|
openFail(dummy_file, UV_EEXIST);
|
|
openFail(empty_dir, UV_EEXIST);
|
|
|
|
/* w+ */
|
|
flags = add_flags | UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_RDWR;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readExpect(absent_file, "", 0);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readExpect(empty_file, "", 0);
|
|
writeExpect(dummy_file, "bc", 2);
|
|
readExpect(dummy_file, "", 0);
|
|
openFail(empty_dir, UV_EISDIR);
|
|
|
|
/* wx+ */
|
|
flags = add_flags | UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_RDWR |
|
|
UV_FS_O_EXCL;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readExpect(absent_file, "", 0);
|
|
openFail(empty_file, UV_EEXIST);
|
|
openFail(dummy_file, UV_EEXIST);
|
|
openFail(empty_dir, UV_EEXIST);
|
|
|
|
/* a */
|
|
flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_WRONLY;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readFail(absent_file, UV_EBADF);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readFail(empty_file, UV_EBADF);
|
|
writeExpect(dummy_file, "abc", 3);
|
|
readFail(dummy_file, UV_EBADF);
|
|
writeFail(empty_dir, UV_EISDIR);
|
|
readFail(empty_dir, UV_EBADF);
|
|
|
|
/* ax */
|
|
flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_WRONLY |
|
|
UV_FS_O_EXCL;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readFail(absent_file, UV_EBADF);
|
|
openFail(empty_file, UV_EEXIST);
|
|
openFail(dummy_file, UV_EEXIST);
|
|
openFail(empty_dir, UV_EEXIST);
|
|
|
|
/* as */
|
|
flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_WRONLY |
|
|
UV_FS_O_SYNC;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readFail(absent_file, UV_EBADF);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readFail(empty_file, UV_EBADF);
|
|
writeExpect(dummy_file, "abc", 3);
|
|
readFail(dummy_file, UV_EBADF);
|
|
writeFail(empty_dir, UV_EISDIR);
|
|
readFail(empty_dir, UV_EBADF);
|
|
|
|
/* a+ */
|
|
flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_RDWR;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readExpect(absent_file, "", 0);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readExpect(empty_file, "", 0);
|
|
writeExpect(dummy_file, "abc", 3);
|
|
readExpect(dummy_file, "a", 1);
|
|
writeFail(empty_dir, UV_EISDIR);
|
|
readFail(empty_dir, UV_EISDIR);
|
|
|
|
/* ax+ */
|
|
flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_RDWR |
|
|
UV_FS_O_EXCL;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readExpect(absent_file, "", 0);
|
|
openFail(empty_file, UV_EEXIST);
|
|
openFail(dummy_file, UV_EEXIST);
|
|
openFail(empty_dir, UV_EEXIST);
|
|
|
|
/* as+ */
|
|
flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_RDWR |
|
|
UV_FS_O_SYNC;
|
|
writeExpect(absent_file, "bc", 2);
|
|
readExpect(absent_file, "", 0);
|
|
writeExpect(empty_file, "bc", 2);
|
|
readExpect(empty_file, "", 0);
|
|
writeExpect(dummy_file, "abc", 3);
|
|
readExpect(dummy_file, "a", 1);
|
|
writeFail(empty_dir, UV_EISDIR);
|
|
readFail(empty_dir, UV_EISDIR);
|
|
}
|
|
|
|
|
|
TEST_IMPL(fs_open_flags) {
|
|
setup();
|
|
|
|
fs_open_flags(0);
|
|
fs_open_flags(UV_FS_O_FILEMAP);
|
|
|
|
/* Cleanup. */
|
|
rmdir(empty_dir);
|
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
|
return 0;
|
|
}
|
|
|
|
#else
|
|
|
|
typedef int file_has_no_tests; /* ISO C forbids an empty translation unit. */
|
|
|
|
#endif /* ifndef _WIN32 */
|