bson 4.9.2-java → 4.10.1-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ae7d935612a364378aee53925f0808382ff92b3d23416ede0344ca5262d6e7e
4
- data.tar.gz: f2abf5668f22d7bfee56bcdf132076acbfc7e416e0daad20b06ccec9f393d465
3
+ metadata.gz: 74c61b5517699b4e2efe7c77388850d8c426f613c39f1dea0028b24235f828d7
4
+ data.tar.gz: 351435e72e0ad3be977b576aebb5c58d3f12fac09399134a6391b0b87dadf4c7
5
5
  SHA512:
6
- metadata.gz: b685a003e81eb3a63b521ad4836c6ecb055ca5b768237230636767447805be0ce9a2d2867a42fbea435b0367123230090139a7a8186a41e13b54ff87b021c9e0
7
- data.tar.gz: 564392a677bb9f8db3f44fcf734aac5c5100756efb5a43d1a6e71535eb35c27989031deb0a1f212a2b5bbe1f63443f7eae86c020499bf66841f26930b723b89b
6
+ metadata.gz: 85bd28f0b946f955a2fe02d117114caf1dd2d9eefa68e0a207cd06606a89ace7eb08569f05911f66e28db7b6591bd600ca4457cd2cd0dce1092616e0a7539153
7
+ data.tar.gz: f7cf8b8b49336918c3546dec2089936277a123ae4e45e246280189a11c579a5b84d4d72702bbfc0eac6fcf9df202a88c4536b7b18a93bc12bee2ccd3cdc03006
Binary file
data.tar.gz.sig CHANGED
Binary file
Binary file
@@ -47,6 +47,9 @@ module BSON
47
47
  position = buffer.length
48
48
  buffer.put_int32(0)
49
49
  each_with_index do |value, index|
50
+ unless value.respond_to?(:bson_type)
51
+ raise Error::UnserializableClass, "Array element at position #{index} does not define its BSON serialized type: #{value}"
52
+ end
50
53
  buffer.put_byte(value.bson_type)
51
54
  buffer.put_cstring(index.to_s)
52
55
  value.to_bson(buffer, validating_keys)
@@ -35,7 +35,7 @@ module BSON
35
35
  #
36
36
  # @since 2.1.0
37
37
  def to_bson(buffer = ByteBuffer.new, validating_keys = Config.validating_keys?)
38
- to_time.to_bson(buffer)
38
+ gregorian.to_time.to_bson(buffer)
39
39
  end
40
40
  end
41
41
 
@@ -17,5 +17,11 @@ module BSON
17
17
  # Exception raised when BSON decoding fails.
18
18
  class BSONDecodeError < Error
19
19
  end
20
+
21
+ # Exception raised when serializing an Array or Hash to BSON and an
22
+ # array or hash element is of a class that does not define how to serialize
23
+ # itself to BSON.
24
+ class UnserializableClass < Error
25
+ end
20
26
  end
21
27
  end
@@ -44,6 +44,9 @@ module BSON
44
44
  position = buffer.length
45
45
  buffer.put_int32(0)
46
46
  each do |field, value|
47
+ unless value.respond_to?(:bson_type)
48
+ raise Error::UnserializableClass, "Hash value for key '#{field}' does not define its BSON serialized type: #{value}"
49
+ end
47
50
  buffer.put_byte(value.bson_type)
48
51
  key = field.to_bson_key(validating_keys)
49
52
  begin
@@ -124,8 +124,8 @@ module BSON
124
124
  #
125
125
  # @since 2.0.0
126
126
  def to_bson(buffer = ByteBuffer.new, validating_keys = Config.validating_keys?)
127
- buffer.put_int32(increment)
128
- buffer.put_int32(seconds)
127
+ buffer.put_uint32(increment)
128
+ buffer.put_uint32(seconds)
129
129
  end
130
130
 
131
131
  # Deserialize timestamp from BSON.
@@ -140,8 +140,8 @@ module BSON
140
140
  #
141
141
  # @since 2.0.0
142
142
  def self.from_bson(buffer, **options)
