-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathtyped_data_spec.rb
100 lines (84 loc) · 2.76 KB
/
typed_data_spec.rb
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
require_relative 'spec_helper'
require 'objspace'
load_extension("typed_data")
describe "CApiAllocTypedSpecs (a class with an alloc func defined)" do
it "calls the alloc func" do
@s = CApiAllocTypedSpecs.new
@s.typed_wrapped_data.should == 42 # not defined in initialize
end
it "uses the specified memsize function for ObjectSpace.memsize" do
@s = CApiAllocTypedSpecs.new
# The defined memsize function for the type should return 42 as
# the size, and this should be added to the size of the object as
# known by Ruby.
ObjectSpace.memsize_of(@s).should > 42
end
end
describe "CApiWrappedTypedStruct" do
before :each do
@s = CApiWrappedTypedStructSpecs.new
end
it "wraps and unwraps data" do
a = @s.typed_wrap_struct(1024)
@s.typed_get_struct(a).should == 1024
end
it "throws an exception for a wrong type" do
a = @s.typed_wrap_struct(1024)
-> { @s.typed_get_struct_other(a) }.should raise_error(TypeError)
end
it "unwraps data for a parent type" do
a = @s.typed_wrap_struct(1024)
@s.typed_get_struct_parent(a).should == 1024
end
describe "RTYPEDATA" do
it "returns the struct data" do
a = @s.typed_wrap_struct(1024)
@s.typed_get_struct_rdata(a).should == 1024
end
it "can be used to change the wrapped struct" do
a = @s.typed_wrap_struct(1024)
@s.typed_change_struct(a, 100)
@s.typed_get_struct(a).should == 100
end
end
describe "DATA_PTR" do
it "returns the struct data" do
a = @s.typed_wrap_struct(1024)
@s.typed_get_struct_data_ptr(a).should == 1024
end
end
describe "rb_check_type" do
it "raises an exception when checking typed data objects" do
-> {
a = @s.typed_wrap_struct(1024)
@s.rb_check_type(a, a)
}.should raise_error(TypeError) { |e|
e.message.should == 'wrong argument type Object (expected Data)'
}
end
end
describe "rb_check_typeddata" do
it "returns data pointer when the struct has the given type" do
a = @s.typed_wrap_struct(1024)
@s.rb_check_typeddata_same_type(a).should == true
end
it "returns data pointer when the parent struct has the given type" do
a = @s.typed_wrap_struct(1024)
@s.rb_check_typeddata_same_type_parent(a).should == true
end
it "raises an error for different types" do
a = @s.typed_wrap_struct(1024)
-> { @s.rb_check_typeddata_different_type(a) }.should raise_error(TypeError)
end
end
describe "RTYPEDDATA_P" do
it "returns true for a typed data" do
a = @s.typed_wrap_struct(1024)
@s.RTYPEDDATA_P(a).should == true
end
it "returns false for an untyped data object" do
a = @s.untyped_wrap_struct(1024)
@s.RTYPEDDATA_P(a).should == false
end
end
end