2012-05-30 19:20:29 -04:00
|
|
|
require_relative 'test_base'
|
|
|
|
|
2012-06-04 00:10:44 -04:00
|
|
|
require 'dl/struct'
|
2012-05-30 19:20:29 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
module DL
|
|
|
|
class TestCUnionEntity < TestBase
|
|
|
|
def test_class_size
|
|
|
|
size = CUnionEntity.size([TYPE_DOUBLE, TYPE_CHAR])
|
2012-05-30 19:20:29 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
assert_equal SIZEOF_DOUBLE, size
|
|
|
|
end
|
2012-05-30 19:20:29 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
def test_class_size_with_count
|
|
|
|
size = CUnionEntity.size([[TYPE_DOUBLE, 2], [TYPE_CHAR, 20]])
|
2012-05-30 19:20:29 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
assert_equal SIZEOF_CHAR * 20, size
|
|
|
|
end
|
2012-05-30 19:41:07 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
def test_set_ctypes
|
|
|
|
union = CUnionEntity.malloc [TYPE_INT, TYPE_LONG]
|
|
|
|
union.assign_names %w[int long]
|
2012-05-30 19:41:07 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
# this test is roundabout because the stored ctypes are not accessible
|
|
|
|
union['long'] = 1
|
|
|
|
assert_equal 1, union['long']
|
2012-05-30 19:41:07 -04:00
|
|
|
|
2012-11-27 19:02:49 -05:00
|
|
|
union['int'] = 1
|
|
|
|
assert_equal 1, union['int']
|
|
|
|
end
|
2012-05-30 19:41:07 -04:00
|
|
|
end
|
2012-05-30 19:20:29 -04:00
|
|
|
end
|