143
- increment = buffer.get_int32
144
- seconds = buffer.get_int32
143
+ increment = buffer.get_uint32
144
+ seconds = buffer.get_uint32
145
145
  new(seconds, increment)
146
146
  end
147
147
 
@@ -13,5 +13,5 @@
13
13
  # limitations under the License.
14
14
 
15
15
  module BSON
16
- VERSION = "4.9.2".freeze
16
+ VERSION = "4.10.1".freeze
17
17
  end
Binary file
@@ -132,6 +132,23 @@ describe Array do
132
132
  end
133
133
  end
134
134
  end
135
+
136
+ context 'when array contains value of an unserializable class' do
137
+ class ArraySpecUnserializableClass
138
+ end
139
+
140
+ let(:obj) do
141
+ [ArraySpecUnserializableClass.new]
142
+ end
143
+
144
+ it 'raises UnserializableClass' do
145
+ lambda do
146
+ obj.to_bson
147
+ end.should raise_error(BSON::Error::UnserializableClass,
148
+ # C extension does not provide element position in the exception message.
149
+ /(Array element at position 0|Value) does not define its BSON serialized type:.*ArraySpecUnserializableClass/)
150
+ end
151
+ end
135
152
  end
136
153
 
137
154
  describe "#to_bson_normalized_value" do
@@ -66,7 +66,7 @@ describe BSON::ByteBuffer do
66
66
  describe '#get_double' do
67
67
 
68
68
  let(:buffer) do
69
- described_class.new("#{12.5.to_bson.to_s}")
69
+ described_class.new(12.5.to_bson.to_s)
70
70
  end
71
71
 
72
72
  let!(:double) do
@@ -85,7 +85,7 @@ describe BSON::ByteBuffer do
85
85
  describe '#get_int32' do
86
86
 
87
87
  let(:buffer) do
88
- described_class.new("#{12.to_bson.to_s}")
88
+ described_class.new(12.to_bson.to_s)
89
89
  end
90
90
 
91
91
  let!(:int32) do
@@ -101,10 +101,66 @@ describe BSON::ByteBuffer do
101
101
  end
102
102
  end
103
103
 
104
+ describe '#get_uint32' do
105
+ context 'when using 2^32-1' do
106
+ let(:buffer) do
107
+ described_class.new(4294967295.to_bson.to_s)
108
+ end
109
+
110
+ let!(:int32) do
111
+ buffer.get_uint32
112
+ end
113
+
114
+ it 'gets the uint32 from the buffer' do
115
+ expect(int32).to eq(4294967295)
116
+ end
117
+
118
+ it 'increments the position by 4' do
119
+ expect(buffer.read_position).to eq(4)
120
+ end
121
+ end
122
+
123
+ context 'when using 2^32-2' do
124
+ let(:buffer) do
125
+ described_class.new(4294967294.to_bson.to_s)
126
+ end
127
+
128
+ let!(:int32) do
129
+ buffer.get_uint32
130
+ end
131
+
132
+ it 'gets the uint32 from the buffer' do
133
+ expect(int32).to eq(4294967294)
134
+ end
135
+
136
+ it 'increments the position by 4' do
137
+ expect(buffer.read_position).to eq(4)
138
+ end
139
+ end
140
+
141
+ context 'when using 0' do
142
+ let(:buffer) do
143
+ described_class.new(0.to_bson.to_s)
144
+ end
145
+
146
+ let!(:int32) do
147
+ buffer.get_uint32
148
+ end
149
+
150
+ it 'gets the uint32 from the buffer' do
151
+ expect(int32).to eq(0)
152
+ end
153
+
154
+ it 'increments the position by 4' do
155
+ expect(buffer.read_position).to eq(4)
156
+ end
157
+ end
158
+ end
159
+
104
160
  describe '#get_int64' do
105
161
 
106
162
  let(:buffer) do
107
- described_class.new("#{(Integer::MAX_64BIT - 1).to_bson.to_s}")
163
+ described_class.new((Integer::MAX_64BIT - 1).to_bson.to_s)
108
164
  end
109
165
 
110
166
  let!(:int64) do
@@ -30,16 +30,19 @@ describe BSON::ByteBuffer do
30
30
  let(:buffer) do
