thrift 0.22.0 → 0.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +235 -17
  3. data/benchmark/benchmark.rb +23 -8
  4. data/benchmark/client.rb +50 -6
  5. data/benchmark/server.rb +46 -7
  6. data/benchmark/thin_server.rb +2 -0
  7. data/ext/binary_protocol_accelerated.c +154 -42
  8. data/ext/bytes.c +14 -0
  9. data/ext/compact_protocol.c +138 -45
  10. data/ext/constants.h +12 -0
  11. data/ext/extconf.rb +17 -8
  12. data/ext/memory_buffer.c +44 -7
  13. data/ext/protocol.c +29 -0
  14. data/ext/protocol.h +35 -0
  15. data/ext/struct.c +48 -17
  16. data/ext/thrift_native.c +28 -3
  17. data/lib/thrift/bytes.rb +70 -100
  18. data/lib/thrift/client.rb +54 -13
  19. data/lib/thrift/exceptions.rb +6 -5
  20. data/lib/thrift/multiplexed_processor.rb +20 -10
  21. data/lib/thrift/processor.rb +7 -6
  22. data/lib/thrift/protocol/base_protocol.rb +52 -21
  23. data/lib/thrift/protocol/binary_protocol.rb +65 -20
  24. data/lib/thrift/protocol/binary_protocol_accelerated.rb +6 -5
  25. data/lib/thrift/protocol/compact_protocol.rb +76 -41
  26. data/lib/thrift/protocol/header_protocol.rb +321 -0
  27. data/lib/thrift/protocol/json_protocol.rb +44 -27
  28. data/lib/thrift/protocol/multiplexed_protocol.rb +6 -5
  29. data/lib/thrift/protocol/protocol_decorator.rb +13 -4
  30. data/lib/thrift/serializer/deserializer.rb +6 -5
  31. data/lib/thrift/serializer/serializer.rb +5 -5
  32. data/lib/thrift/server/base_server.rb +5 -4
  33. data/lib/thrift/server/mongrel_http_server.rb +7 -6
  34. data/lib/thrift/server/nonblocking_server.rb +35 -9
  35. data/lib/thrift/server/simple_server.rb +13 -5
  36. data/lib/thrift/server/thin_http_server.rb +4 -3
  37. data/lib/thrift/server/thread_pool_server.rb +7 -6
  38. data/lib/thrift/server/threaded_server.rb +13 -5
  39. data/lib/thrift/struct.rb +12 -11
  40. data/lib/thrift/struct_union.rb +14 -9
  41. data/lib/thrift/thrift_native.rb +3 -2
  42. data/lib/thrift/transport/base_server_transport.rb +8 -5
  43. data/lib/thrift/transport/base_transport.rb +18 -14
  44. data/lib/thrift/transport/buffered_transport.rb +7 -6
  45. data/lib/thrift/transport/framed_transport.rb +8 -7
  46. data/lib/thrift/transport/header_transport.rb +562 -0
  47. data/lib/thrift/transport/http_client_transport.rb +2 -1
  48. data/lib/thrift/transport/io_stream_transport.rb +4 -3
  49. data/lib/thrift/transport/memory_buffer_transport.rb +13 -6
  50. data/lib/thrift/transport/server_socket.rb +14 -8
  51. data/lib/thrift/transport/socket.rb +126 -60
  52. data/lib/thrift/transport/ssl_server_socket.rb +4 -3
  53. data/lib/thrift/transport/ssl_socket.rb +45 -13
  54. data/lib/thrift/transport/unix_server_socket.rb +9 -5
  55. data/lib/thrift/transport/unix_socket.rb +7 -6
  56. data/lib/thrift/types.rb +10 -6
  57. data/lib/thrift/union.rb +15 -8
  58. data/lib/thrift/uuid.rb +50 -0
  59. data/lib/thrift.rb +4 -1
  60. data/spec/ThriftSpec.thrift +21 -1
  61. data/spec/base_protocol_spec.rb +21 -2
  62. data/spec/base_transport_spec.rb +48 -8
  63. data/spec/binary_protocol_accelerated_spec.rb +1 -0
  64. data/spec/binary_protocol_spec.rb +1 -2
  65. data/spec/binary_protocol_spec_shared.rb +206 -155
  66. data/spec/bytes_spec.rb +71 -114
  67. data/spec/client_spec.rb +86 -19
  68. data/spec/compact_protocol_spec.rb +153 -16
  69. data/spec/constants_demo_spec.rb +102 -0
  70. data/spec/exception_spec.rb +1 -1
  71. data/spec/flat_spec.rb +1 -0
  72. data/spec/header_protocol_spec.rb +476 -0
  73. data/spec/header_transport_spec.rb +431 -0
  74. data/spec/http_client_spec.rb +5 -6
  75. data/spec/json_protocol_spec.rb +69 -47
  76. data/spec/multiplexed_processor_spec.rb +75 -0
  77. data/spec/namespaced_spec.rb +1 -1
  78. data/spec/nonblocking_server_spec.rb +174 -8
  79. data/spec/processor_spec.rb +1 -1
  80. data/spec/recursion_depth_spec.rb +223 -0
  81. data/spec/serializer_spec.rb +1 -1
  82. data/spec/server_socket_spec.rb +38 -1
  83. data/spec/server_spec.rb +60 -9
  84. data/spec/socket_spec.rb +119 -13
  85. data/spec/socket_spec_shared.rb +73 -9
  86. data/spec/spec_helper.rb +2 -1
  87. data/spec/ssl_server_socket_spec.rb +52 -1
  88. data/spec/ssl_socket_spec.rb +181 -11
  89. data/spec/struct_nested_containers_spec.rb +2 -2
  90. data/spec/struct_spec.rb +114 -9
  91. data/spec/support/header_protocol_helper.rb +55 -0
  92. data/spec/thin_http_server_spec.rb +4 -18
  93. data/spec/types_spec.rb +26 -26
  94. data/spec/union_spec.rb +70 -11
  95. data/spec/unix_socket_spec.rb +17 -2
  96. data/spec/uuid_validation_spec.rb +239 -0
  97. data/test/fuzz/Makefile +779 -0
  98. data/test/fuzz/Makefile.am +173 -0
  99. data/test/fuzz/Makefile.in +775 -0
  100. data/test/fuzz/README.md +149 -0
  101. data/test/fuzz/fuzz_common.rb +96 -0
  102. data/{lib/thrift/core_ext.rb → test/fuzz/fuzz_parse_binary_protocol.rb} +4 -4
  103. data/{lib/thrift/core_ext/fixnum.rb → test/fuzz/fuzz_parse_binary_protocol_accelerated.rb} +7 -13
  104. data/test/fuzz/fuzz_parse_binary_protocol_accelerated_harness.rb +23 -0
  105. data/test/fuzz/fuzz_parse_binary_protocol_harness.rb +23 -0
  106. data/test/fuzz/fuzz_parse_compact_protocol.rb +23 -0
  107. data/test/fuzz/fuzz_parse_compact_protocol_harness.rb +23 -0
  108. data/test/fuzz/fuzz_parse_json_protocol.rb +23 -0
  109. data/test/fuzz/fuzz_parse_json_protocol_harness.rb +23 -0
  110. data/test/fuzz/fuzz_roundtrip_binary_protocol.rb +23 -0
  111. data/test/fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb +23 -0
  112. data/test/fuzz/fuzz_roundtrip_binary_protocol_accelerated_harness.rb +23 -0
  113. data/test/fuzz/fuzz_roundtrip_binary_protocol_harness.rb +23 -0
  114. data/test/fuzz/fuzz_roundtrip_compact_protocol.rb +23 -0
  115. data/test/fuzz/fuzz_roundtrip_compact_protocol_harness.rb +23 -0
  116. data/test/fuzz/fuzz_roundtrip_json_protocol.rb +23 -0
  117. data/test/fuzz/fuzz_roundtrip_json_protocol_harness.rb +23 -0
  118. data/test/fuzz/fuzz_tracer.rb +29 -0
  119. metadata +105 -70
