From 69a6365ef3634a8c7b2afbe9a6ba3ecc88db916a Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov <gorcunov@gmail.com> Date: Mon, 6 May 2019 13:22:21 +0300 Subject: [PATCH] test: app/fio -- Fixup modes for open There were typos -- we should use octal base, othervise numbers are treated as decimals. --- test/app-tap/csv.test.lua | 4 ++-- test/app/fio.result | 20 ++++++++++---------- test/app/fio.test.lua | 20 ++++++++++---------- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/test/app-tap/csv.test.lua b/test/app-tap/csv.test.lua index 0a656aaa34..a7f17b1ea6 100755 --- a/test/app-tap/csv.test.lua +++ b/test/app-tap/csv.test.lua @@ -58,7 +58,7 @@ file2 = fio.pathjoin(tmpdir, 'file.2') file3 = fio.pathjoin(tmpdir, 'file.3') file4 = fio.pathjoin(tmpdir, 'file.4') -local f = fio.open(file1, { 'O_WRONLY', 'O_TRUNC', 'O_CREAT' }, 0777) +local f = fio.open(file1, { 'O_WRONLY', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) f:write("123 , 5 , 92 , 0, 0\n" .. "1, 12 34, 56, \"quote , \", 66\nok") f:close() @@ -67,7 +67,7 @@ test:is(table2str(csv.load(f, {chunk_size = 10})), test4_ans, "fio test1") f:close() -f = fio.open(file2, { 'O_WRONLY', 'O_TRUNC', 'O_CREAT' }, 0777) +f = fio.open(file2, { 'O_WRONLY', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) f:write("1\n23,456,abcac,\'multiword field 4\'\n" .. "none,none,0\n" .. ",,\n" .. diff --git a/test/app/fio.result b/test/app/fio.result index 39b2ad0b52..e948050301 100644 --- a/test/app/fio.result +++ b/test/app/fio.result @@ -114,7 +114,7 @@ err:match("open") ~= nil --- - true ... -fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) --- ... fh1 ~= nil @@ -704,7 +704,7 @@ fio.stat(tmp2) ~= nil --- - true ... -fio.mktree(tree2, 0777) +fio.mktree(tree2, tonumber('0777', 8)) --- - true ... @@ -727,7 +727,7 @@ file5 = fio.pathjoin(tree, 'file.5') file6 = fio.pathjoin(tree, 'file.6') --- ... -fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) --- ... fh1:write("gogo") @@ -738,7 +738,7 @@ fh1:close() --- - true ... -fh1 = fio.open(file2, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh1 = fio.open(file2, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) --- ... fh1:write("lolo") @@ -782,7 +782,7 @@ errinj.set('ERRINJ_COIO_SENDFILE_CHUNK', -1) - ok ... --- test the destination file is truncated -fh5 = fio.open(file5, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 420) +fh5 = fio.open(file5, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0644', 8)) --- ... fh5:write("template data") @@ -793,7 +793,7 @@ fh5:close() --- - true ... -fh6 = fio.open(file6, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 420) +fh6 = fio.open(file6, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0644', 8)) --- ... fh6:write("to be truncated") @@ -869,7 +869,7 @@ tmpdir = fio.tempdir() tmpfile = fio.pathjoin(tmpdir, "test1") --- ... -fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) --- ... fh:write('helloworld!') @@ -900,7 +900,7 @@ fio.unlink(tmpfile) tmpfile = fio.pathjoin(tmpdir, "test") --- ... -fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) --- ... fh:write('helloworld!') @@ -1167,7 +1167,7 @@ test_run:cmd("setopt delimiter ';'") - true ... function write_file(name, odd) - local fh = fio.open(name, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) + local fh = fio.open(name, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) if odd then fh:write(string.rep('1', 100)) else @@ -1245,7 +1245,7 @@ fio.open(nil) --- - error: 'builtin/fio.lua: Usage: fio.open(path[, flags[, mode]])' ... -fio.open(tmp1, {'A'}, 0777) +fio.open(tmp1, {'A'}, tonumber('0777', 8)) --- - error: 'builtin/fio.lua: fio.open(): unknown flag: A' ... diff --git a/test/app/fio.test.lua b/test/app/fio.test.lua index ffb15c0570..aa7f2bbbf4 100644 --- a/test/app/fio.test.lua +++ b/test/app/fio.test.lua @@ -42,7 +42,7 @@ file4 = fio.pathjoin(tmpdir, 'file.4') st, err = pcall(fio.open, nil) st err:match("open") ~= nil -fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) fh1 ~= nil f1s = fh1:stat() f1s.size @@ -224,7 +224,7 @@ err:match("mktree") ~= nil fio.mktree(tree) fio.stat(tree) ~= nil fio.stat(tmp2) ~= nil -fio.mktree(tree2, 0777) +fio.mktree(tree2, tonumber('0777', 8)) -- copy and copytree file1 = fio.pathjoin(tmp1, 'file.1') @@ -234,10 +234,10 @@ file4 = fio.pathjoin(tree, 'file.4') file5 = fio.pathjoin(tree, 'file.5') file6 = fio.pathjoin(tree, 'file.6') -fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh1 = fio.open(file1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) fh1:write("gogo") fh1:close() -fh1 = fio.open(file2, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh1 = fio.open(file2, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) fh1:write("lolo") fh1:close() fio.symlink(file1, file3) @@ -252,10 +252,10 @@ fio.stat(file1, file4) ~= nil errinj.set('ERRINJ_COIO_SENDFILE_CHUNK', -1) --- test the destination file is truncated -fh5 = fio.open(file5, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 420) +fh5 = fio.open(file5, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0644', 8)) fh5:write("template data") fh5:close() -fh6 = fio.open(file6, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 420) +fh6 = fio.open(file6, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0644', 8)) fh6:write("to be truncated") fio.copyfile(file5, file6) fh6:seek(0) @@ -280,7 +280,7 @@ buf = buffer.ibuf() tmpdir = fio.tempdir() tmpfile = fio.pathjoin(tmpdir, "test1") -fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) fh:write('helloworld!') fh:seek(0) fh:read() @@ -289,7 +289,7 @@ fh:read() fio.unlink(tmpfile) tmpfile = fio.pathjoin(tmpdir, "test") -fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) +fh = fio.open(tmpfile, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) fh:write('helloworld!') fh:seek(0) len = fh:read(buf:reserve(12)) @@ -376,7 +376,7 @@ tmp1 = fio.pathjoin(tmpdir, "tmp1") tmp2= fio.pathjoin(tmpdir, "tmp2") test_run:cmd("setopt delimiter ';'") function write_file(name, odd) - local fh = fio.open(name, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, 0777) + local fh = fio.open(name, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, tonumber('0777', 8)) if odd then fh:write(string.rep('1', 100)) else @@ -409,7 +409,7 @@ fio.rmdir(tmpdir) test_run:cmd("push filter '(.builtin/.*.lua):[0-9]+' to '\\1'") fh1:seek(nil, 'a') fio.open(nil) -fio.open(tmp1, {'A'}, 0777) +fio.open(tmp1, {'A'}, tonumber('0777', 8)) fio.open(tmp1, { 'O_RDWR', 'O_TRUNC', 'O_CREAT' }, {'A'}) fio.pathjoin(nil) fio.pathjoin('abc', nil) -- GitLab