31
31
  described_class.new
32
32
  end
33
-
34
- before do
35
- buffer.put_int32(5)
36
- end
37
-
38
- it 'returns the length of the buffer' do
39
- expect(buffer.length).to eq(4)
33
+
34
+ context '#put_int32' do
35
+ before do
36
+ buffer.put_int32(5)
37
+ end
38
+
39
+ it 'returns the length of the buffer' do
40
+ expect(buffer.length).to eq(4)
41
+ end
40
42
  end
41
43
  end
42
44
 
45
+
43
46
  context 'when the byte buffer is initialized with some bytes' do
44
47
 
45
48
  let(:buffer) do
@@ -585,6 +585,102 @@ describe BSON::ByteBuffer do
585
585
  end
586
586
  end
587
587
 
588
+ describe '#put_uint32' do
589
+ context 'when argument is a float' do
590
+ it 'raises an Argument Error' do
591
+ expect{ buffer.put_uint32(4.934) }.to raise_error(ArgumentError, "put_uint32: incorrect type: float, expected: integer")
592
+ end
593
+ end
594
+
595
+ context 'when number is in range' do
596
+ let(:modified) do
597
+ buffer.put_uint32(5)
598
+ end
599
+
600
+ it 'returns gets the correct number from the buffer' do
601
+ expect(modified.get_uint32).to eq(5)
602
+ end
603
+
604
+ it 'returns the length of the buffer' do
605
+ expect(modified.length).to eq(4)
606
+ end
607
+ end
608
+
609
+ context 'when number is 0' do
610
+ let(:modified) do
611
+ buffer.put_uint32(0)
612
+ end
613
+
614
+ it 'returns gets the correct number from the buffer' do
615
+ expect(modified.get_uint32).to eq(0)
616
+ end
617
+
618
+ it 'returns the length of the buffer' do
619
+ expect(modified.length).to eq(4)
620
+ end
621
+ end
622
+
623
+ context 'when number doesn\'t fit in signed int32' do
624
+ let(:modified) do
625
+ buffer.put_uint32(4294967295)
626
+ end
627
+
628
+ let(:expected) do
629
+ [ 4294967295 ].pack(BSON::Int32::PACK)
630
+ end
631
+
632
+ it 'appends the int32 to the byte buffer' do
633
+ expect(modified.to_s).to eq(expected)
634
+ end
635
+
636
+ it 'get returns correct number' do
637
+ expect(modified.get_uint32).to eq(4294967295)
638
+ end
639
+
640
+ it 'returns the length of the buffer' do
641
+ expect(modified.length).to eq(4)
642
+ end
643
+ end
644
+
645
+ context 'when number is 2^31' do
646
+ let(:modified) do
647
+ buffer.put_uint32(2147483648)
648
+ end
649
+
650
+ it 'returns gets the correct number from the buffer' do
651
+ expect(modified.get_uint32).to eq(2147483648)
652
+ end
653
+
654
+ it 'returns the length of the buffer' do
655
+ expect(modified.length).to eq(4)
656
+ end
657
+ end
658
+
659
+ context 'when number is 2^31-1' do
660
+ let(:modified) do
661
+ buffer.put_uint32(2147483647)
662
+ end
663
+
664
+ it 'returns gets the correct number from the buffer' do
665
+ expect(modified.get_uint32).to eq(2147483647)
666
+ end
667
+
668
+ it 'returns the length of the buffer' do
669
+ expect(modified.length).to eq(4)
670
+ end
671
+ end
672
+
673
+ context 'when number is not in range' do
674
+ it 'raises error on out of top range' do
675
+ expect{ buffer.put_uint32(4294967296) }.to raise_error(RangeError, "Number 4294967296 is out of range [0, 2^32)")
676
+ end
677
+
678
+ it 'raises error on out of bottom range' do
679
+ expect{ buffer.put_uint32(-1) }.to raise_error(RangeError, "Number -1 is out of range [0, 2^32)")
680
+ end
681
+ end
682
+ end
683
+
588
684
  describe '#put_int64' do
589
685
 