metadata CHANGED
@@ -1,85 +1,56 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thrift
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apache Thrift Developers
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-05-23 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
- name: bundler
13
+ name: logger
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '1.11'
20
- type: :development
18
+ version: '0'
19
+ type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '1.11'
27
- - !ruby/object:Gem::Dependency
28
- name: pry
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 0.11.3
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 0.11.3
41
- - !ruby/object:Gem::Dependency
42
- name: pry-byebug
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '3.6'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.6'
25
+ version: '0'
55
26
  - !ruby/object:Gem::Dependency
56
- name: pry-stack_explorer
27
+ name: bundler
57
28
  requirement: !ruby/object:Gem::Requirement
58
29
  requirements:
59
- - - "~>"
30
+ - - ">="
60
31
  - !ruby/object:Gem::Version
61
- version: 0.4.9.2
32
+ version: 2.2.34
62
33
  type: :development
63
34
  prerelease: false
64
35
  version_requirements: !ruby/object:Gem::Requirement
65
36
  requirements:
66
- - - "~>"
37
+ - - ">="
67
38
  - !ruby/object:Gem::Version
68
- version: 0.4.9.2
39
+ version: 2.2.34
69
40
  - !ruby/object:Gem::Dependency
70
41
  name: rack
71
42
  requirement: !ruby/object:Gem::Requirement
