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
|
# rubocop:todo all
# Copyright (C) 2009-2020 MongoDB Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require "spec_helper"
describe Hash do
describe "#to_bson/#from_bson" do
let(:type) { 3.chr }
it_behaves_like "a bson element"
context "when the hash is a single level" do
let(:obj) do
{ "key" => "value" }
end
let(:bson) do
"#{20.to_bson.to_s}#{String::BSON_TYPE}key#{BSON::NULL_BYTE}" +
"#{6.to_bson.to_s}value#{BSON::NULL_BYTE}#{BSON::NULL_BYTE}"
end
it_behaves_like "a serializable bson element"
it_behaves_like "a deserializable bson element"
end
context "when the hash has non-string keys" do
let(:obj) do
{ 1 => "value" }
end
let(:expected) do
{ "1" => "value" }
end
it "properly converts to bson" do
expect(BSON::Document.from_bson(BSON::ByteBuffer.new(obj.to_bson.to_s))).to eq(expected)
end
end
context "when the hash has dollar keys" do
let(:obj) do
{ "$testing" => "value" }
end
let(:bson) do
"#{25.to_bson.to_s}#{String::BSON_TYPE}$testing#{BSON::NULL_BYTE}" +
"#{6.to_bson.to_s}value#{BSON::NULL_BYTE}#{BSON::NULL_BYTE}"
end
it "serializes the hash" do
expect(obj.to_bson.to_s).to eq(bson)
end
context "when the hash contains an array of documents containing invalid keys" do
let(:obj) do
{ "array" => [{ "$testing" => "value" }] }
end
let(:bson) do
"#{45.to_bson.to_s}#{Array::BSON_TYPE}array#{BSON::NULL_BYTE}" +
"#{[{ "$testing" => "value" }].to_bson.to_s}#{BSON::NULL_BYTE}"
end
it "serializes the hash" do
expect(obj.to_bson.to_s).to eq(bson)
end
end
end
context "when the hash is embedded" do
let(:obj) do
{ "field" => { "key" => "value" }}
end
let(:bson) do
"#{32.to_bson.to_s}#{Hash::BSON_TYPE}field#{BSON::NULL_BYTE}" +
"#{20.to_bson.to_s}#{String::BSON_TYPE}key#{BSON::NULL_BYTE}" +
"#{6.to_bson.to_s}value#{BSON::NULL_BYTE}#{BSON::NULL_BYTE}#{BSON::NULL_BYTE}"
end
it_behaves_like "a serializable bson element"
it_behaves_like "a deserializable bson element"
end
context 'with symbol values' do
let(:value) { :foo }
let(:serialized) do
{foo: value}.to_bson.to_s
end
def perform_test(bson_type_to_use)
Symbol.class_eval do
alias_method :bson_type_orig, :bson_type
define_method(:bson_type) do
bson_type_to_use
end
end
begin
yield
ensure
Symbol.class_eval do
alias_method :bson_type, :bson_type_orig
remove_method :bson_type_orig
end
end
end
let(:bson_with_symbol) do
"\x12\x00\x00\x00\x0Efoo\x00\x04\x00\x00\x00bar\x00\x00".force_encoding('binary')
end
let(:deserialized) do
Hash.from_bson(BSON::ByteBuffer.new(bson_with_symbol))
end
context 'when Symbol#bson_type is set to symbol' do
let(:bson_type_to_use) { BSON::Symbol::BSON_TYPE }
let(:expected) do
"\x12\x00\x00\x00\x0Efoo\x00\x04\x00\x00\x00foo\x00\x00".force_encoding('binary')
end
it 'serializes to BSON symbol' do
perform_test(bson_type_to_use) do
serialized
end.should == expected
end
it 'deserializes to Symbol' do
deserialized.should == {'foo' => :bar}
end
end
context 'when Symbol#bson_type is set to string' do
let(:bson_type_to_use) { BSON::String::BSON_TYPE }
let(:expected) do
"\x12\x00\x00\x00\x02foo\x00\x04\x00\x00\x00foo\x00\x00".force_encoding('binary')
end
it 'serializes to BSON string' do
perform_test(bson_type_to_use) do
serialized
end.should == expected
end
it 'deserializes to Symbol' do
deserialized.should == {'foo' => :bar}
end
end
end
context 'when hash contains value of an unserializable class' do
class HashSpecUnserializableClass
end
let(:obj) do
{foo: HashSpecUnserializableClass.new}
end
it 'raises UnserializableClass' do
lambda do
obj.to_bson
end.should raise_error(BSON::Error::UnserializableClass,
# C extension does not provide hash key in the exception message.
/(Hash value for key 'foo'|Value) does not define its BSON serialized type:.*HashSpecUnserializableClass/)
end
end
context 'when reading from a byte buffer that was previously written to' do
let(:buffer) do
{foo: 42}.to_bson
end
it 'returns the original hash' do
expect(Hash.from_bson(buffer)).to eq('foo' => 42)
end
end
context 'when round-tripping a BigDecimal' do
let(:to_bson) do
{"x" => BigDecimal('1')}.to_bson
end
let(:from_bson) do
Hash.from_bson(to_bson)
end
it 'doesn\'t raise on serialization' do
expect do
to_bson
end.to_not raise_error
end
it 'deserializes as a BigDecimal' do
expect(from_bson).to eq({"x" => BigDecimal(1)})
end
end
context 'when deserializing round-tripping a Decimal128' do
let(:to_bson) do
{x:BSON::Decimal128.new('1')}.to_bson
end
let(:from_bson) do
Hash.from_bson(to_bson)
end
it 'doesn\'t raise on serialization' do
expect do
to_bson
end.to_not raise_error
end
it 'deserializes as a BigDecimal' do
expect(from_bson).to eq({"x" => BigDecimal(1)})
end
end
end
describe '#to_bson' do
context 'when a key is not valid utf-8' do
let(:key) { Utils.make_byte_string([254, 253, 255]) }
let(:hash) do
{key => 'foo'}
end
let(:expected_message) do
if BSON::Environment.jruby?
# Uses JRE conversion to another encoding
/Error serializing key.*Encoding::UndefinedConversionError/
else
# Uses our validator
/Key.*is not valid UTF-8/
end
end
it 'raises EncodingError' do
expect do
hash.to_bson
end.to raise_error(EncodingError, expected_message)
end
end
context 'when a key contains null bytes' do
let(:hash) do
{"\x00".force_encoding('BINARY') => 'foo'}
end
it 'raises ArgumentError' do
expect do
hash.to_bson
end.to raise_error(ArgumentError, /[Kk]ey.*contains null bytes/)
end
end
context 'when a value is not valid utf-8' do
let(:hash) do
{'foo' => [254, 253, 255].map(&:chr).join.force_encoding('BINARY')}
end
let(:expected_message) do
/from ASCII-8BIT to UTF-8/
end
it 'raises EncodingError' do
expect do
hash.to_bson
end.to raise_error(EncodingError, expected_message)
end
end
context 'when a value contains null bytes' do
let(:hash) do
{'foo' => "\x00".force_encoding('BINARY')}
end
it 'works' do
expect do
hash.to_bson
end.not_to raise_error
end
end
context 'when serializing a hash with a BigDecimal' do
let(:hash) do
{'foo' => BigDecimal('1')}
end
it 'works' do
expect do
hash.to_bson
end.to_not raise_error
end
end
end
describe '#from_bson' do
context 'when bson document has duplicate keys' do
let(:buf) do
buf = BSON::ByteBuffer.new
buf.put_int32(37)
buf.put_byte("\x02")
buf.put_cstring('foo')
buf.put_string('bar')
buf.put_byte("\x02")
buf.put_cstring('foo')
buf.put_string('overwrite')
buf.put_byte("\x00")
BSON::ByteBuffer.new(buf.to_s)
end
let(:doc) { Hash.from_bson(buf) }
it 'overwrites first value with second value' do
expect(doc).to eq({ 'foo' => 'overwrite' })
end
end
context 'when bson document has string and symbol keys of the same name' do
let(:buf) do
buf = BSON::ByteBuffer.new
buf.put_int32(31)
buf.put_byte("\x02")
buf.put_cstring('foo')
buf.put_string('bar')
buf.put_byte("\x0e")
buf.put_cstring('foo')
buf.put_string('bar')
buf.put_byte("\x00")
BSON::ByteBuffer.new(buf.to_s)
end
let(:doc) { Hash.from_bson(buf) }
it 'overwrites first value with second value' do
expect(doc).to eq({ 'foo' => :bar })
end
end
context 'when deserializing a hash with a BigDecimal' do
let(:to_bson) do
{x: BigDecimal('1')}.to_bson
end
context 'when it has mode: :bson' do
let(:from_bson) do
Hash.from_bson(to_bson, mode: :bson)
end
it 'deserializes as a BigDecimal' do
expect(from_bson).to eq({"x" => BSON::Decimal128.new('1')})
end
end
context 'when it doesn\'t have mode: :bson' do
let(:from_bson) do
Hash.from_bson(to_bson)
end
it 'deserializes as a BigDecimal' do
expect(from_bson).to eq({"x" => BigDecimal(1)})
end
end
end
end
describe '#as_extended_json' do
let(:object) do
{ 'foo' => :bar, 'baz' => ['qux', 1, 2.0, { 'lorem' => 1 }] }
end
let(:expected) do
{ "foo" => { "$symbol" => "bar" },
"baz" => [ "qux",
{ "$numberInt" => "1" },
{ "$numberDouble" => "2.0" },
{ "lorem" => { "$numberInt" => "1" } } ] }
end
it "returns the binary data plus type" do
expect(object.as_extended_json).to eq(expected)
end
it_behaves_like 'an Extended JSON serializable object'
end
end
|