Sha256: 8f03d2dfa7d5393859bb51b8225f8f9e5deeceeedbfd12df684fef289fbccefa

Contents?: true

Size: 1.09 KB

Versions: 24

Compression:

Stored size: 1.09 KB

Contents

#
# This file is part of ruby-ffi.
# For licensing, see LICENSE.SPECS
#

require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))

describe FFI::Struct, ' by_ref' do
  before :all do
    @struct_class = struct_class = Class.new(FFI::Struct) do
      layout :a, :pointer
    end

    @api = Module.new do 
      extend FFI::Library
      ffi_lib TestLibrary::PATH
      fn = FFI::Type::POINTER.size == FFI::Type::LONG.size ? :ret_ulong : ret_uint64_t
      attach_function :struct_test, fn, [ struct_class.by_ref ], :pointer
    end
  end

  it "should accept instances of exact struct class" do
    s = @struct_class.new
    @api.struct_test(s).should == s.pointer
  end
  
  it "should accept nil" do
    @api.struct_test(nil).should == nil
  end

  it "should reject other types" do
    lambda { @api.struct_test('test').should == nil }.should raise_error(TypeError)
  end

  it "should reject instances of other struct classes" do
    other_class = Class.new(FFI::Struct) do
      layout :a, :pointer
    end

    lambda { @api.struct_test(other_class.new) }.should raise_error(TypeError)
  end
end

Version data entries

24 entries across 22 versions & 6 rubygems

Version Path
honeybadger-2.4.0 vendor/gems/ruby/2.2.0/gems/ffi-1.9.3/spec/ffi/struct_by_ref_spec.rb
honeybadger-2.4.0 vendor/gems/ruby/2.1.0/gems/ffi-1.9.3/spec/ffi/struct_by_ref_spec.rb
honeybadger-2.4.0 vendor/gems/ruby/1.9.1/gems/ffi-1.9.3/spec/ffi/struct_by_ref_spec.rb
ffi-1.9.6-x86-mingw32 spec/ffi/struct_by_ref_spec.rb.orig
ffi-1.9.6-x64-mingw32 spec/ffi/struct_by_ref_spec.rb.orig
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/ffi-1.9.3/spec/ffi/struct_by_ref_spec.rb
ffi-1.9.3-x64-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.3-x86-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.3 spec/ffi/struct_by_ref_spec.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_by_ref_spec.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/ffi-1.8.1/spec/ffi/struct_by_ref_spec.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/ffi-1.9.0/spec/ffi/struct_by_ref_spec.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/ffi-1.8.1/spec/ffi/struct_by_ref_spec.rb
ffi-1.9.0-x86-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.0 spec/ffi/struct_by_ref_spec.rb
vagrant-shell-0.2.6 vendor/bundle/gems/ffi-1.8.1/spec/ffi/struct_by_ref_spec.rb
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/ffi-1.8.1/spec/ffi/struct_by_ref_spec.rb
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/ffi-1.8.1/spec/ffi/struct_by_ref_spec.rb
vagrant-shell-0.2.5 vendor/bundle/gems/ffi-1.8.1/spec/ffi/struct_by_ref_spec.rb
ffi-1.8.1-x86-mingw32 spec/ffi/struct_by_ref_spec.rb