Add tests for ffi (#243)

This commit is contained in:
qwreey 2024-09-06 07:30:45 +00:00
parent e23aaef8a7
commit c656a486c4
No known key found for this signature in database
GPG key ID: D28DB79297A214BD
15 changed files with 94 additions and 42 deletions

View file

@ -22,7 +22,7 @@ impl FfiRefFlag {
pub struct FfiRefFlagList(u8);
#[allow(unused)]
impl FfiRefFlagList {
pub fn zero() -> Self {
pub const fn zero() -> Self {
Self(0)
}
pub const fn new(flags: u8) -> Self {

View file

@ -16,6 +16,9 @@ pub use self::{
flags::{FfiRefFlag, FfiRefFlagList},
};
// Box:ref():ref() should not be able to modify, Only for external
const BOX_REF_REF_FLAGS: FfiRefFlagList = FfiRefFlagList::zero();
// A referenced space. It is possible to read and write through types.
// This operation is not safe. This may cause a memory error in Lua
// if use it incorrectly.
@ -46,15 +49,10 @@ impl FfiRef {
this: LuaAnyUserData<'lua>,
) -> LuaResult<LuaAnyUserData<'lua>> {
let target = this.borrow::<FfiRef>()?;
let mut flags = target.flags.clone();
// FIXME:
// We cannot dereference ref which created by lua, in lua
flags.set_dereferenceable(false);
let luaref = lua.create_userdata(FfiRef::new(
ptr::from_ref(&target.ptr) as *mut (),
flags,
BOX_REF_REF_FLAGS,
FfiRefBounds {
below: 0,
above: size_of::<usize>(),

View file

@ -0,0 +1,20 @@
--!nocheck
--!nolint
local ffi = require("@lune/ffi")
local box = ffi.box(ffi.u8:ptr().size)
local ref = box:ref()
ffi.u8:ptr():into(box, ref)
local wt = setmetatable({}, { __mode = "v" })
wt[1] = box
wt[2] = ref
box = nil
ref = nil
collectgarbage("collect")
assert(wt[1] == nil and wt[2] == nil, "Box - ref recursion GC test failed")

0
tests/ffi/cast.luau Normal file
View file

0
tests/ffi/external.luau Normal file
View file

View file

View file

10
tests/ffi/isInteger.luau Normal file
View file

@ -0,0 +1,10 @@
--!nocheck
--!nolint
local ffi = require("@lune/ffi")
local int = 0b1
local float = 0.5
assert(ffi.isInteger(int) == true, "ffi.isInteger(int) == true failed")
assert(ffi.isInteger(float) == false, "ffi.isInteger(float) == false failed")

View file

@ -1,33 +0,0 @@
local ffi = require("@lune/ffi")
-- ptr size test
assert(
ffi.i32:ptr().size == ffi.i64:ptr().size,
"All of Ptr.size must be same.\n"..
"ffi.i32:ptr().size == ffi.i64:ptr().size failed"
)
-- inner test
local i32ptr = ffi.i32:ptr()
assert(
rawequal(ffi.i32, i32ptr.inner),
"Ptr.inner must be same with their parent\n"..
"raweq ffi.i32 == ffi.i32:ptr().inner failed"
)
assert(
rawequal(i32ptr, i32ptr:ptr().inner),
"Ptr.inner must be same with their parent\n"..
"raweq i32ptr == i32ptr:ptr().inner failed"
)
assert(
rawequal(i32ptr, i32ptr:ptr().inner:ptr().inner:ptr().inner),
"Ptr.inner must be same with their parent\n"..
"raweq i32ptr == i32ptr:ptr().inner:ptr().inner:ptr().inner failed"
)
-- deep ptr test
local ok,err = pcall(function()
i32ptr:ptr():ptr():ptr():ptr():ptr():ptr():ptr()
end)
assert(ok,`Deep ptr test failed.\n{err}`)

View file

@ -0,0 +1,15 @@
--!nocheck
--!nolint
local ffi = require("@lune/ffi")
local box = ffi.box(ffi.i32.size)
local ref = box:ref()
local wt = setmetatable({}, { __mode = "v" })
wt[1] = box
box = nll
collectgarbage("collect")
assert(wt[1] ~= nil, "ref hold box failed")

View file

@ -1,2 +0,0 @@
local ffi = require("@lune/ffi")

0
tests/ffi/types/arr.luau Normal file
View file

0
tests/ffi/types/fn.luau Normal file
View file

32
tests/ffi/types/ptr.luau Normal file
View file

@ -0,0 +1,32 @@
--!nocheck
--!nolint
local ffi = require("@lune/ffi")
-- ptr size test
assert(
ffi.i32:ptr().size == ffi.i64:ptr().size,
"All of Ptr.size must be same.\n" .. "ffi.i32:ptr().size == ffi.i64:ptr().size failed"
)
-- inner test
local i32ptr = ffi.i32:ptr()
assert(
rawequal(ffi.i32, i32ptr.inner),
"Ptr.inner must be same with their parent\n" .. "raweq ffi.i32 == ffi.i32:ptr().inner failed"
)
assert(
rawequal(i32ptr, i32ptr:ptr().inner),
"Ptr.inner must be same with their parent\n" .. "raweq i32ptr == i32ptr:ptr().inner failed"
)
assert(
rawequal(i32ptr, i32ptr:ptr().inner:ptr().inner:ptr().inner),
"Ptr.inner must be same with their parent\n"
.. "raweq i32ptr == i32ptr:ptr().inner:ptr().inner:ptr().inner failed"
)
-- deep ptr test
local ok, err = pcall(function()
i32ptr:ptr():ptr():ptr():ptr():ptr():ptr():ptr()
end)
assert(ok, `Deep ptr test failed.\n{err}`)

View file

@ -0,0 +1,12 @@
--!nocheck
--!nolint
local ffi = require("@lune/ffi")
local i32ptr = ffi.i32:ptr()
local struct = ffi.struct({ i32ptr, ffi.i32 })
assert(rawequal(struct:field(0), i32ptr), "Struct get field failed")
assert(rawequal(struct:field(1), ffi.i32), "Struct get field failed")
-- offset(2) should fail