1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
#
# This file is part of ruby-ffi.
#
# This code is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License version 3 only, as
# published by the Free Software Foundation.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# version 3 for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
#
require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
describe "Custom type definitions" do
it "attach_function with custom typedef" do
module CustomTypedef
extend FFI::Library
ffi_lib TestLibrary::PATH
typedef :uint, :fubar_t
attach_function :ret_u32, [ :fubar_t ], :fubar_t
end
CustomTypedef.ret_u32(0x12345678).should eq 0x12345678
end
it "variadic invoker with custom typedef" do
module VariadicCustomTypedef
extend FFI::Library
ffi_lib TestLibrary::PATH
typedef :uint, :fubar_t
attach_function :pack_varargs, [ :buffer_out, :string, :varargs ], :void
end
buf = FFI::Buffer.new :uint, 10
VariadicCustomTypedef.pack_varargs(buf, "i", :fubar_t, 0x12345678)
buf.get_int64(0).should eq 0x12345678
end
it "Callback with custom typedef parameter" do
module CallbackCustomTypedef
extend FFI::Library
ffi_lib TestLibrary::PATH
typedef :uint, :fubar3_t
callback :cbIrV, [ :fubar3_t ], :void
attach_function :testCallbackU32rV, :testClosureIrV, [ :cbIrV, :fubar3_t ], :void
end
i = 0
CallbackCustomTypedef.testCallbackU32rV(0xdeadbeef) { |v| i = v }
i.should eq 0xdeadbeef
end
module StructCustomTypedef
extend FFI::Library
ffi_lib TestLibrary::PATH
typedef :uint, :fubar3_t
class S < FFI::Struct
layout :a, :fubar3_t
end
end
it "Struct with custom typedef field" do
s = StructCustomTypedef::S.new
s[:a] = 0x12345678
s.pointer.get_uint(0).should eq 0x12345678
end
it "attach_function after a typedef should not reject normal types" do
lambda do
Module.new do
extend FFI::Library
# enum() will insert a custom typedef called :foo for the enum
enum :foo, [ :a, :b ]
typedef :int, :bar
ffi_lib TestLibrary::PATH
attach_function :ptr_ret_int32_t, [ :string, :foo ], :bar
end
end.should_not raise_error
end
it "detects the correct type for size_t" do
lambda do
Module.new do
extend FFI::Library
ffi_lib "c"
# read(2) is a standard UNIX function
attach_function :read, [:int, :pointer, :size_t], :ssize_t
end
end.should_not raise_error
end
end
|