summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRob Kendrick (octopus) <rjek@rjek.com>2012-05-10 19:11:26 +0100
committerRob Kendrick (octopus) <rjek@rjek.com>2012-05-10 19:11:26 +0100
commit2773e5427bd897791e32cd777d8f7a0a9596ca4b (patch)
tree1d6849fd8a53dea5771b72d7ad9dea0bfd89b70f /tests
parentaa8351806d0bdef74c3fd4845843dbf416b71797 (diff)
downloadluxio-2773e5427bd897791e32cd777d8f7a0a9596ca4b.tar.gz
Fix fdatasync, add splice
Diffstat (limited to 'tests')
-rw-r--r--tests/test-splice.lua45
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/test-splice.lua b/tests/test-splice.lua
new file mode 100644
index 0000000..2f434c4
--- /dev/null
+++ b/tests/test-splice.lua
@@ -0,0 +1,45 @@
+local l = require "luxio"
+
+function check(r, e, ...)
+ if r < 0 then
+ error(l.strerror(r))
+ end
+ return r, e, ...
+end
+
+r, w = 1, 2
+pipe = {}
+check(l.pipe(pipe))
+
+pr = pipe[1]
+pw = pipe[2]
+
+-- discover pipe read/write size to use
+local pz = 64 * 1024
+if l.F_GETPIPE_SZ then
+ local ppz = check(l.fcntl(pipe[w], l.F_GETPIPE_SZ))
+ if ppz > pz then pz = ppz end
+end
+
+r, in_stat = l.stat(arg[1])
+if r == -1 then error "unable to stat input file" end
+
+
+in_file = check(l.open(arg[1], l.O_RDONLY))
+out_file = check(l.open(arg[2], l.bit.bor(l.O_CREAT, l.O_WRONLY), in_stat.mode))
+
+repeat
+ r = l.splice(in_file, nil, pw, nil, pz, l.SPLICE_F_MORE)
+ if r > 0 then
+ l.splice(pr, nil, out_file, nil, pz, l.SPLICE_F_MORE)
+ end
+until r == 0
+
+l.fdatasync(out_file)
+
+l.close(pr)
+l.close(pw)
+l.close(out_file)
+l.close(in_file)
+
+os.exit()