summaryrefslogtreecommitdiff
path: root/test/dl/test_c_union_entity.rb
blob: 128ca4cd5c288d28e9171902a67e61812f6c68ed (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
require_relative 'test_base'

require 'dl/cparser'

class DL::TestCUnionEntity < DL::TestBase
  def test_class_size
    size = DL::CUnionEntity.size([DL::TYPE_DOUBLE, DL::TYPE_CHAR])

    assert_equal DL::SIZEOF_DOUBLE, size
  end

  def test_class_size_with_count
    size = DL::CUnionEntity.size([[DL::TYPE_DOUBLE, 2], [DL::TYPE_CHAR, 20]])

    assert_equal DL::SIZEOF_CHAR * 20, size
  end

  def test_set_ctypes
    union = DL::CUnionEntity.malloc [DL::TYPE_INT, DL::TYPE_LONG]
    union.assign_names %w[int long]

    # this test is roundabout because the stored ctypes are not accessible
    union['long'] = 1
    assert_equal 1, union['long']

    union['int'] = 1
    assert_equal 1, union['int']
  end
end