590
686
  context 'when the integer is 64 bit' do
@@ -35,5 +35,58 @@ describe DateTime do
35
35
 
36
36
  it_behaves_like "a serializable bson element"
37
37
  end
38
+
39
+ context "when the dates don't both use Gregorian" do
40
+
41
+ let(:shakespeare_datetime) do
42
+ DateTime.iso8601('1616-04-23', Date::ENGLAND)
43
+ end
44
+
45
+ let(:gregorian_datetime) do
46
+ DateTime.iso8601('1616-04-23', Date::GREGORIAN)
47
+ end
48
+
49
+ context "when putting to bson" do
50
+
51
+ let(:shakespeare) do
52
+ { a: shakespeare_datetime }.to_bson
53
+ end
54
+
55
+ let(:gregorian) do
56
+ { a: gregorian_datetime }.to_bson
57
+ end
58
+
59
+ it "does not equal each other" do
60
+ expect(shakespeare.to_s).to_not eq(gregorian.to_s)
61
+ end
62
+
63
+ it "the english date is 10 days later" do
64
+ expect(shakespeare.to_s).to eq({ a: DateTime.iso8601('1616-05-03', Date::GREGORIAN) }.to_bson.to_s)
65
+ end
66
+ end
67
+
68
+ context "when putting and receiving from bson" do
69
+
70
+ let(:shakespeare) do
71
+ Hash.from_bson(BSON::ByteBuffer.new({ a: shakespeare_datetime }.to_bson.to_s))
72
+ end
73
+
74
+ let(:gregorian) do
75
+ Hash.from_bson(BSON::ByteBuffer.new({ a: gregorian_datetime }.to_bson.to_s))
76
+ end
77
+
78
+ it "does not equal each other" do
79
+ expect(shakespeare).to_not eq(gregorian)
80
+ end
81
+
82
+ it "the english date is 10 days later" do
83
+ expect(shakespeare[:a]).to eq(DateTime.iso8601('1616-05-03', Date::GREGORIAN).to_time)
84
+ end
85
+
86
+ it "the gregorian date is the same" do
87
+ expect(gregorian[:a]).to eq(DateTime.iso8601('1616-04-23', Date::GREGORIAN).to_time)
88
+ end
89
+ end
90
+ end
38
91
  end
39
92
  end
@@ -227,6 +227,23 @@ describe Hash do
227
227
  end
228
228
  end
229
229
  end
230
+
231
+ context 'when hash contains value of an unserializable class' do
232
+ class HashSpecUnserializableClass
233
+ end
234
+
235
+ let(:obj) do
236
+ {foo: HashSpecUnserializableClass.new}
237
+ end
238
+
239
+ it 'raises UnserializableClass' do
240
+ lambda do
241
+ obj.to_bson
242
+ end.should raise_error(BSON::Error::UnserializableClass,
243
+ # C extension does not provide hash key in the exception message.
244
+ /(Hash value for key 'foo'|Value) does not define its BSON serialized type:.*HashSpecUnserializableClass/)
245
+ end
246
+ end
230
247
  end
231
248
 
232
249
  describe '#to_bson' do
@@ -60,4 +60,15 @@ RSpec.configure do |config|
60
60
  config.expect_with :rspec do |c|
61
61
  c.syntax = [:should, :expect]
62
62
  end
63
+
64
+ # To ensure that calling GC.compact does not produce unexpected behavior,
65
+ # randomly call GC.compact after a small percentage of tests in the suite.
66
+ # This behavior is only enabled when the COMPACT environment variable is true.
67
+ if SpecConfig.instance.compact?
68
+ config.after do
69
+ if rand < SpecConfig::COMPACTION_CHANCE
70
+ GC.compact
71
+ end
72
+ end
73
+ end
63
74
  end
@@ -13,6 +13,16 @@
13
13
  "canonical_bson": "100000001161002A00000015CD5B0700",
14
14
  "canonical_extjson": "{\"a\" : {\"$timestamp\" : {\"t\" : 123456789, \"i\" : 42} } }",
15
15
  "degenerate_extjson": "{\"a\" : {\"$timestamp\" : {\"i\" : 42, \"t\" : 123456789} } }"
