Sha256: 205851afd8371331be14ae483597163cac09031a4044a8c40fa2eb173c0dcedc

Contents?: true

Size: 1.09 KB

Versions: 79

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_u64
      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
    expect(@api.struct_test(s)).to eq(s.pointer)
  end

  it "should accept nil" do
    expect(@api.struct_test(nil)).to be_null
  end

  it "should reject other types" do
    expect { expect(@api.struct_test('test')).to be_nil }.to raise_error(TypeError)
  end

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

    expect { @api.struct_test(other_class.new) }.to raise_error(TypeError)
  end
end

Version data entries

79 entries across 77 versions & 14 rubygems

Version Path
tdiary-5.0.4 vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
ffi-1.9.18-x86-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.18-x64-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.18 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.17-x64-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.17-x86-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.17 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.16-x64-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.16-x86-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.16 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.15 spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.10/spec/ffi/struct_by_ref_spec.rb
arcabouco-0.2.13 vendor/bundle/gems/ffi-1.9.14/spec/ffi/struct_by_ref_spec.rb
gameboard-3.1.0 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.14/spec/ffi/struct_by_ref_spec.rb
gameboard-3.0.0 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.14/spec/ffi/struct_by_ref_spec.rb
tdiary-5.0.2 vendor/bundle/gems/ffi-1.9.14/spec/ffi/struct_by_ref_spec.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_by_ref_spec.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_by_ref_spec.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_by_ref_spec.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/gems/ffi-1.9.10/spec/ffi/struct_by_ref_spec.rb