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
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.5.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-2.0.2.0 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
ffi-1.9.21-x86-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.21-x64-mingw32 spec/ffi/struct_by_ref_spec.rb
ffi-1.9.21 spec/ffi/struct_by_ref_spec.rb
tdiary-5.0.7 vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
comiditaULL-0.1.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
comidita_ull-0.1.1 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
comidita_ull-0.1.0 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-2.0.1.0 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
cloudsmith-api-0.21.4 vendor/bundle/ruby/2.3.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
tdiary-5.0.6 vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-2.0.0.1 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-1.9.8.1 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-1.9.7.1 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
tdiary-5.0.5 vendor/bundle/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb