summaryrefslogtreecommitdiff
path: root/spec/ffi/type_spec.rb
blob: eb48a431b646b1b54b22ddd45549f9f57a50e50d (plain)
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
#
# 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::Type" do
  it 'has a memsize function', skip: RUBY_ENGINE != "ruby" do
    base_size = ObjectSpace.memsize_of(Object.new)

    size = ObjectSpace.memsize_of(FFI::Type.new(42))
    expect(size).to be > base_size
    base_size = size

    converter = Module.new do
      extend FFI::DataConverter

      def self.native_type
        @native_type_called = true
        FFI::Type::INT32
      end

      def self.to_native(val, ctx)
        @to_native_called = true
        ToNativeMap[val]
      end

      def self.from_native(val, ctx)
        @from_native_called = true
        FromNativeMap[val]
      end
    end

    size = ObjectSpace.memsize_of(FFI::Type::Mapped.new(converter))
    expect(size).to be > base_size
    base_size = size

    # Builtin types are larger as they also have a name and own ffi_type
    size = ObjectSpace.memsize_of(FFI::Type::Builtin::CHAR)
    expect(size).to be > base_size
  end
end