2022-07-23 03:44:24 +00:00
|
|
|
-- Copyright 2022 Justine Alexandra Roberts Tunney
|
|
|
|
--
|
|
|
|
-- Permission to use, copy, modify, and/or distribute this software for
|
|
|
|
-- any purpose with or without fee is hereby granted, provided that the
|
|
|
|
-- above copyright notice and this permission notice appear in all copies.
|
|
|
|
--
|
|
|
|
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
|
|
-- WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
|
|
-- WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
|
|
-- AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
-- DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
-- PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
-- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
-- PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
2022-08-14 08:21:26 +00:00
|
|
|
tmpdir = "%s/o/tmp/lunix_test.%d" % {os.getenv('TMPDIR'), unix.getpid()}
|
2022-07-23 03:44:24 +00:00
|
|
|
|
|
|
|
local function Path(name)
|
|
|
|
return tmpdir .. '/' .. name
|
|
|
|
end
|
|
|
|
|
|
|
|
local function SlurpTest()
|
|
|
|
|
|
|
|
data = 'abc123' * 5000
|
|
|
|
assert(Barf(Path('foo'), data))
|
|
|
|
assert(assert(Slurp(Path('foo'))) == data)
|
|
|
|
assert(assert(Slurp(Path('foo'), 2, 3)) == 'bc')
|
|
|
|
assert(assert(Slurp(Path('foo'), 2)) == data:sub(2))
|
|
|
|
assert(assert(Slurp(Path('foo'), 2, 1)) == data:sub(2, 1))
|
|
|
|
assert(assert(Slurp(Path('foo'), 2, 2)) == data:sub(2, 2))
|
|
|
|
assert(assert(Slurp(Path('foo'), 1, 2)) == data:sub(1, 2))
|
|
|
|
assert(assert(Slurp(Path('foo'), -3, -1)) == data:sub(-3, -1))
|
|
|
|
|
|
|
|
assert(Barf(Path('foo'), 'XX', 0, 0, 3))
|
|
|
|
assert(assert(Slurp(Path('foo'), 1, 6)) == 'abXX23')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
local function main()
|
|
|
|
assert(unix.makedirs(tmpdir))
|
2022-07-23 12:22:19 +00:00
|
|
|
unix.unveil(tmpdir, "rwc")
|
|
|
|
unix.unveil(nil, nil)
|
2022-08-11 18:27:25 +00:00
|
|
|
assert(unix.pledge("stdio rpath wpath cpath"))
|
2022-07-23 03:44:24 +00:00
|
|
|
ok, err = pcall(SlurpTest)
|
|
|
|
if ok then
|
|
|
|
assert(unix.rmrf(tmpdir))
|
|
|
|
else
|
|
|
|
print(err)
|
|
|
|
error('SlurpTest failed (%s)' % {tmpdir})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
main()
|