72
43
  requirements:
73
- - - '='
44
+ - - ">="
74
45
  - !ruby/object:Gem::Version
75
- version: 2.2.6.4
46
+ version: 2.2.23
76
47
  type: :development
77
48
  prerelease: false
78
49
  version_requirements: !ruby/object:Gem::Requirement
79
50
  requirements:
80
- - - '='
51
+ - - ">="
81
52
  - !ruby/object:Gem::Version
82
- version: 2.2.6.4
53
+ version: 2.2.23
83
54
  - !ruby/object:Gem::Dependency
84
55
  name: rack-test
85
56
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +71,14 @@ dependencies:
100
71
  requirements:
101
72
  - - "~>"
102
73
  - !ruby/object:Gem::Version
103
- version: '12.3'
74
+ version: '13.3'
104
75
  type: :development
105
76
  prerelease: false
106
77
  version_requirements: !ruby/object:Gem::Requirement
107
78
  requirements:
108
79
  - - "~>"
109
80
  - !ruby/object:Gem::Version
110
- version: '12.3'
81
+ version: '13.3'
111
82
  - !ruby/object:Gem::Dependency
112
83
  name: rspec
113
84
  requirement: !ruby/object:Gem::Requirement
@@ -159,27 +130,26 @@ extensions:
159
130
  extra_rdoc_files:
160
131
  - README.md
161
132
  - ext/binary_protocol_accelerated.c
162
- - ext/bytes.c
163
- - ext/compact_protocol.c
164
- - ext/memory_buffer.c
165
- - ext/protocol.c
166
- - ext/strlcpy.c
167
- - ext/struct.c
168
- - ext/thrift_native.c
169
133
  - ext/binary_protocol_accelerated.h
134
+ - ext/bytes.c
170
135
  - ext/bytes.h
136
+ - ext/compact_protocol.c
171
137
  - ext/compact_protocol.h
172
138
  - ext/constants.h
139
+ - ext/extconf.rb
173
140
  - ext/macros.h
141
+ - ext/memory_buffer.c
174
142
  - ext/memory_buffer.h
143
+ - ext/protocol.c
175
144
  - ext/protocol.h
145
+ - ext/strlcpy.c
176
146
  - ext/strlcpy.h
147
+ - ext/struct.c
177
148
  - ext/struct.h
178
- - ext/extconf.rb
149
+ - ext/thrift_native.c
150
+ - lib/thrift.rb
179
151
  - lib/thrift/bytes.rb
