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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
|
# rubocop:todo all
require 'spec_helper'
describe BSON::ByteBuffer do
let(:buffer) do
described_class.new
end
shared_examples_for 'does not write' do
it 'raises ArgumentError' do
expect do
modified
end.to raise_error(ArgumentError)
end
it 'does not change write position' do
expect do
modified
end.to raise_error(ArgumentError)
expect(buffer.write_position).to eq(0)
end
end
describe '#put_byte' do
let(:modified) do
buffer.put_byte(BSON::Int32::BSON_TYPE)
end
it 'appends the byte to the byte buffer' do
expect(modified.to_s).to eq(BSON::Int32::BSON_TYPE.chr)
end
it 'increments the write position by 1' do
expect(modified.write_position).to eq(1)
end
context 'when it receives a numeric value' do
it 'raises the ArgumentError exception' do
expect{buffer.put_byte(1)}.to raise_error(ArgumentError)
end
end
context 'when it receives a nil value' do
it 'raises the ArgumentError exception' do
expect{buffer.put_byte(nil)}.to raise_error(ArgumentError)
end
end
context 'when given a string of length > 1' do
let(:modified) do
buffer.put_byte('xx')
end
it_behaves_like 'does not write'
end
context 'when given a string of length 0' do
let(:modified) do
buffer.put_byte('')
end
it_behaves_like 'does not write'
end
context 'when byte is not valid utf-8' do
let(:string) do
Utils.make_byte_string([254]).freeze
end
let(:modified) do
buffer.put_byte(string)
end
it 'writes the byte' do
expect(modified.to_s).to eq(string)
end
end
end
describe '#put_bytes' do
let(:modified) do
buffer.put_bytes(BSON::Int32::BSON_TYPE)
buffer
end
it 'increments the write position by 1' do
expect(modified.write_position).to eq(1)
end
context 'when it receives a numeric value' do
it 'raises the ArgumentError exception' do
expect{buffer.put_bytes(1)}.to raise_error(ArgumentError)
end
end
context 'when it receives a nil value' do
it 'raises the ArgumentError exception' do
expect{buffer.put_bytes(nil)}.to raise_error(ArgumentError)
end
end
context 'when given a string with null bytes' do
let(:byte_str) { [0, 239, 254, 0].map(&:chr).join }
let(:modified) do
buffer.put_bytes(byte_str)
end
before do
expect(buffer.write_position).to eq(0)
expect(byte_str.length).to eq(4)
end
it 'writes the string' do
expect(modified.write_position).to eq(4)
end
end
context 'when bytes are not valid utf-8' do
let(:string) do
Utils.make_byte_string([254, 0, 255]).freeze
end
let(:modified) do
buffer.put_bytes(string)
end
it 'writes the bytes' do
expect(modified.to_s).to eq(string)
end
end
end
shared_examples_for 'bson string writer' do
context 'given empty string' do
let(:modified) do
buffer.put_string('')
end
it 'writes length and null terminator' do
expect(modified.write_position).to eq(5)
end
end
context 'when string is not valid utf-8 in utf-8 encoding' do
let(:string) do
Utils.make_byte_string([254, 253, 255], 'utf-8')
end
before do
expect(string.encoding.name).to eq('UTF-8')
end
it 'raises EncodingError' do
# Precise exception classes and messages differ between MRI and JRuby
expect do
modified
end.to raise_error(EncodingError)
end
end
context 'when string is in binary encoding and cannot be encoded in utf-8' do
let(:string) do
Utils.make_byte_string([254, 253, 255], 'binary')
end
before do
expect(string.encoding.name).to eq('ASCII-8BIT')
end
it 'raises Encoding::UndefinedConversionError' do
expect do
modified
end.to raise_error(Encoding::UndefinedConversionError, /from ASCII-8BIT to UTF-8/)
end
end
end
describe '#put_string' do
let(:modified) do
buffer.put_string(string)
end
it_behaves_like 'bson string writer'
context 'when the buffer does not need to be expanded' do
context 'when the string is UTF-8' do
let!(:modified) do
buffer.put_string('testing')
end
it 'appends the string to the byte buffer' do
expect(modified.to_s).to eq("#{8.to_bson.to_s}testing#{BSON::NULL_BYTE}")
end
it 'increments the write position by length + 5' do
expect(modified.write_position).to eq(12)
end
end
end
context 'when the buffer needs to be expanded' do
let(:string) do
300.times.inject(""){ |s, i| s << "#{i}" }
end
context 'when no bytes exist in the buffer' do
let!(:modified) do
buffer.put_string(string)
end
it 'appends the string to the byte buffer' do
expect(modified.to_s).to eq("#{(string.bytesize + 1).to_bson.to_s}#{string}#{BSON::NULL_BYTE}")
end
it 'increments the write position by length + 5' do
expect(modified.write_position).to eq(string.bytesize + 5)
end
end
context 'when bytes exist in the buffer' do
let!(:modified) do
buffer.put_int32(4).put_string(string)
end
it 'appends the string to the byte buffer' do
expect(modified.to_s).to eq(
"#{[ 4 ].pack(BSON::Int32::PACK)}#{(string.bytesize + 1).to_bson.to_s}#{string}#{BSON::NULL_BYTE}"
)
end
it 'increments the write position by length + 5' do
expect(modified.write_position).to eq(string.bytesize + 9)
end
end
end
context 'when string is in an encoding other than utf-8' do
let(:string) do
# "\xfe"
Utils.make_byte_string([254], 'iso-8859-1')
end
let(:expected) do
# \xc3\xbe == \u00fe
Utils.make_byte_string([3, 0, 0, 0, 0xc3, 0xbe, 0])
end
it 'is written as utf-8' do
expect(modified.to_s).to eq(expected)
end
end
end
describe '#put_cstring' do
let(:modified) do
buffer.put_cstring(string)
end
it_behaves_like 'bson string writer'
context 'when argument is a string' do
context 'when the string is valid' do
let!(:modified) do
buffer.put_cstring('testing')
end
it 'appends the string plus null byte to the byte buffer' do
expect(modified.to_s).to eq("testing#{BSON::NULL_BYTE}")
end
it 'increments the write position by the length + 1' do
expect(modified.write_position).to eq(8)
end
it 'mutates receiver' do
modified
expect(buffer.write_position).to eq(8)
end
end
context "when the string contains a null byte" do
let(:string) do
"test#{BSON::NULL_BYTE}ing"
end
it 'raises ArgumentError' do
expect {
modified
}.to raise_error(ArgumentError, /String .* contains null bytes/)
end
end
context 'when string is in an encoding other than utf-8' do
let(:string) do
# "\xfe"
Utils.make_byte_string([254], 'iso-8859-1')
end
let(:expected) do
# \xc3\xbe == \u00fe
# No length prefix
Utils.make_byte_string([0xc3, 0xbe, 0])
end
it 'is written as utf-8' do
expect(modified.to_s).to eq(expected)
end
end
end
context 'when argument is a symbol' do
let(:modified) do
buffer.put_cstring(:testing)
end
it 'writes' do
expect(modified.to_s).to eq("testing#{BSON::NULL_BYTE}")
end
it 'increments the write position by the length + 1' do
expect(modified.write_position).to eq(8)
end
it 'mutates receiver' do
modified
expect(buffer.write_position).to eq(8)
end
context 'when symbol includes a null byte' do
let(:modified) do
buffer.put_cstring(:"tes\x00ing")
end
it 'raises ArgumentError' do
expect {
modified
}.to raise_error(ArgumentError, /String .* contains null bytes/)
end
it 'does not change write position' do
begin
buffer.put_cstring(:"tes\x00ing")
rescue ArgumentError
end
expect(buffer.write_position).to eq(0)
end
end
end
context 'when argument is a Fixnum' do
let(:modified) do
buffer.put_cstring(1234)
end
it 'writes' do
expect(modified.to_s).to eq("1234#{BSON::NULL_BYTE}")
end
it 'increments the write position by the length + 1' do
expect(modified.write_position).to eq(5)
end
end
context 'when argument is of an unsupported type' do
let(:modified) do
buffer.put_cstring(1234.0)
end
it 'raises TypeError' do
expect do
modified
end.to raise_error(TypeError, /Invalid type for put_cstring/)
end
it 'does not change write position' do
begin
buffer.put_cstring(1234.0)
rescue TypeError
end
expect(buffer.write_position).to eq(0)
end
end
end
describe '#put_symbol' do
context 'normal symbol' do
let(:modified) do
buffer.put_symbol(:hello)
end
it 'writes the symbol as string' do
expect(modified.to_s).to eq("\x06\x00\x00\x00hello\x00")
end
it 'advances write position' do
# 4 byte length + 5 byte string + null byte
expect(modified.write_position).to eq(10)
end
end
context 'symbol with null byte' do
let(:modified) do
buffer.put_symbol(:"he\x00lo")
end
it 'writes the symbol as string' do
expect(modified.to_s).to eq("\x06\x00\x00\x00he\x00lo\x00")
end
it 'advances write position' do
# 4 byte length + 5 byte string + null byte
expect(modified.write_position).to eq(10)
end
end
context 'when symbol is not valid utf-8' do
let(:symbol) do
Utils.make_byte_string([254, 0, 255]).to_sym
end
let(:modified) do
buffer.put_symbol(symbol)
end
it 'raises EncodingError' do
# Precise exception classes and messages differ between MRI and JRuby
expect do
modified
end.to raise_error(EncodingError)
end
end
end
describe '#put_double' do
let(:modified) do
buffer.put_double(1.2332)
end
it 'appends the double to the buffer' do
expect(modified.to_s).to eq([ 1.2332 ].pack(Float::PACK))
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
context 'when argument is an integer' do
let(:modified) do
buffer.put_double(3)
end
it 'writes a double' do
expect(modified.to_s).to eq([ 3 ].pack(Float::PACK))
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
end
context 'when argument is a BigNum' do
let(:value) { 123456789012345678901234567890 }
let(:modified) do
buffer.put_double(value)
end
let(:actual) do
described_class.new(modified.to_s).get_double
end
it 'writes a double' do
expect(actual).to be_within(1).of(value)
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
end
context 'when argument is a string' do
let(:modified) do
buffer.put_double("hello")
end
it 'raises TypeError' do
expect do
modified
end.to raise_error(TypeError, /no implicit conversion to float from string|ClassCastException:.*RubyString cannot be cast to.*RubyFloat/)
expect(buffer.write_position).to eq(0)
end
end
end
describe '#put_int32' do
context 'when the integer is 32 bit' do
context 'when the integer is positive' do
let!(:modified) do
buffer.put_int32(Integer::MAX_32BIT - 1)
end
let(:expected) do
[ Integer::MAX_32BIT - 1 ].pack(BSON::Int32::PACK)
end
it 'appends the int32 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'increments the write position by 4' do
expect(modified.write_position).to eq(4)
end
end
context 'when the integer is negative' do
let!(:modified) do
buffer.put_int32(Integer::MIN_32BIT + 1)
end
let(:expected) do
[ Integer::MIN_32BIT + 1 ].pack(BSON::Int32::PACK)
end
it 'appends the int32 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'increments the write position by 4' do
expect(modified.write_position).to eq(4)
end
end
context 'when the integer is not 32 bit' do
it 'raises an exception' do
expect {
buffer.put_int32(Integer::MAX_64BIT - 1)
}.to raise_error(RangeError)
end
end
end
context 'when argument is a float' do
let(:modified) do
buffer.put_int32(4.934)
end
let(:expected) do
[ 4 ].pack(BSON::Int32::PACK)
end
it 'appends the int32 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'increments the write position by 4' do
expect(modified.write_position).to eq(4)
end
end
end
describe '#put_uint32' do
context 'when argument is a float' do
it 'raises an Argument Error' do
expect{ buffer.put_uint32(4.934) }.to raise_error(ArgumentError, "put_uint32: incorrect type: float, expected: integer")
end
end
context 'when number is in range' do
let(:modified) do
buffer.put_uint32(5)
end
it 'returns gets the correct number from the buffer' do
expect(modified.get_uint32).to eq(5)
end
it 'returns the length of the buffer' do
expect(modified.length).to eq(4)
end
end
context 'when number is 0' do
let(:modified) do
buffer.put_uint32(0)
end
it 'returns gets the correct number from the buffer' do
expect(modified.get_uint32).to eq(0)
end
it 'returns the length of the buffer' do
expect(modified.length).to eq(4)
end
end
context 'when number doesn\'t fit in signed int32' do
let(:modified) do
buffer.put_uint32(4294967295)
end
let(:expected) do
[ 4294967295 ].pack(BSON::Int32::PACK)
end
it 'appends the int32 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'get returns correct number' do
expect(modified.get_uint32).to eq(4294967295)
end
it 'returns the length of the buffer' do
expect(modified.length).to eq(4)
end
end
context 'when number is 2^31' do
let(:modified) do
buffer.put_uint32(2147483648)
end
it 'returns gets the correct number from the buffer' do
expect(modified.get_uint32).to eq(2147483648)
end
it 'returns the length of the buffer' do
expect(modified.length).to eq(4)
end
end
context 'when number is 2^31-1' do
let(:modified) do
buffer.put_uint32(2147483647)
end
it 'returns gets the correct number from the buffer' do
expect(modified.get_uint32).to eq(2147483647)
end
it 'returns the length of the buffer' do
expect(modified.length).to eq(4)
end
end
context 'when number is not in range' do
it 'raises error on out of top range' do
expect{ buffer.put_uint32(4294967296) }.to raise_error(RangeError, "Number 4294967296 is out of range [0, 2^32)")
end
it 'raises error on out of bottom range' do
expect{ buffer.put_uint32(-1) }.to raise_error(RangeError, "Number -1 is out of range [0, 2^32)")
end
end
end
describe '#put_int64' do
context 'when the integer is 64 bit' do
context 'when the integer is positive' do
let!(:modified) do
buffer.put_int64(Integer::MAX_64BIT - 1)
end
let(:expected) do
[ Integer::MAX_64BIT - 1 ].pack(BSON::Int64::PACK)
end
it 'appends the int64 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
end
context 'when the integer is negative' do
let!(:modified) do
buffer.put_int64(Integer::MIN_64BIT + 1)
end
let(:expected) do
[ Integer::MIN_64BIT + 1 ].pack(BSON::Int64::PACK)
end
it 'appends the int64 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
end
context 'when the integer is larger than 64 bit' do
it 'raises an exception' do
expect {
buffer.put_int64(Integer::MAX_64BIT + 1)
}.to raise_error(RangeError)
end
end
end
context 'when integer fits in 32 bits' do
let(:modified) do
buffer.put_int64(1)
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
end
context 'when argument is a float' do
let(:modified) do
buffer.put_int64(4.934)
end
let(:expected) do
[ 4 ].pack(BSON::Int64::PACK)
end
it 'appends the int64 to the byte buffer' do
expect(modified.to_s).to eq(expected)
end
it 'increments the write position by 8' do
expect(modified.write_position).to eq(8)
end
end
end
describe '#replace_int32' do
let(:exp_0) do
[ 0 ].pack(BSON::Int32::PACK)
end
let(:exp_first) do
[ 5 ].pack(BSON::Int32::PACK)
end
let(:exp_second) do
[ 4 ].pack(BSON::Int32::PACK)
end
let(:exp_42) do
[ 42 ].pack(BSON::Int32::PACK)
end
let(:modified) do
buffer.replace_int32(0, 5)
end
context 'when there is sufficient data in buffer' do
before do
buffer.put_int32(0).put_int32(4)
end
it 'replaces the int32 at the location' do
expect(modified.to_s).to eq("#{exp_first}#{exp_second}")
end
context 'when the position is negative' do
let(:modified) do
buffer.replace_int32(-1, 5)
end
it 'raises ArgumentError' do
expect do
modified
end.to raise_error(ArgumentError, /Position.*cannot be negative/)
end
end
context 'when the position is 4 bytes prior to write position' do
let(:modified) do
buffer.replace_int32(4, 42)
end
it 'replaces the int32 at the location' do
expect(modified.to_s).to eq("#{exp_0}#{exp_42}")
end
end
context 'when the position exceeds allowed range' do
let(:modified) do
# Buffer has 8 bytes but we can only write up to position 4
buffer.replace_int32(5, 42)
end
it 'raises ArgumentError' do
expect do
modified
end.to raise_error(ArgumentError, /Position.*is out of bounds/)
end
end
end
context 'when there is insufficient data in buffer' do
before do
buffer.put_bytes("aa")
end
let(:modified) do
buffer.replace_int32(1, 42)
end
it 'raises ArgumentError' do
expect do
modified
end.to raise_error(ArgumentError, /Buffer does not have enough data/)
end
end
end
end
|