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
|
# 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 BSON::Int64 do
describe "#intiialize" do
let(:obj) { described_class.new(integer) }
context "when the integer is 64-bit" do
let(:integer) { Integer::MAX_64BIT - 1 }
it "wraps the integer" do
expect(obj.value).to be(integer)
end
end
context "when the integer is too large" do
let(:integer) { Integer::MAX_64BIT + 1 }
it "raises an out of range error" do
expect do
obj
end.to raise_error(RangeError, /#{integer} cannot be stored in 64 bits/)
end
end
context "when the integer is too small" do
let(:integer) { Integer::MIN_64BIT - 1 }
it "raises an out of range error" do
expect {
obj
}.to raise_error(RangeError)
end
end
context 'when argument is an Int64' do
let(:integer) do
described_class.new(described_class.new(50))
end
it 'works' do
expect(integer.value).to be 50
end
end
end
describe "#from_bson" do
let(:type) { 18.chr }
let(:obj) { 1325376000000 }
let(:bson) { [ obj ].pack(BSON::Int64::PACK) }
it_behaves_like "a bson element"
it_behaves_like "a deserializable bson element"
context 'canonical deserialization' do
let(:integer) { 42 }
let(:bson) do
BSON::ByteBuffer.new(BSON::Int64.new(integer).to_bson.to_s)
end
let(:deserialized) do
described_class.from_bson(bson, mode: :bson)
end
it 'deserializes to BSON::Int64' do
deserialized.class.should be BSON::Int64
end
it 'has the correct value' do
deserialized.value.should == 42
end
end
context "when the integer is within the MRI Fixnum range" do
let(:integer) { 2**30 - 1 }
let(:bson) do
BSON::ByteBuffer.new(BSON::Int64.new(integer).to_bson.to_s)
end
context "when on JRuby", if: BSON::Environment.jruby? && RUBY_VERSION < '3.0.0' do
it "deserializes to a Fixnum object" do
expect(described_class.from_bson(bson).class).to be(Fixnum)
end
end
it "deserializes to an Integer object" do
expect(described_class.from_bson(bson).class).to be(Integer)
end
end
context "when the 64-bit integer is the BSON max and thus larger than the MRI Fixnum range on all architectures" do
let(:integer) { Integer::MAX_64BIT }
let(:bson) do
BSON::ByteBuffer.new(integer.to_bson.to_s)
end
context "when on JRuby", if: BSON::Environment.jruby? && RUBY_VERSION < '3.0.0' do
it "deserializes to a Fixnum object" do
expect(described_class.from_bson(bson).class).to be(Fixnum)
end
end
it "deserializes to an Integer object" do
expect(described_class.from_bson(bson).class).to be(Integer)
end
end
end
describe "#to_bson" do
context "when the integer is 64 bit" do
let(:type) { 18.chr }
let(:obj) { BSON::Int64.new(Integer::MAX_64BIT - 1) }
let(:bson) { [ Integer::MAX_64BIT - 1 ].pack(BSON::Int64::PACK) }
it_behaves_like "a serializable bson element"
end
end
describe "#to_bson_key" do
let(:obj) { BSON::Int64.new(Integer::MAX_64BIT - 1) }
let(:encoded) { (Integer::MAX_64BIT - 1) }
it "returns the key as an integer" do
expect(obj.to_bson_key).to eq(encoded)
end
end
describe "#==" do
let(:object) do
described_class.new(1)
end
context "when data is identical" do
let(:other_object) do
described_class.new(1)
end
it "returns true" do
expect(object).to eq(other_object)
end
context "other object is of another integer type" do
let(:other_object) do
BSON::Int32.new(1)
end
it "returns false" do
expect(object).not_to eq(other_object)
end
end
end
context "when the data is different" do
let(:other_object) do
described_class.new(2)
end
it "returns false" do
expect(object).not_to eq(other_object)
end
end
context "when other is not a BSON integer" do
it "returns false" do
expect(described_class.new(1)).to_not eq('1')
end
end
end
describe "#===" do
let(:object) do
described_class.new(1)
end
context "when comparing with another BSON int64" do
context "when the data is equal" do
let(:other_object) do
described_class.new(1)
end
it "returns true" do
expect(object === other_object).to be true
end
context "other object is of another integer type" do
let(:other_object) do
BSON::Int32.new(1)
end
it "returns false" do
expect(object === other_object).to be false
end
end
end
context "when the data is not equal" do
let(:other_object) do
described_class.new(2)
end
it "returns false" do
expect(object === other_object).to be false
end
end
end
context "when comparing to an object id class" do
it "returns false" do
expect(described_class.new(1) === described_class).to be false
end
end
context "when comparing with a string" do
context "when the data is equal" do
let(:other) do
'1'
end
it "returns false" do
expect(object === other).to be false
end
end
context "when the data is not equal" do
let(:other) do
'2'
end
it "returns false" do
expect(object === other).to be false
end
end
end
context "when comparing with a non-bson integer object" do
it "returns false" do
expect(object === []).to be false
end
end
context "when comparing with a non int64 class" do
it "returns false" do
expect(object === String).to be false
end
end
end
describe '#value' do
let(:obj) { described_class.new(12345) }
it 'returns value passed to initializer' do
expect(obj.value).to eq(12345)
end
end
describe '#as_json' do
let(:object) { described_class.new(42) }
it 'returns an Integer' do
expect(object.as_json).to eq 42
end
it_behaves_like "a JSON serializable object"
end
describe '#as_extended_json' do
let(:object) { described_class.new(42) }
context 'canonical mode' do
it 'returns a Hash with key $numberLong' do
expect(object.as_extended_json).to eq({ '$numberLong' => '42' })
end
end
context 'relaxed mode' do
it 'returns an Integer' do
expect(object.as_extended_json(mode: :relaxed)).to eq 42
end
end
context 'legacy mode' do
it 'returns an Integer' do
expect(object.as_extended_json(mode: :legacy)).to eq 42
end
end
it_behaves_like "an Extended JSON serializable object"
end
end
|