180
152
  - lib/thrift/client.rb
181
- - lib/thrift/core_ext/fixnum.rb
182
- - lib/thrift/core_ext.rb
183
153
  - lib/thrift/exceptions.rb
184
154
  - lib/thrift/multiplexed_processor.rb
185
155
  - lib/thrift/processor.rb
@@ -187,6 +157,7 @@ extra_rdoc_files:
187
157
  - lib/thrift/protocol/binary_protocol.rb
188
158
  - lib/thrift/protocol/binary_protocol_accelerated.rb
189
159
  - lib/thrift/protocol/compact_protocol.rb
160
+ - lib/thrift/protocol/header_protocol.rb
190
161
  - lib/thrift/protocol/json_protocol.rb
191
162
  - lib/thrift/protocol/multiplexed_protocol.rb
192
163
  - lib/thrift/protocol/protocol_decorator.rb
@@ -206,6 +177,7 @@ extra_rdoc_files:
206
177
  - lib/thrift/transport/base_transport.rb
207
178
  - lib/thrift/transport/buffered_transport.rb
208
179
  - lib/thrift/transport/framed_transport.rb
180
+ - lib/thrift/transport/header_transport.rb
209
181
  - lib/thrift/transport/http_client_transport.rb
210
182
  - lib/thrift/transport/io_stream_transport.rb
211
183
  - lib/thrift/transport/memory_buffer_transport.rb
@@ -217,7 +189,7 @@ extra_rdoc_files:
217
189
  - lib/thrift/transport/unix_socket.rb
218
190
  - lib/thrift/types.rb
219
191
  - lib/thrift/union.rb
220
- - lib/thrift.rb
192
+ - lib/thrift/uuid.rb
221
193
  files:
222
194
  - README.md
223
195
  - benchmark/Benchmark.thrift
@@ -246,8 +218,6 @@ files:
246
218
  - lib/thrift.rb
247
219
  - lib/thrift/bytes.rb
248
220
  - lib/thrift/client.rb
249
- - lib/thrift/core_ext.rb
250
- - lib/thrift/core_ext/fixnum.rb
251
221
  - lib/thrift/exceptions.rb
252
222
  - lib/thrift/multiplexed_processor.rb
253
223
  - lib/thrift/processor.rb
@@ -255,6 +225,7 @@ files:
255
225
  - lib/thrift/protocol/binary_protocol.rb
256
226
  - lib/thrift/protocol/binary_protocol_accelerated.rb
257
227
  - lib/thrift/protocol/compact_protocol.rb
228
+ - lib/thrift/protocol/header_protocol.rb
258
229
  - lib/thrift/protocol/json_protocol.rb
259
230
  - lib/thrift/protocol/multiplexed_protocol.rb
260
231
  - lib/thrift/protocol/protocol_decorator.rb
@@ -274,6 +245,7 @@ files:
274
245
  - lib/thrift/transport/base_transport.rb
275
246
  - lib/thrift/transport/buffered_transport.rb
276
247
  - lib/thrift/transport/framed_transport.rb
248
+ - lib/thrift/transport/header_transport.rb
277
249
  - lib/thrift/transport/http_client_transport.rb
278
250
  - lib/thrift/transport/io_stream_transport.rb
279
251
  - lib/thrift/transport/memory_buffer_transport.rb
@@ -285,6 +257,7 @@ files:
285
257
  - lib/thrift/transport/unix_socket.rb
286
258
  - lib/thrift/types.rb
287
259
  - lib/thrift/union.rb
260
+ - lib/thrift/uuid.rb
288
261
  - spec/BaseService.thrift
289
262
  - spec/ExtendedService.thrift
290
263
  - spec/Referenced.thrift
@@ -298,13 +271,18 @@ files:
298
271
  - spec/bytes_spec.rb
299
272
  - spec/client_spec.rb
300
273
  - spec/compact_protocol_spec.rb
