Sha256: 895efc3d6d3fa5afbdb5a03322661d77601ef7d8dbf300d85f584202e061b6b1
Contents?: true
Size: 1.96 KB
Versions: 10
Compression:
Stored size: 1.96 KB
Contents
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 == 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 == 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 == 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 == 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 end
Version data entries
10 entries across 10 versions & 2 rubygems