blob: 4e2dc37bfc4be24532089515d943046ba0fb265b (
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
require 'test/unit'
class TestNum2int < Test::Unit::TestCase
module Num2int
end
require '-test-/num2int/num2int'
INT_MIN = -2147483648
INT_MAX = 2147483647
UINT_MAX = 4294967295
case [0].pack('L!').size
when 4
LONG_MAX = 2147483647
LONG_MIN = -2147483648
ULONG_MAX = 4294967295
when 8
LONG_MAX = 9223372036854775807
LONG_MIN = -9223372036854775808
ULONG_MAX = 18446744073709551615
end
ULONG_HALF = ULONG_MAX - LONG_MAX
LLONG_MAX = 9223372036854775807
LLONG_MIN = -9223372036854775808
ULLONG_MAX = 18446744073709551615
ULLONG_HALF = ULLONG_MAX - LLONG_MAX # 0x8000000000000000
FIXNUM_MAX = LONG_MAX/2
FIXNUM_MIN = LONG_MIN/2
def test_num2int
assert_output(INT_MIN.to_s) do
Num2int.print_num2int(INT_MIN)
end
assert_output(INT_MAX.to_s) do
Num2int.print_num2int(INT_MAX)
end
assert_raise(RangeError) do
Num2int.print_num2int(INT_MIN-1)
end
assert_raise(RangeError) do
Num2int.print_num2int(INT_MAX+1)
end
end
def test_num2uint
assert_output("0") do
Num2int.print_num2uint(0)
end
assert_output(UINT_MAX.to_s) do
Num2int.print_num2uint(UINT_MAX)
end
assert_output(UINT_MAX.to_s) do
Num2int.print_num2uint(-1)
end
assert_output((INT_MAX+1).to_s) do
Num2int.print_num2uint(INT_MIN)
end
assert_raise(RangeError) do
Num2int.print_num2uint(INT_MIN-1)
end
assert_raise(RangeError) do
Num2int.print_num2uint(UINT_MAX+1)
end
end
def test_num2long
assert_output(LONG_MIN.to_s) do
Num2int.print_num2long(LONG_MIN)
end
assert_output(LONG_MAX.to_s) do
Num2int.print_num2long(LONG_MAX)
end
assert_raise(RangeError) do
Num2int.print_num2long(LONG_MIN-1)
end
assert_raise(RangeError) do
Num2int.print_num2long(LONG_MAX+1)
end
assert_output(FIXNUM_MIN.to_s) do
Num2int.print_num2long(FIXNUM_MIN)
end
assert_output((FIXNUM_MIN-1).to_s) do
Num2int.print_num2long(FIXNUM_MIN-1)
end
assert_output(FIXNUM_MAX.to_s) do
Num2int.print_num2long(FIXNUM_MAX)
end
assert_output((FIXNUM_MAX+1).to_s) do
Num2int.print_num2long(FIXNUM_MAX+1)
end
end
def test_num2ulong
assert_output("0") do
Num2int.print_num2ulong(0)
end
assert_output(ULONG_MAX.to_s) do
Num2int.print_num2ulong(ULONG_MAX)
end
assert_output(ULONG_MAX.to_s) do
Num2int.print_num2ulong(-1)
end
assert_output((LONG_MAX+1).to_s) do
Num2int.print_num2ulong(LONG_MIN)
end
assert_raise(RangeError) do
Num2int.print_num2ulong(LONG_MIN-1)
end
assert_raise(RangeError) do
Num2int.print_num2ulong(ULONG_MAX+1)
end
assert_output((ULONG_HALF+FIXNUM_MAX+1).to_s) do
Num2int.print_num2ulong(FIXNUM_MIN)
end
assert_output((ULONG_HALF+FIXNUM_MAX).to_s) do
Num2int.print_num2ulong(FIXNUM_MIN-1)
end
assert_output(FIXNUM_MAX.to_s) do
Num2int.print_num2ulong(FIXNUM_MAX)
end
assert_output((FIXNUM_MAX+1).to_s) do
Num2int.print_num2ulong(FIXNUM_MAX+1)
end
end
def test_num2ll
assert_output(LONG_MIN.to_s) do
Num2int.print_num2ll(LONG_MIN)
end
assert_output(LLONG_MAX.to_s) do
Num2int.print_num2ll(LLONG_MAX)
end
assert_raise(RangeError) do
Num2int.print_num2ll(LLONG_MIN-1)
end
assert_raise(RangeError) do
Num2int.print_num2ll(LLONG_MAX+1)
end
assert_output(FIXNUM_MIN.to_s) do
Num2int.print_num2ll(FIXNUM_MIN)
end
assert_output((FIXNUM_MIN-1).to_s) do
Num2int.print_num2ll(FIXNUM_MIN-1)
end
assert_output(FIXNUM_MAX.to_s) do
Num2int.print_num2ll(FIXNUM_MAX)
end
assert_output((FIXNUM_MAX+1).to_s) do
Num2int.print_num2ll(FIXNUM_MAX+1)
end
end
def test_num2ull
assert_output("0") do
Num2int.print_num2ull(0)
end
assert_output(ULLONG_MAX.to_s) do
Num2int.print_num2ull(ULLONG_MAX)
end
assert_output(ULLONG_MAX.to_s) do
Num2int.print_num2ull(-1)
end
assert_output((LLONG_MAX+2).to_s) do
Num2int.print_num2ull(LLONG_MIN+1)
end
# maybe bug
assert_output((LLONG_MAX).to_s) do
Num2int.print_num2ull(LLONG_MIN-1)
end
# maybe bug
assert_output(1.to_s) do
Num2int.print_num2ull(LLONG_MIN*2+1)
end
assert_raise(RangeError) do
Num2int.print_num2ull(LLONG_MIN*2)
end
assert_raise(RangeError) do
Num2int.print_num2ull(ULLONG_MAX+1)
end
assert_output((ULLONG_HALF+FIXNUM_MAX+1).to_s) do
Num2int.print_num2ull(FIXNUM_MIN)
end
assert_output((ULLONG_HALF+FIXNUM_MAX).to_s) do
Num2int.print_num2ull(FIXNUM_MIN-1)
end
assert_output(FIXNUM_MAX.to_s) do
Num2int.print_num2ull(FIXNUM_MAX)
end
assert_output((FIXNUM_MAX+1).to_s) do
Num2int.print_num2ull(FIXNUM_MAX+1)
end
end
end
|