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
|
# rubocop:todo all
require 'spec_helper'
describe BSON::ByteBuffer do
describe '#get_byte' do
let(:buffer) do
described_class.new(BSON::Int32::BSON_TYPE)
end
let!(:byte) do
buffer.get_byte
end
it 'gets the byte from the buffer' do
expect(byte).to eq(BSON::Int32::BSON_TYPE)
end
it 'increments the read position by 1' do
expect(buffer.read_position).to eq(1)
end
end
describe '#get_bytes' do
let(:string) do
"#{BSON::Int32::BSON_TYPE}#{BSON::Int32::BSON_TYPE}"
end
let(:buffer) do
described_class.new(string)
end
let!(:bytes) do
buffer.get_bytes(2)
end
it 'gets the bytes from the buffer' do
expect(bytes).to eq(string)
end
it 'increments the position by the length' do
expect(buffer.read_position).to eq(string.bytesize)
end
end
describe '#get_cstring' do
let(:buffer) do
described_class.new("testing#{BSON::NULL_BYTE}")
end
let!(:string) do
buffer.get_cstring
end
it 'gets the cstring from the buffer' do
expect(string).to eq("testing")
end
it 'increments the position by string length + 1' do
expect(buffer.read_position).to eq(8)
end
end
describe '#get_double' do
let(:buffer) do
described_class.new(12.5.to_bson.to_s)
end
let!(:double) do
buffer.get_double
end
it 'gets the double from the buffer' do
expect(double).to eq(12.5)
end
it 'increments the read position by 8' do
expect(buffer.read_position).to eq(8)
end
end
describe '#get_int32' do
let(:buffer) do
described_class.new(12.to_bson.to_s)
end
let!(:int32) do
buffer.get_int32
end
it 'gets the int32 from the buffer' do
expect(int32).to eq(12)
end
it 'increments the position by 4' do
expect(buffer.read_position).to eq(4)
end
end
describe '#get_uint32' do
context 'when using 2^32-1' do
let(:buffer) do
described_class.new(4294967295.to_bson.to_s)
end
let!(:int32) do
buffer.get_uint32
end
it 'gets the uint32 from the buffer' do
expect(int32).to eq(4294967295)
end
it 'increments the position by 4' do
expect(buffer.read_position).to eq(4)
end
end
context 'when using 2^32-2' do
let(:buffer) do
described_class.new(4294967294.to_bson.to_s)
end
let!(:int32) do
buffer.get_uint32
end
it 'gets the uint32 from the buffer' do
expect(int32).to eq(4294967294)
end
it 'increments the position by 4' do
expect(buffer.read_position).to eq(4)
end
end
context 'when using 0' do
let(:buffer) do
described_class.new(0.to_bson.to_s)
end
let!(:int32) do
buffer.get_uint32
end
it 'gets the uint32 from the buffer' do
expect(int32).to eq(0)
end
it 'increments the position by 4' do
expect(buffer.read_position).to eq(4)
end
end
end
describe '#get_int64' do
let(:buffer) do
described_class.new((Integer::MAX_64BIT - 1).to_bson.to_s)
end
let!(:int64) do
buffer.get_int64
end
it 'gets the int64 from the buffer' do
expect(int64).to eq(Integer::MAX_64BIT - 1)
end
it 'increments the position by 8' do
expect(buffer.read_position).to eq(8)
end
end
describe '#get_string' do
let(:buffer) do
described_class.new("#{8.to_bson.to_s}testing#{BSON::NULL_BYTE}")
end
let!(:string) do
buffer.get_string
end
it 'gets the string from the buffer' do
expect(string).to eq("testing")
end
it 'increments the position by string length + 5' do
expect(buffer.read_position).to eq(12)
end
end
end
|