274
+ - spec/constants_demo_spec.rb
301
275
  - spec/exception_spec.rb
302
276
  - spec/flat_spec.rb
277
+ - spec/header_protocol_spec.rb
278
+ - spec/header_transport_spec.rb
303
279
  - spec/http_client_spec.rb
304
280
  - spec/json_protocol_spec.rb
281
+ - spec/multiplexed_processor_spec.rb
305
282
  - spec/namespaced_spec.rb
306
283
  - spec/nonblocking_server_spec.rb
307
284
  - spec/processor_spec.rb
285
+ - spec/recursion_depth_spec.rb
308
286
  - spec/serializer_spec.rb
309
287
  - spec/server_socket_spec.rb
310
288
  - spec/server_spec.rb
@@ -315,15 +293,44 @@ files:
315
293
  - spec/ssl_socket_spec.rb
316
294
  - spec/struct_nested_containers_spec.rb
317
295
  - spec/struct_spec.rb
296
+ - spec/support/header_protocol_helper.rb
318
297
  - spec/thin_http_server_spec.rb
319
298
  - spec/types_spec.rb
320
299
  - spec/union_spec.rb
321
300
  - spec/unix_socket_spec.rb
322
- homepage: http://thrift.apache.org
301
+ - spec/uuid_validation_spec.rb
302
+ - test/fuzz/Makefile
303
+ - test/fuzz/Makefile.am
304
+ - test/fuzz/Makefile.in
305
+ - test/fuzz/README.md
306
+ - test/fuzz/fuzz_common.rb
307
+ - test/fuzz/fuzz_parse_binary_protocol.rb
308
+ - test/fuzz/fuzz_parse_binary_protocol_accelerated.rb
309
+ - test/fuzz/fuzz_parse_binary_protocol_accelerated_harness.rb
310
+ - test/fuzz/fuzz_parse_binary_protocol_harness.rb
311
+ - test/fuzz/fuzz_parse_compact_protocol.rb
312
+ - test/fuzz/fuzz_parse_compact_protocol_harness.rb
313
+ - test/fuzz/fuzz_parse_json_protocol.rb
314
+ - test/fuzz/fuzz_parse_json_protocol_harness.rb
315
+ - test/fuzz/fuzz_roundtrip_binary_protocol.rb
316
+ - test/fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb
317
+ - test/fuzz/fuzz_roundtrip_binary_protocol_accelerated_harness.rb
318
+ - test/fuzz/fuzz_roundtrip_binary_protocol_harness.rb
319
+ - test/fuzz/fuzz_roundtrip_compact_protocol.rb
320
+ - test/fuzz/fuzz_roundtrip_compact_protocol_harness.rb
321
+ - test/fuzz/fuzz_roundtrip_json_protocol.rb
322
+ - test/fuzz/fuzz_roundtrip_json_protocol_harness.rb
323
+ - test/fuzz/fuzz_tracer.rb
324
+ homepage: https://thrift.apache.org
323
325
  licenses:
324
326
  - Apache-2.0
325
- metadata: {}
326
- post_install_message:
327
+ metadata:
328
+ bug_tracker_uri: https://issues.apache.org/jira/browse/THRIFT
329
+ changelog_uri: https://github.com/apache/thrift/blob/master/CHANGES.md
330
+ documentation_uri: https://thrift.apache.org/docs/
331
+ homepage_uri: https://thrift.apache.org
332
+ mailing_list_uri: https://thrift.apache.org/mailing
333
+ source_code_uri: https://github.com/apache/thrift/
327
334
  rdoc_options:
328
335
  - "--line-numbers"
329
336
  - "--inline-source"
@@ -338,18 +345,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
338
345
  requirements:
339
346
  - - ">="
340
347
  - !ruby/object:Gem::Version
341
- version: '0'
348
+ version: 2.7.0
342
349
  required_rubygems_version: !ruby/object:Gem::Requirement
343
350
  requirements:
344
351
  - - ">="
