File: buffer_encode_test.rb

package info (click to toggle)
ruby-beefcake 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: ruby: 1,655; makefile: 4
file content (242 lines) | stat: -rw-r--r-- 5,750 bytes parent folder | download | duplicates (2)
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# encoding: ASCII-8BIT
require 'minitest/autorun'
require 'beefcake/buffer/encode'

class BufferEncodeTest < Minitest::Test

  B = Beefcake::Buffer

  def setup
    @buf = B.new
  end

  def test_append_info
    @buf.append_info(1, 0)
    assert_equal "\010", @buf.to_s

    @buf.buf = ""
    @buf.append_info(2, 1)
    assert_equal "\021", @buf.to_s
  end

  def test_append_string
    @buf.append_string("testing")
    assert_equal "\007testing", @buf.to_s
  end

  def test_append_string_does_not_change_encoding
    subject = "testing".force_encoding('UTF-8')
    assert_equal 'UTF-8', subject.encoding.name

    @buf.append_string(subject)
    assert_equal 'UTF-8', subject.encoding.name
  end

  def test_append_fixed32
    @buf.append_fixed32(1)
    assert_equal "\001\0\0\0", @buf.to_s

    @buf.buf = ""
    @buf.append_fixed32(B::MinUint32)
    assert_equal "\0\0\0\0", @buf.to_s

    @buf.buf = ""
    @buf.append_fixed32(B::MaxUint32)
    assert_equal "\377\377\377\377", @buf.to_s

    assert_raises B::OutOfRangeError do
      @buf.append_fixed32(B::MinUint32 - 1)
    end

    assert_raises B::OutOfRangeError do
      @buf.append_fixed32(B::MaxUint32 + 1)
    end
  end

  def test_append_fixed64
    @buf.append_fixed64(1)
    assert_equal "\001\0\0\0\0\0\0\0", @buf.to_s

    @buf.buf = ""
    @buf.append_fixed64(B::MinUint64)
    assert_equal "\000\0\0\0\0\0\0\0", @buf.to_s

    @buf.buf = ""
    @buf.append_fixed64(B::MaxUint64)
    assert_equal "\377\377\377\377\377\377\377\377", @buf.to_s

    assert_raises B::OutOfRangeError do
      @buf.append_fixed64(B::MinUint64 - 1)
    end

    assert_raises B::OutOfRangeError do
      @buf.append_fixed64(B::MaxUint64 + 1)
    end
  end

  def test_append_uint32
    @buf.append_uint32(1)
    assert_equal "\001", @buf.to_s

    @buf.buf = ""
    @buf.append_uint32(B::MinUint32)
    assert_equal "\000", @buf.to_s

    @buf.buf = ""
    @buf.append_uint32(B::MaxUint32)
    assert_equal "\377\377\377\377\017", @buf.to_s

    assert_raises B::OutOfRangeError do
      @buf.append_uint32(B::MinUint32 - 1)
    end

    assert_raises B::OutOfRangeError do
      @buf.append_uint32(B::MaxUint32 + 1)
    end
  end

  def test_append_int32
    @buf.append_int32(1)
    assert_equal "\001", @buf.to_s

    @buf.buf = ""
    @buf.append_int32(-1)
    assert_equal "\377\377\377\377\377\377\377\377\377\001", @buf.to_s

    @buf.buf = ""
    @buf.append_int32(B::MinInt32)
    assert_equal "\200\200\200\200\370\377\377\377\377\001", @buf.to_s

    @buf.buf = ""
    @buf.append_int32(B::MaxInt32)
    assert_equal "\377\377\377\377\007", @buf.to_s

    assert_raises B::OutOfRangeError do
      @buf.append_int32(B::MinInt32 - 1)
    end

    assert_raises B::OutOfRangeError do
      @buf.append_int32(B::MaxInt32 + 1)
    end
  end

  def test_append_int64
    @buf.append_int64(1)
    assert_equal "\001", @buf.to_s

    @buf.buf = ""
    @buf.append_int64(-1)
    assert_equal "\377\377\377\377\377\377\377\377\377\001", @buf.to_s

    @buf.buf = ""
    @buf.append_int64(B::MinInt64)
    assert_equal "\200\200\200\200\200\200\200\200\200\001", @buf.to_s

    @buf.buf = ""
    @buf.append_int64(B::MaxInt64)
    assert_equal "\377\377\377\377\377\377\377\377\177", @buf.to_s

    assert_raises B::OutOfRangeError do
      @buf.append_int64(B::MinInt64 - 1)
    end

    assert_raises B::OutOfRangeError do
      @buf.append_int64(B::MaxInt64 + 1)
    end
  end

  def test_append_uint64
    @buf.append_uint64(1)
    assert_equal "\001", @buf.to_s

    @buf.buf = ""
    @buf.append_uint64(B::MinUint64)
    assert_equal "\000", @buf.to_s

    @buf.buf = ""
    @buf.append_uint64(B::MaxUint64)
    assert_equal "\377\377\377\377\377\377\377\377\377\001", @buf.to_s

    assert_raises B::OutOfRangeError do
      @buf.append_uint64(B::MinUint64 - 1)
    end

    assert_raises B::OutOfRangeError do
      @buf.append_uint64(B::MaxUint64 + 1)
    end
  end

  def test_append_float
    @buf.append_float(3.14)
    assert_equal "\303\365H@", @buf.to_s
  end

  def test_append_double
    @buf.buf = ""
    @buf.append_float(Math::PI)
    assert_equal "\333\017I@", @buf.to_s
  end

  def test_append_bool
    @buf.append_bool(true)
    @buf.append_bool(false)
    assert_equal "\001\000", @buf.to_s
  end

  def test_append_sint32
    @buf.append_sint32(-2)
    assert_equal "\003", @buf.to_s

    @buf.buf = ""
    @buf.append_sint32(B::MaxInt32)
    assert_equal "\376\377\377\377\017", @buf.to_s

    @buf.buf = ""
    @buf.append_sint32(B::MinInt32)
    assert_equal "\377\377\377\377\017", @buf.to_s
  end

  def test_append_sfixed32
    @buf.append_sfixed32(-2)
    assert_equal "\003\000\000\000", @buf.to_s
  end

  def test_append_sint64
    @buf.append_sint64(-2)
    assert_equal "\003", @buf.to_s

    @buf.buf = ""
    @buf.append_sint64(B::MaxInt64)
    assert_equal "\376\377\377\377\377\377\377\377\377\001", @buf.to_s

    @buf.buf = ""
    @buf.append_sint64(B::MinInt64)
    assert_equal "\377\377\377\377\377\377\377\377\377\001", @buf.to_s
  end

  def test_append_sfixed64
    @buf.append_sfixed64(B::MaxInt64)
    assert_equal "\376\377\377\377\377\377\377\377", @buf.to_s
  end

  def test_append_unicode_string
    ingest = "\u{1f63a}" * 5
    assert_equal 5, ingest.chars.to_a.length
    expected = ingest.bytes.to_a.length.chr + ingest
    @buf.append_string(ingest)
    actual = @buf.to_s
    assert_equal expected.bytes.to_a.length, actual.bytes.to_a.length
    assert_equal expected.bytes.to_a, actual.bytes.to_a
  end

  def test_append_bytes
    @buf.append_bytes("testing")
    assert_equal "\007testing", @buf.to_s
  end

  def test_append_frozen_string
    @buf.append_string "testing".freeze
    assert_equal "\007testing", @buf.to_s
  end

end