16
+ },
17
+ {
18
+ "description": "Timestamp with high-order bit set on both seconds and increment",
19
+ "canonical_bson": "10000000116100FFFFFFFFFFFFFFFF00",
20
+ "canonical_extjson": "{\"a\" : {\"$timestamp\" : {\"t\" : 4294967295, \"i\" : 4294967295} } }"
21
+ },
22
+ {
23
+ "description": "Timestamp with high-order bit set on both seconds and increment (not UINT32_MAX)",
24
+ "canonical_bson": "1000000011610000286BEE00286BEE00",
25
+ "canonical_extjson": "{\"a\" : {\"$timestamp\" : {\"t\" : 4000000000, \"i\" : 4000000000} } }"
16
26
  }
17
27
  ],
18
28
  "decodeErrors": [
@@ -65,11 +65,11 @@
65
65
  "parseErrors": [
66
66
  {
67
67
  "description" : "Bad $regularExpression (extra field)",
68
- "string" : "{\"a\" : \"$regularExpression\": {\"pattern\": \"abc\", \"options\": \"\", \"unrelated\": true}}}"
68
+ "string" : "{\"a\" : {\"$regularExpression\": {\"pattern\": \"abc\", \"options\": \"\", \"unrelated\": true}}}"
69
69
  },
70
70
  {
71
71
  "description" : "Bad $regularExpression (missing options field)",
72
- "string" : "{\"a\" : \"$regularExpression\": {\"pattern\": \"abc\"}}}"
72
+ "string" : "{\"a\" : {\"$regularExpression\": {\"pattern\": \"abc\"}}}"
73
73
  },
74
74
  {
75
75
  "description": "Bad $regularExpression (pattern is number, not string)",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  {
83
83
  "description" : "Bad $regularExpression (missing pattern field)",
84
- "string" : "{\"a\" : \"$regularExpression\": {\"options\":\"ix\"}}}"
84
+ "string" : "{\"a\" : {\"$regularExpression\": {\"options\":\"ix\"}}}"
85
85
  },
86
86
  {
87
87
  "description": "Bad $oid (number, not string)",
@@ -3,7 +3,13 @@ require 'singleton'
3
3
  class SpecConfig
4
4
  include Singleton
5
5
 
6
+ COMPACTION_CHANCE = 0.001
7
+
6
8
  def active_support?
7
9
  %w(1 true yes).include?(ENV['WITH_ACTIVE_SUPPORT'])
8
10
  end
11
+
12
+ def compact?
13
+ %w(1 true yes).include?(ENV['COMPACT'])
14
+ end
9
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bson
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.9.2
4
+ version: 4.10.1
5
5
  platform: java
6
6
  authors:
7
7
  - Tyler Brock
@@ -33,7 +33,7 @@ cert_chain:
33
33
  gpvfPNWMwyBDlHaNS3GfO6cRRxBOvEG05GUCsvtTY4Bpe8yjE64wg1ymb47LMOnv
34
34
  Qb1lGORmf/opg45mluKUYl7pQNZHD0d3
35
35
  -----END CERTIFICATE-----
36
- date: 2020-06-08 00:00:00.000000000 Z
36
+ date: 2020-10-13 00:00:00.000000000 Z
37
37
  dependencies: []
38
38
  description: A fully featured BSON specification implementation in Ruby
39
39
  email:
@@ -89,6 +89,7 @@ files:
89
89
  - lib/bson/true_class.rb
90
90
  - lib/bson/undefined.rb
91
91
  - lib/bson/version.rb
92
+ - lib/bson_native.bundle
92
93
  - spec/bson/array_spec.rb
93
94
  - spec/bson/binary_spec.rb
94
95
  - spec/bson/binary_uuid_spec.rb
@@ -228,113 +229,113 @@ signing_key:
228
229
  specification_version: 4
229
230
  summary: Ruby implementation of the BSON specification
230
231
  test_files:
231
- - spec/bson_spec.rb
232
232
  - spec/spec_helper.rb
233
- - spec/runners/corpus.rb
234
- - spec/runners/corpus_legacy.rb
235
- - spec/runners/common_driver.rb
236
- - spec/bson/max_key_spec.rb
237
- - spec/bson/byte_buffer_spec.rb
238
- - spec/bson/ext_json_parse_spec.rb
239
- - spec/bson/byte_buffer_read_spec.rb
240
- - spec/bson/decimal128_spec.rb
241
- - spec/bson/date_spec.rb
242
- - spec/bson/object_spec.rb
243
- - spec/bson/int64_spec.rb
244
- - spec/bson/int32_spec.rb
245
- - spec/bson/object_id_spec.rb
246
- - spec/bson/hash_spec.rb
247
- - spec/bson/string_spec.rb
248
- - spec/bson/boolean_spec.rb
249
- - spec/bson/timestamp_spec.rb
250
- - spec/bson/open_struct_spec.rb
251
- - spec/bson/config_spec.rb
252
- - spec/bson/nil_class_spec.rb
253
- - spec/bson/regexp_spec.rb
254
- - spec/bson/time_with_zone_spec.rb
255
- - spec/bson/code_spec.rb
256
- - spec/bson/false_class_spec.rb
257
- - spec/bson/raw_spec.rb
258
- - spec/bson/binary_spec.rb
259
- - spec/bson/array_spec.rb
260
- - spec/bson/code_with_scope_spec.rb
261
- - spec/bson/symbol_spec.rb
262
- - spec/bson/float_spec.rb
263
- - spec/bson/symbol_raw_spec.rb
264
- - spec/bson/true_class_spec.rb
265
- - spec/bson/integer_spec.rb
266
- - spec/bson/binary_uuid_spec.rb
267
- - spec/bson/time_spec.rb
268
- - spec/bson/json_spec.rb
269
- - spec/bson/date_time_spec.rb
270
- - spec/bson/document_spec.rb
271
- - spec/bson/byte_buffer_write_spec.rb
272
- - spec/bson/min_key_spec.rb
273
- - spec/bson/undefined_spec.rb
274
- - spec/bson/registry_spec.rb
275
- - spec/support/shared_examples.rb
276
- - spec/support/spec_config.rb
277
- - spec/support/utils.rb
233
+ - spec/bson_spec.rb
234
+ - spec/spec_tests/common_driver_spec.rb
278
235
  - spec/spec_tests/corpus_legacy_spec.rb
279
236
  - spec/spec_tests/corpus_spec.rb
280
- - spec/spec_tests/common_driver_spec.rb
281
- - spec/spec_tests/data/corpus_legacy/code.json
282
- - spec/spec_tests/data/corpus_legacy/code_w_scope.json
283
- - spec/spec_tests/data/corpus_legacy/null.json
284
- - spec/spec_tests/data/corpus_legacy/boolean.json
285
- - spec/spec_tests/data/corpus_legacy/oid.json
286
- - spec/spec_tests/data/corpus_legacy/regex.json
287
- - spec/spec_tests/data/corpus_legacy/array.json
288
- - spec/spec_tests/data/corpus_legacy/document.json
289
- - spec/spec_tests/data/corpus_legacy/undefined.json
290
- - spec/spec_tests/data/corpus_legacy/binary.json
291
- - spec/spec_tests/data/corpus_legacy/minkey.json
292
- - spec/spec_tests/data/corpus_legacy/maxkey.json
293
- - spec/spec_tests/data/corpus_legacy/int32.json
294
- - spec/spec_tests/data/corpus_legacy/timestamp.json
295
- - spec/spec_tests/data/corpus_legacy/top.json
296
- - spec/spec_tests/data/corpus_legacy/string.json
297
- - spec/spec_tests/data/corpus_legacy/double.json
298
- - spec/spec_tests/data/corpus_legacy/failures/symbol.json
299
- - spec/spec_tests/data/corpus_legacy/failures/datetime.json
300
- - spec/spec_tests/data/corpus_legacy/failures/int64.json
301
- - spec/spec_tests/data/corpus_legacy/failures/dbpointer.json
302
- - spec/spec_tests/data/corpus/code.json
303
- - spec/spec_tests/data/corpus/code_w_scope.json
304
- - spec/spec_tests/data/corpus/decimal128-1.json
305
- - spec/spec_tests/data/corpus/null.json
306
- - spec/spec_tests/data/corpus/multi-type.json
307
- - spec/spec_tests/data/corpus/boolean.json
308
- - spec/spec_tests/data/corpus/symbol.json
309
- - spec/spec_tests/data/corpus/datetime.json
310
- - spec/spec_tests/data/corpus/oid.json
311
- - spec/spec_tests/data/corpus/regex.json
312
- - spec/spec_tests/data/corpus/int64.json
313
- - spec/spec_tests/data/corpus/decimal128-7.json
314
237
  - spec/spec_tests/data/corpus/array.json
315
- - spec/spec_tests/data/corpus/decimal128-3.json
316
- - spec/spec_tests/data/corpus/decimal128-5.json
317
238
  - spec/spec_tests/data/corpus/document.json
318
- - spec/spec_tests/data/corpus/multi-type-deprecated.json
319
- - spec/spec_tests/data/corpus/README.md
239
+ - spec/spec_tests/data/corpus/decimal128-7.json
240
+ - spec/spec_tests/data/corpus/decimal128-3.json
241
+ - spec/spec_tests/data/corpus/maxkey.json
242
+ - spec/spec_tests/data/corpus/code.json
320
243
  - spec/spec_tests/data/corpus/dbpointer.json
244
+ - spec/spec_tests/data/corpus/int32.json
245
+ - spec/spec_tests/data/corpus/README.md
246
+ - spec/spec_tests/data/corpus/decimal128-5.json
321
247
  - spec/spec_tests/data/corpus/decimal128-4.json
322
- - spec/spec_tests/data/corpus/undefined.json
248
+ - spec/spec_tests/data/corpus/decimal128-2.json
249
+ - spec/spec_tests/data/corpus/double.json
250
+ - spec/spec_tests/data/corpus/code_w_scope.json
251
+ - spec/spec_tests/data/corpus/binary.json
252
+ - spec/spec_tests/data/corpus/oid.json
253
+ - spec/spec_tests/data/corpus/null.json
323
254
  - spec/spec_tests/data/corpus/decimal128-6.json
255
+ - spec/spec_tests/data/corpus/int64.json
324
256
  - spec/spec_tests/data/corpus/dbref.json
325
- - spec/spec_tests/data/corpus/binary.json
257
+ - spec/spec_tests/data/corpus/regex.json
326
258
  - spec/spec_tests/data/corpus/minkey.json
327
- - spec/spec_tests/data/corpus/decimal128-2.json
328
- - spec/spec_tests/data/corpus/maxkey.json
329
- - spec/spec_tests/data/corpus/int32.json
330
- - spec/spec_tests/data/corpus/timestamp.json
259
+ - spec/spec_tests/data/corpus/multi-type.json
331
260
  - spec/spec_tests/data/corpus/top.json
261
+ - spec/spec_tests/data/corpus/symbol.json
262
+ - spec/spec_tests/data/corpus/multi-type-deprecated.json
263
+ - spec/spec_tests/data/corpus/undefined.json
264
+ - spec/spec_tests/data/corpus/datetime.json
332
265
  - spec/spec_tests/data/corpus/string.json
333
- - spec/spec_tests/data/corpus/double.json
334
- - spec/spec_tests/data/decimal128/decimal128-1.json
266
+ - spec/spec_tests/data/corpus/boolean.json
267
+ - spec/spec_tests/data/corpus/timestamp.json
268
+ - spec/spec_tests/data/corpus/decimal128-1.json
335
269
  - spec/spec_tests/data/decimal128/decimal128-7.json
336
270
  - spec/spec_tests/data/decimal128/decimal128-3.json
337
271
  - spec/spec_tests/data/decimal128/decimal128-5.json
338
272
  - spec/spec_tests/data/decimal128/decimal128-4.json
339
- - spec/spec_tests/data/decimal128/decimal128-6.json
340
273
  - spec/spec_tests/data/decimal128/decimal128-2.json
274
+ - spec/spec_tests/data/decimal128/decimal128-6.json
275
+ - spec/spec_tests/data/decimal128/decimal128-1.json
276
+ - spec/spec_tests/data/corpus_legacy/array.json
277
+ - spec/spec_tests/data/corpus_legacy/document.json
278
+ - spec/spec_tests/data/corpus_legacy/maxkey.json
279
+ - spec/spec_tests/data/corpus_legacy/code.json
280
+ - spec/spec_tests/data/corpus_legacy/int32.json
281
+ - spec/spec_tests/data/corpus_legacy/double.json
282
+ - spec/spec_tests/data/corpus_legacy/code_w_scope.json
283
+ - spec/spec_tests/data/corpus_legacy/binary.json
284
+ - spec/spec_tests/data/corpus_legacy/oid.json
285
+ - spec/spec_tests/data/corpus_legacy/null.json
286
+ - spec/spec_tests/data/corpus_legacy/regex.json
287
+ - spec/spec_tests/data/corpus_legacy/minkey.json
288
+ - spec/spec_tests/data/corpus_legacy/top.json
289
+ - spec/spec_tests/data/corpus_legacy/undefined.json
290
+ - spec/spec_tests/data/corpus_legacy/string.json
291
+ - spec/spec_tests/data/corpus_legacy/boolean.json
292
+ - spec/spec_tests/data/corpus_legacy/timestamp.json
293
+ - spec/spec_tests/data/corpus_legacy/failures/dbpointer.json
294
+ - spec/spec_tests/data/corpus_legacy/failures/int64.json
295
+ - spec/spec_tests/data/corpus_legacy/failures/symbol.json
296
+ - spec/spec_tests/data/corpus_legacy/failures/datetime.json
297
+ - spec/runners/corpus.rb
298
+ - spec/runners/corpus_legacy.rb
299
+ - spec/runners/common_driver.rb
300
+ - spec/support/spec_config.rb
301
+ - spec/support/shared_examples.rb
302
+ - spec/support/utils.rb
303
+ - spec/bson/ext_json_parse_spec.rb
304
+ - spec/bson/object_spec.rb
305
+ - spec/bson/json_spec.rb
306
+ - spec/bson/true_class_spec.rb
307
+ - spec/bson/byte_buffer_read_spec.rb
308
+ - spec/bson/config_spec.rb
309
+ - spec/bson/int32_spec.rb
310
+ - spec/bson/regexp_spec.rb
311
+ - spec/bson/symbol_raw_spec.rb
312
+ - spec/bson/open_struct_spec.rb
313
+ - spec/bson/document_spec.rb
314
+ - spec/bson/min_key_spec.rb
315
+ - spec/bson/false_class_spec.rb
316
+ - spec/bson/code_spec.rb
317
+ - spec/bson/symbol_spec.rb
318
+ - spec/bson/object_id_spec.rb
319
+ - spec/bson/decimal128_spec.rb
320
+ - spec/bson/registry_spec.rb
321
+ - spec/bson/time_spec.rb
322
+ - spec/bson/boolean_spec.rb
323
+ - spec/bson/byte_buffer_spec.rb
324
+ - spec/bson/hash_spec.rb
325
+ - spec/bson/undefined_spec.rb
326
+ - spec/bson/raw_spec.rb
327
+ - spec/bson/string_spec.rb
328
+ - spec/bson/timestamp_spec.rb
329
+ - spec/bson/date_time_spec.rb
330
+ - spec/bson/max_key_spec.rb
331
+ - spec/bson/int64_spec.rb
332
+ - spec/bson/byte_buffer_write_spec.rb
333
+ - spec/bson/date_spec.rb
334
+ - spec/bson/binary_spec.rb
335
+ - spec/bson/code_with_scope_spec.rb
336
+ - spec/bson/integer_spec.rb
337
+ - spec/bson/binary_uuid_spec.rb
338
+ - spec/bson/nil_class_spec.rb
339
+ - spec/bson/array_spec.rb
340
+ - spec/bson/time_with_zone_spec.rb
341
+ - spec/bson/float_spec.rb
metadata.gz.sig CHANGED
Binary file