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

ibmi: skip unsupported fs test cases

On IBMi PASE, we need to skip some file permission tests for `root`.
And the file stat of symbolic links are different as well.

PR-URL: https://github.com/libuv/libuv/pull/2628
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Xu Meng 2020-01-12 20:36:53 -06:00 committed by Santiago Gimeno
parent 2475296c4e
commit ed1dc8537e
No known key found for this signature in database
GPG Key ID: F28C3C8DA33C03BE
2 changed files with 14 additions and 0 deletions

View File

@ -199,8 +199,11 @@ TEST_IMPL(fs_copyfile) {
touch_file(dst, 0);
chmod(dst, S_IRUSR|S_IRGRP|S_IROTH); /* Sets file mode to 444 (read-only). */
r = uv_fs_copyfile(NULL, &req, fixture, dst, 0, NULL);
/* On IBMi PASE, qsecofr users can overwrite read-only files */
# ifndef __PASE__
ASSERT(req.result == UV_EACCES);
ASSERT(r == UV_EACCES);
# endif
uv_fs_req_cleanup(&req);
#endif

View File

@ -309,6 +309,12 @@ static void chown_root_cb(uv_fs_t* req) {
# if defined(__CYGWIN__)
/* On Cygwin, uid 0 is invalid (no root). */
ASSERT(req->result == UV_EINVAL);
# elif defined(__PASE__)
/* On IBMi PASE, there is no root user. uid 0 is user qsecofr.
* User may grant qsecofr's privileges, including changing
* the file's ownership to uid 0.
*/
ASSERT(req->result == 0);
# else
ASSERT(req->result == UV_EPERM);
# endif
@ -2223,7 +2229,12 @@ int test_symlink_dir_impl(int type) {
#ifdef _WIN32
ASSERT(((uv_stat_t*)req.ptr)->st_size == strlen(test_dir + 4));
#else
# ifdef __PASE__
/* On IBMi PASE, st_size returns the length of the symlink itself. */
ASSERT(((uv_stat_t*)req.ptr)->st_size == strlen("test_dir_symlink"));
# else
ASSERT(((uv_stat_t*)req.ptr)->st_size == strlen(test_dir));
# endif
#endif
uv_fs_req_cleanup(&req);