345
352
  - !ruby/object:Gem::Version
346
353
  version: '0'
347
354
  requirements: []
348
- rubygems_version: 3.3.15
349
- signing_key:
355
+ rubygems_version: 3.6.7
350
356
  specification_version: 4
351
357
  summary: Ruby bindings for Apache Thrift
352
358
  test_files:
359
+ - benchmark/Benchmark.thrift
360
+ - benchmark/benchmark.rb
361
+ - benchmark/client.rb
362
+ - benchmark/server.rb
363
+ - benchmark/thin_server.rb
353
364
  - spec/BaseService.thrift
354
365
  - spec/ExtendedService.thrift
355
366
  - spec/Referenced.thrift
@@ -363,13 +374,18 @@ test_files:
363
374
  - spec/bytes_spec.rb
364
375
  - spec/client_spec.rb
365
376
  - spec/compact_protocol_spec.rb
377
+ - spec/constants_demo_spec.rb
366
378
  - spec/exception_spec.rb
367
379
  - spec/flat_spec.rb
380
+ - spec/header_protocol_spec.rb
381
+ - spec/header_transport_spec.rb
368
382
  - spec/http_client_spec.rb
369
383
  - spec/json_protocol_spec.rb
384
+ - spec/multiplexed_processor_spec.rb
370
385
  - spec/namespaced_spec.rb
371
386
  - spec/nonblocking_server_spec.rb
372
387
  - spec/processor_spec.rb
388
+ - spec/recursion_depth_spec.rb
373
389
  - spec/serializer_spec.rb
374
390
  - spec/server_socket_spec.rb
375
391
  - spec/server_spec.rb
@@ -380,12 +396,31 @@ test_files:
380
396
  - spec/ssl_socket_spec.rb
381
397
  - spec/struct_nested_containers_spec.rb
382
398
  - spec/struct_spec.rb
399
+ - spec/support/header_protocol_helper.rb
383
400
  - spec/thin_http_server_spec.rb
384
401
  - spec/types_spec.rb
385
402
  - spec/union_spec.rb
386
403
  - spec/unix_socket_spec.rb
387
- - benchmark/Benchmark.thrift
388
- - benchmark/benchmark.rb
389
- - benchmark/client.rb
390
- - benchmark/server.rb
391
- - benchmark/thin_server.rb
404
+ - spec/uuid_validation_spec.rb
405
+ - test/fuzz/Makefile
406
+ - test/fuzz/Makefile.am
407
+ - test/fuzz/Makefile.in
408
+ - test/fuzz/README.md
409
+ - test/fuzz/fuzz_common.rb
410
+ - test/fuzz/fuzz_parse_binary_protocol.rb
411
+ - test/fuzz/fuzz_parse_binary_protocol_accelerated.rb
412
+ - test/fuzz/fuzz_parse_binary_protocol_accelerated_harness.rb
413
+ - test/fuzz/fuzz_parse_binary_protocol_harness.rb
414
+ - test/fuzz/fuzz_parse_compact_protocol.rb
415
+ - test/fuzz/fuzz_parse_compact_protocol_harness.rb
416
+ - test/fuzz/fuzz_parse_json_protocol.rb
417
+ - test/fuzz/fuzz_parse_json_protocol_harness.rb
418
+ - test/fuzz/fuzz_roundtrip_binary_protocol.rb
419
+ - test/fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb
420
+ - test/fuzz/fuzz_roundtrip_binary_protocol_accelerated_harness.rb
421
+ - test/fuzz/fuzz_roundtrip_binary_protocol_harness.rb
422
+ - test/fuzz/fuzz_roundtrip_compact_protocol.rb
423
+ - test/fuzz/fuzz_roundtrip_compact_protocol_harness.rb
424
+ - test/fuzz/fuzz_roundtrip_json_protocol.rb
425
+ - test/fuzz/fuzz_roundtrip_json_protocol_harness.rb
426
+ - test/fuzz/fuzz_tracer.rb