fluent-plugin-openlineage 0.1.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 (2573) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.idea/.gitignore +8 -0
  4. data/.idea/fluentd.iml +208 -0
  5. data/.idea/misc.xml +4 -0
  6. data/.idea/modules/benchmark-memory-0.2.iml +12 -0
  7. data/.idea/modules/bigdecimal-3.1.iml +11 -0
  8. data/.idea/modules/certstore_c-0.1.iml +15 -0
  9. data/.idea/modules/concurrent-ruby-1.3.iml +18 -0
  10. data/.idea/modules/concurrent-ruby-1.31.iml +15 -0
  11. data/.idea/modules/connection_pool-2.4.iml +11 -0
  12. data/.idea/modules/cool.io-1.8.iml +16 -0
  13. data/.idea/modules/drb-2.2.iml +14 -0
  14. data/.idea/modules/drb-2.21.iml +11 -0
  15. data/.idea/modules/ffi-1.17.iml +20 -0
  16. data/.idea/modules/ffi-win32-extensions-1.0.iml +19 -0
  17. data/.idea/modules/fluentd-1.17.iml +43 -0
  18. data/.idea/modules/http_parser.rb-0.8.iml +17 -0
  19. data/.idea/modules/json-2.7.iml +14 -0
  20. data/.idea/modules/json-2.71.iml +11 -0
  21. data/.idea/modules/msgpack-1.7.iml +15 -0
  22. data/.idea/modules/mutex_m-0.2.iml +15 -0
  23. data/.idea/modules/new_gem.iml +15 -0
  24. data/.idea/modules/power_assert-2.0.iml +19 -0
  25. data/.idea/modules/rake-13.2.iml +18 -0
  26. data/.idea/modules/rake-13.21.iml +15 -0
  27. data/.idea/modules/rake-compiler-1.2.iml +13 -0
  28. data/.idea/modules/rusty_json_schema-0.15.iml +15 -0
  29. data/.idea/modules/serverengine-2.3.iml +17 -0
  30. data/.idea/modules/sigdump-0.2.iml +16 -0
  31. data/.idea/modules/specifications.iml +14 -0
  32. data/.idea/modules/specifications1.iml +11 -0
  33. data/.idea/modules/strptime-0.2.iml +16 -0
  34. data/.idea/modules/thermite-0.13.iml +17 -0
  35. data/.idea/modules/webrick-1.8.iml +18 -0
  36. data/.idea/modules/win32-event-0.6.iml +21 -0
  37. data/.idea/modules/win32-ipc-0.7.iml +20 -0
  38. data/.idea/modules/yajl-ruby-1.4.iml +779 -0
  39. data/.idea/modules.xml +8 -0
  40. data/.idea/vcs.xml +6 -0
  41. data/.rspec +2 -0
  42. data/ChangeLog +3 -0
  43. data/Gemfile +3 -0
  44. data/LICENSE +202 -0
  45. data/README.md +223 -0
  46. data/Rakefile +13 -0
  47. data/fluent-plugin-openlineage.gemspec +28 -0
  48. data/lib/fluent/plugin/parser_openlineage.rb +182 -0
  49. data/misc/fluent.conf +101 -0
  50. data/misc/test-complete.json +73 -0
  51. data/misc/test-start.json +73 -0
  52. data/spec/Naming.md +500 -0
  53. data/spec/OpenLineage.json +304 -0
  54. data/spec/Versioning.md +49 -0
  55. data/spec/events/event_full.json +206 -0
  56. data/spec/events/event_invalid_dataset_facet.json +31 -0
  57. data/spec/events/event_invalid_input_dataset_facet.json +29 -0
  58. data/spec/events/event_invalid_job_facet.json +26 -0
  59. data/spec/events/event_invalid_output_dataset_facet.json +29 -0
  60. data/spec/events/event_invalid_run_facet.json +28 -0
  61. data/spec/events/event_no_run_id.json +28 -0
  62. data/spec/events/event_simple.json +29 -0
  63. data/spec/facets/ColumnLineageDatasetFacet.json +96 -0
  64. data/spec/facets/ColumnLineageDatasetFacet.md +106 -0
  65. data/spec/facets/DataQualityAssertionsDatasetFacet.json +49 -0
  66. data/spec/facets/DataQualityMetricsInputDatasetFacet.json +76 -0
  67. data/spec/facets/DatasetVersionDatasetFacet.json +31 -0
  68. data/spec/facets/DatasourceDatasetFacet.json +32 -0
  69. data/spec/facets/DocumentationDatasetFacet.json +31 -0
  70. data/spec/facets/DocumentationJobFacet.json +30 -0
  71. data/spec/facets/ErrorMessageRunFacet.json +41 -0
  72. data/spec/facets/ExternalQueryRunFacet.json +36 -0
  73. data/spec/facets/ExternalQueryRunFacet.md +49 -0
  74. data/spec/facets/ExtractionErrorRunFacet.json +58 -0
  75. data/spec/facets/JobTypeJobFacet.json +41 -0
  76. data/spec/facets/LifecycleStateChangeDatasetFacet.json +46 -0
  77. data/spec/facets/NominalTimeRunFacet.json +38 -0
  78. data/spec/facets/OutputStatisticsOutputDatasetFacet.json +36 -0
  79. data/spec/facets/OwnershipDatasetFacet.json +45 -0
  80. data/spec/facets/OwnershipJobFacet.json +45 -0
  81. data/spec/facets/ParentRunFacet.json +54 -0
  82. data/spec/facets/ProcessingEngineRunFacet.json +41 -0
  83. data/spec/facets/SQLJobFacet.json +30 -0
  84. data/spec/facets/SchemaDatasetFacet.json +59 -0
  85. data/spec/facets/SourceCodeJobFacet.json +34 -0
  86. data/spec/facets/SourceCodeLocationJobFacet.json +60 -0
  87. data/spec/facets/StorageDatasetFacet.json +35 -0
  88. data/spec/facets/SymlinksDatasetFacet.json +47 -0
  89. data/spec/fluent/plugin/test_parser_openlineage.rb +141 -0
  90. data/spec/registry/core/registry.json +31 -0
  91. data/spec/registry/gcp/facets/GcpCommonJobFacet.json +43 -0
  92. data/spec/registry/gcp/registry.json +6 -0
  93. data/spec/spec_helper.rb +8 -0
  94. data/spec/tests/ColumnLineageDatasetFacet/1.json +172 -0
  95. data/spec/tests/DataQualityAssertionsDatasetFacet/1.json +58 -0
  96. data/spec/tests/DataQualityMetricsInputDatasetFacet/1.json +23 -0
  97. data/spec/tests/DatasetVersionDatasetFacet/1.json +7 -0
  98. data/spec/tests/DatasourceDatasetFacet/1.json +7 -0
  99. data/spec/tests/DocumentationDatasetFacet/1.json +7 -0
  100. data/spec/tests/DocumentationJobFacet/1.json +7 -0
  101. data/spec/tests/ErrorMessageRunFacet/1.json +9 -0
  102. data/spec/tests/ExternalQueryRunFacet/1.json +8 -0
  103. data/spec/tests/ExtractionErrorRunFacet/1.json +15 -0
  104. data/spec/tests/JobTypeJobFacet/1.json +9 -0
  105. data/spec/tests/LifecycleStateChangeDatasetFacet/1.json +11 -0
  106. data/spec/tests/NominalTimeRunFacet/1.json +8 -0
  107. data/spec/tests/OutputStatisticsOutputDatasetFacet/1.json +9 -0
  108. data/spec/tests/OwnershipDatasetFacet/1.json +11 -0
  109. data/spec/tests/OwnershipJobFacet/1.json +11 -0
  110. data/spec/tests/ParentRunFacet/1.json +13 -0
  111. data/spec/tests/ProcessingEngineRunFacet/1.json +9 -0
  112. data/spec/tests/SQLJobFacet/1.json +7 -0
  113. data/spec/tests/SchemaDatasetFacet/1.json +92 -0
  114. data/spec/tests/SourceCodeJobFacet/1.json +8 -0
  115. data/spec/tests/SourceCodeLocationJobFacet/1.json +8 -0
  116. data/spec/tests/StorageDatasetFacet/1.json +8 -0
  117. data/spec/tests/SymlinksDatasetFacet/1.json +13 -0
  118. data/spec/tests/example_full_event.json +24 -0
  119. data/vendor/bundle/ruby/3.3.0/bin/fluent-binlog-reader +29 -0
  120. data/vendor/bundle/ruby/3.3.0/bin/fluent-binlog-reader.bat +2 -0
  121. data/vendor/bundle/ruby/3.3.0/bin/fluent-binlog-reader.lock +0 -0
  122. data/vendor/bundle/ruby/3.3.0/bin/fluent-ca-generate +29 -0
  123. data/vendor/bundle/ruby/3.3.0/bin/fluent-ca-generate.bat +2 -0
  124. data/vendor/bundle/ruby/3.3.0/bin/fluent-ca-generate.lock +0 -0
  125. data/vendor/bundle/ruby/3.3.0/bin/fluent-cap-ctl +29 -0
  126. data/vendor/bundle/ruby/3.3.0/bin/fluent-cap-ctl.bat +2 -0
  127. data/vendor/bundle/ruby/3.3.0/bin/fluent-cap-ctl.lock +0 -0
  128. data/vendor/bundle/ruby/3.3.0/bin/fluent-cat +29 -0
  129. data/vendor/bundle/ruby/3.3.0/bin/fluent-cat.bat +2 -0
  130. data/vendor/bundle/ruby/3.3.0/bin/fluent-cat.lock +0 -0
  131. data/vendor/bundle/ruby/3.3.0/bin/fluent-ctl +29 -0
  132. data/vendor/bundle/ruby/3.3.0/bin/fluent-ctl.bat +2 -0
  133. data/vendor/bundle/ruby/3.3.0/bin/fluent-ctl.lock +0 -0
  134. data/vendor/bundle/ruby/3.3.0/bin/fluent-debug +29 -0
  135. data/vendor/bundle/ruby/3.3.0/bin/fluent-debug.bat +2 -0
  136. data/vendor/bundle/ruby/3.3.0/bin/fluent-debug.lock +0 -0
  137. data/vendor/bundle/ruby/3.3.0/bin/fluent-gem +29 -0
  138. data/vendor/bundle/ruby/3.3.0/bin/fluent-gem.bat +2 -0
  139. data/vendor/bundle/ruby/3.3.0/bin/fluent-gem.lock +0 -0
  140. data/vendor/bundle/ruby/3.3.0/bin/fluent-plugin-config-format +29 -0
  141. data/vendor/bundle/ruby/3.3.0/bin/fluent-plugin-config-format.bat +2 -0
  142. data/vendor/bundle/ruby/3.3.0/bin/fluent-plugin-config-format.lock +0 -0
  143. data/vendor/bundle/ruby/3.3.0/bin/fluent-plugin-generate +29 -0
  144. data/vendor/bundle/ruby/3.3.0/bin/fluent-plugin-generate.bat +2 -0
  145. data/vendor/bundle/ruby/3.3.0/bin/fluent-plugin-generate.lock +0 -0
  146. data/vendor/bundle/ruby/3.3.0/bin/fluentd +29 -0
  147. data/vendor/bundle/ruby/3.3.0/bin/fluentd.bat +2 -0
  148. data/vendor/bundle/ruby/3.3.0/bin/fluentd.lock +0 -0
  149. data/vendor/bundle/ruby/3.3.0/bin/rake +29 -0
  150. data/vendor/bundle/ruby/3.3.0/bin/rake.bat +2 -0
  151. data/vendor/bundle/ruby/3.3.0/bin/rake.lock +0 -0
  152. data/vendor/bundle/ruby/3.3.0/cache/base64-0.2.0.gem +0 -0
  153. data/vendor/bundle/ruby/3.3.0/cache/certstore_c-0.1.7.gem +0 -0
  154. data/vendor/bundle/ruby/3.3.0/cache/concurrent-ruby-1.3.3.gem +0 -0
  155. data/vendor/bundle/ruby/3.3.0/cache/cool.io-1.8.1.gem +0 -0
  156. data/vendor/bundle/ruby/3.3.0/cache/csv-3.3.0.gem +0 -0
  157. data/vendor/bundle/ruby/3.3.0/cache/drb-2.2.1.gem +0 -0
  158. data/vendor/bundle/ruby/3.3.0/cache/ffi-1.17.0-x64-mingw-ucrt.gem +0 -0
  159. data/vendor/bundle/ruby/3.3.0/cache/ffi-win32-extensions-1.0.4.gem +0 -0
  160. data/vendor/bundle/ruby/3.3.0/cache/fluentd-1.17.0-x64-mingw-ucrt.gem +0 -0
  161. data/vendor/bundle/ruby/3.3.0/cache/http_parser.rb-0.8.0.gem +0 -0
  162. data/vendor/bundle/ruby/3.3.0/cache/json-2.7.2.gem +0 -0
  163. data/vendor/bundle/ruby/3.3.0/cache/minitar-0.9.gem +0 -0
  164. data/vendor/bundle/ruby/3.3.0/cache/msgpack-1.7.2.gem +0 -0
  165. data/vendor/bundle/ruby/3.3.0/cache/power_assert-2.0.3.gem +0 -0
  166. data/vendor/bundle/ruby/3.3.0/cache/rake-13.2.1.gem +0 -0
  167. data/vendor/bundle/ruby/3.3.0/cache/rusty_json_schema-0.15.0.gem +0 -0
  168. data/vendor/bundle/ruby/3.3.0/cache/serverengine-2.3.2.gem +0 -0
  169. data/vendor/bundle/ruby/3.3.0/cache/sigdump-0.2.5.gem +0 -0
  170. data/vendor/bundle/ruby/3.3.0/cache/strptime-0.2.5.gem +0 -0
  171. data/vendor/bundle/ruby/3.3.0/cache/test-unit-3.6.2.gem +0 -0
  172. data/vendor/bundle/ruby/3.3.0/cache/thermite-0.13.0.gem +0 -0
  173. data/vendor/bundle/ruby/3.3.0/cache/tomlrb-1.3.0.gem +0 -0
  174. data/vendor/bundle/ruby/3.3.0/cache/tzinfo-2.0.6.gem +0 -0
  175. data/vendor/bundle/ruby/3.3.0/cache/tzinfo-data-1.2024.1.gem +0 -0
  176. data/vendor/bundle/ruby/3.3.0/cache/webrick-1.8.1.gem +0 -0
  177. data/vendor/bundle/ruby/3.3.0/cache/win32-event-0.6.3.gem +0 -0
  178. data/vendor/bundle/ruby/3.3.0/cache/win32-ipc-0.7.0.gem +0 -0
  179. data/vendor/bundle/ruby/3.3.0/cache/win32-service-2.3.2.gem +0 -0
  180. data/vendor/bundle/ruby/3.3.0/cache/yajl-ruby-1.4.3.gem +0 -0
  181. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/certstore_c-0.1.7/gem.build_complete +0 -0
  182. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/certstore_c-0.1.7/gem_make.out +23 -0
  183. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/cool.io-1.8.1/gem.build_complete +0 -0
  184. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/cool.io-1.8.1/gem_make.out +23 -0
  185. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/http_parser.rb-0.8.0/gem.build_complete +0 -0
  186. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/http_parser.rb-0.8.0/gem_make.out +20 -0
  187. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/json-2.7.2/gem.build_complete +0 -0
  188. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/json-2.7.2/gem_make.out +16 -0
  189. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/msgpack-1.7.2/gem.build_complete +0 -0
  190. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/msgpack-1.7.2/gem_make.out +41 -0
  191. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/rusty_json_schema-0.15.0/gem_make.out +34 -0
  192. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/strptime-0.2.5/gem.build_complete +0 -0
  193. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/strptime-0.2.5/gem_make.out +24 -0
  194. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/yajl-ruby-1.4.3/gem.build_complete +0 -0
  195. data/vendor/bundle/ruby/3.3.0/extensions/x64-mingw-ucrt/3.3.0/yajl-ruby-1.4.3/gem_make.out +245 -0
  196. data/vendor/bundle/ruby/3.3.0/gems/base64-0.2.0/LICENSE.txt +22 -0
  197. data/vendor/bundle/ruby/3.3.0/gems/base64-0.2.0/README.md +48 -0
  198. data/vendor/bundle/ruby/3.3.0/gems/base64-0.2.0/lib/base64.rb +363 -0
  199. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/.clang-format +5 -0
  200. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/.gitignore +10 -0
  201. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/Gemfile +4 -0
  202. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/LICENSE.txt +202 -0
  203. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/README.md +39 -0
  204. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/Rakefile +38 -0
  205. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/appveyor.yml +33 -0
  206. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/bin/console +14 -0
  207. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/bin/setup +8 -0
  208. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/certstore_c.gemspec +45 -0
  209. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/example/manage_certstore.rb +13 -0
  210. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/example/open_tls_socket.rb +33 -0
  211. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/ext/certstore/Makefile +273 -0
  212. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/ext/certstore/certstore.c +22 -0
  213. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/ext/certstore/certstore.h +41 -0
  214. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/ext/certstore/certstore_util.c +32 -0
  215. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/ext/certstore/extconf.rb +20 -0
  216. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/ext/certstore/loader.c +527 -0
  217. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/lib/certstore/loader.rb +35 -0
  218. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/lib/certstore/openssl/loader.rb +77 -0
  219. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/lib/certstore/version.rb +19 -0
  220. data/vendor/bundle/ruby/3.3.0/gems/certstore_c-0.1.7/lib/certstore.rb +12 -0
  221. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/CHANGELOG.md +588 -0
  222. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/Gemfile +36 -0
  223. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/LICENSE.txt +21 -0
  224. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/README.md +407 -0
  225. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/Rakefile +339 -0
  226. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
  227. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
  228. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
  229. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
  230. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
  231. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +189 -0
  232. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +292 -0
  233. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
  234. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
  235. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
  236. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
  237. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  238. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
  239. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
  240. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
  241. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/agent.rb +588 -0
  242. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/array.rb +56 -0
  243. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/async.rb +449 -0
  244. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atom.rb +222 -0
  245. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb +127 -0
  246. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb +144 -0
  247. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb +167 -0
  248. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb +135 -0
  249. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb +100 -0
  250. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb +128 -0
  251. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/event.rb +109 -0
  252. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/fiber_local_var.rb +109 -0
  253. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb +43 -0
  254. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/locals.rb +189 -0
  255. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/lock_local_var.rb +28 -0
  256. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb +68 -0
  257. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb +81 -0
  258. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb +44 -0
  259. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb +131 -0
  260. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb +255 -0
  261. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
  262. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/semaphore.rb +163 -0
  263. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb +111 -0
  264. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic_reference/atomic_direct_update.rb +37 -0
  265. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb +67 -0
  266. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
  267. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/atomics.rb +10 -0
  268. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
  269. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb +111 -0
  270. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
  271. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb +160 -0
  272. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb +66 -0
  273. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb +148 -0
  274. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/map/synchronized_map_backend.rb +85 -0
  275. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/map/truffleruby_map_backend.rb +14 -0
  276. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
  277. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb +160 -0
  278. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/concern/deprecation.rb +34 -0
  279. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb +73 -0
  280. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/concern/logging.rb +116 -0
  281. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/concern/obligation.rb +220 -0
  282. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/concern/observable.rb +110 -0
  283. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/concurrent_ruby.jar +0 -0
  284. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/configuration.rb +105 -0
  285. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/constants.rb +8 -0
  286. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/dataflow.rb +81 -0
  287. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/delay.rb +199 -0
  288. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/errors.rb +74 -0
  289. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/exchanger.rb +353 -0
  290. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb +131 -0
  291. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb +62 -0
  292. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/executor_service.rb +185 -0
  293. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb +224 -0
  294. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb +66 -0
  295. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb +44 -0
  296. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +100 -0
  297. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb +30 -0
  298. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb +145 -0
  299. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb +82 -0
  300. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb +21 -0
  301. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb +373 -0
  302. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb +35 -0
  303. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb +34 -0
  304. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb +107 -0
  305. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb +28 -0
  306. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb +103 -0
  307. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb +57 -0
  308. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb +88 -0
  309. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executor/timer_set.rb +176 -0
  310. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/executors.rb +20 -0
  311. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/future.rb +141 -0
  312. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/hash.rb +52 -0
  313. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/immutable_struct.rb +101 -0
  314. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/ivar.rb +208 -0
  315. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/map.rb +350 -0
  316. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/maybe.rb +229 -0
  317. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/mutable_struct.rb +239 -0
  318. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/mvar.rb +242 -0
  319. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/options.rb +42 -0
  320. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/promise.rb +580 -0
  321. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/promises.rb +2178 -0
  322. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/re_include.rb +60 -0
  323. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/scheduled_task.rb +331 -0
  324. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/set.rb +64 -0
  325. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/settable_struct.rb +139 -0
  326. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb +102 -0
  327. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb +22 -0
  328. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb +171 -0
  329. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/condition.rb +62 -0
  330. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/full_memory_barrier.rb +29 -0
  331. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb +15 -0
  332. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/lock.rb +38 -0
  333. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb +75 -0
  334. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb +89 -0
  335. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/object.rb +151 -0
  336. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/safe_initialization.rb +36 -0
  337. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization/volatile.rb +101 -0
  338. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/synchronization.rb +13 -0
  339. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb +47 -0
  340. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util/adder.rb +74 -0
  341. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb +52 -0
  342. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
  343. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util/striped64.rb +246 -0
  344. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util/volatile.rb +75 -0
  345. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
  346. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/thread_safe/util.rb +16 -0
  347. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/timer_task.rb +361 -0
  348. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/tuple.rb +82 -0
  349. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/tvar.rb +222 -0
  350. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/utility/engine.rb +45 -0
  351. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb +19 -0
  352. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb +77 -0
  353. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/utility/native_integer.rb +54 -0
  354. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/utility/processor_counter.rb +190 -0
  355. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent/version.rb +3 -0
  356. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent-ruby.rb +5 -0
  357. data/vendor/bundle/ruby/3.3.0/gems/concurrent-ruby-1.3.3/lib/concurrent-ruby/concurrent.rb +134 -0
  358. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/.github/workflows/test.yaml +53 -0
  359. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/.gitignore +29 -0
  360. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/.rspec +3 -0
  361. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/.travis.yml +16 -0
  362. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/CHANGES.md +301 -0
  363. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/Gemfile +4 -0
  364. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/LICENSE +20 -0
  365. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/README.md +169 -0
  366. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/Rakefile +78 -0
  367. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/appveyor.yml +18 -0
  368. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/cool.io.gemspec +25 -0
  369. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/examples/callbacked_echo_server.rb +24 -0
  370. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/examples/dslified_echo_client.rb +34 -0
  371. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/examples/dslified_echo_server.rb +24 -0
  372. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/examples/echo_client.rb +38 -0
  373. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/examples/echo_server.rb +27 -0
  374. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/examples/google.rb +9 -0
  375. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/.gitignore +5 -0
  376. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/cool.io.h +70 -0
  377. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/cool.io_ext.c +25 -0
  378. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/ev_wrap.h +10 -0
  379. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/extconf.rb +75 -0
  380. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/iowatcher.c +198 -0
  381. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/libev.c +8 -0
  382. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/loop.c +253 -0
  383. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/stat_watcher.c +269 -0
  384. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/timer_watcher.c +219 -0
  385. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/utils.c +127 -0
  386. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/watcher.c +264 -0
  387. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/cool.io/watcher.h +71 -0
  388. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/iobuffer/Makefile +273 -0
  389. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/iobuffer/extconf.rb +10 -0
  390. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/iobuffer/iobuffer.c +777 -0
  391. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/Changes +513 -0
  392. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/LICENSE +37 -0
  393. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/README +58 -0
  394. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/README.embed +3 -0
  395. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev.c +5238 -0
  396. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev.h +854 -0
  397. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_epoll.c +285 -0
  398. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_kqueue.c +218 -0
  399. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_poll.c +151 -0
  400. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_port.c +189 -0
  401. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_select.c +364 -0
  402. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_vars.h +204 -0
  403. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_win32.c +162 -0
  404. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/ev_wrap.h +200 -0
  405. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/ext/libev/test_libev_win32.c +123 -0
  406. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/.gitignore +2 -0
  407. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/async_watcher.rb +43 -0
  408. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/custom_require.rb +9 -0
  409. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/dns_resolver.rb +228 -0
  410. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/dsl.rb +139 -0
  411. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/io.rb +194 -0
  412. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/iowatcher.rb +17 -0
  413. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/listener.rb +111 -0
  414. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/loop.rb +122 -0
  415. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/meta.rb +50 -0
  416. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/server.rb +75 -0
  417. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/socket.rb +233 -0
  418. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/timer_watcher.rb +17 -0
  419. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io/version.rb +7 -0
  420. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/cool.io.rb +34 -0
  421. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/lib/coolio.rb +2 -0
  422. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/libev_ruby_gil.diff +175 -0
  423. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/libev_win_select.diff +130 -0
  424. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/async_watcher_spec.rb +57 -0
  425. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/dns_spec.rb +58 -0
  426. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/iobuffer_spec.rb +147 -0
  427. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/spec_helper.rb +19 -0
  428. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/stat_watcher_spec.rb +81 -0
  429. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/tcp_server_spec.rb +225 -0
  430. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/tcp_socket_spec.rb +185 -0
  431. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/timer_watcher_spec.rb +59 -0
  432. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/udp_socket_spec.rb +58 -0
  433. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/unix_listener_spec.rb +25 -0
  434. data/vendor/bundle/ruby/3.3.0/gems/cool.io-1.8.1/spec/unix_server_spec.rb +27 -0
  435. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/LICENSE.txt +33 -0
  436. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/NEWS.md +907 -0
  437. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/README.md +55 -0
  438. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/arguments/io.rdoc +5 -0
  439. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/common/col_sep.rdoc +57 -0
  440. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/common/quote_char.rdoc +42 -0
  441. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/common/row_sep.rdoc +91 -0
  442. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/generating/force_quotes.rdoc +17 -0
  443. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/generating/quote_empty.rdoc +12 -0
  444. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/generating/write_converters.rdoc +25 -0
  445. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/generating/write_empty_value.rdoc +15 -0
  446. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/generating/write_headers.rdoc +29 -0
  447. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/generating/write_nil_value.rdoc +14 -0
  448. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/converters.rdoc +46 -0
  449. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/empty_value.rdoc +13 -0
  450. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/field_size_limit.rdoc +39 -0
  451. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/header_converters.rdoc +43 -0
  452. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/headers.rdoc +63 -0
  453. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/liberal_parsing.rdoc +38 -0
  454. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/nil_value.rdoc +12 -0
  455. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/return_headers.rdoc +22 -0
  456. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/skip_blanks.rdoc +31 -0
  457. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/skip_lines.rdoc +37 -0
  458. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/strip.rdoc +15 -0
  459. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/options/parsing/unconverted_fields.rdoc +27 -0
  460. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/recipes/filtering.rdoc +158 -0
  461. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/recipes/generating.rdoc +298 -0
  462. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/recipes/parsing.rdoc +545 -0
  463. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/doc/csv/recipes/recipes.rdoc +6 -0
  464. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/core_ext/array.rb +9 -0
  465. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/core_ext/string.rb +9 -0
  466. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/fields_converter.rb +89 -0
  467. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/input_record_separator.rb +18 -0
  468. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/parser.rb +1297 -0
  469. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/row.rb +757 -0
  470. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/table.rb +1055 -0
  471. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/version.rb +6 -0
  472. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/writer.rb +210 -0
  473. data/vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv.rb +2882 -0
  474. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/LICENSE.txt +22 -0
  475. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/drb.gemspec +41 -0
  476. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/acl.rb +239 -0
  477. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/drb.rb +1943 -0
  478. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/eq.rb +15 -0
  479. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/extserv.rb +44 -0
  480. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/extservm.rb +94 -0
  481. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/gw.rb +161 -0
  482. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb +35 -0
  483. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/observer.rb +26 -0
  484. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/ssl.rb +354 -0
  485. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/timeridconv.rb +97 -0
  486. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/unix.rb +118 -0
  487. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/version.rb +3 -0
  488. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/weakidconv.rb +59 -0
  489. data/vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb.rb +3 -0
  490. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/CHANGELOG.md +456 -0
  491. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/COPYING +49 -0
  492. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/Gemfile +21 -0
  493. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/LICENSE +24 -0
  494. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/LICENSE.SPECS +22 -0
  495. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/README.md +137 -0
  496. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/Rakefile +206 -0
  497. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/ffi.gemspec +42 -0
  498. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/abstract_memory.rb +44 -0
  499. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/autopointer.rb +180 -0
  500. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/buffer.rb +4 -0
  501. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/callback.rb +4 -0
  502. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/compat.rb +43 -0
  503. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/data_converter.rb +67 -0
  504. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/dynamic_library.rb +118 -0
  505. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/enum.rb +302 -0
  506. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/errno.rb +43 -0
  507. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/ffi.rb +50 -0
  508. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/function.rb +71 -0
  509. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/io.rb +62 -0
  510. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/library.rb +576 -0
  511. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/library_path.rb +109 -0
  512. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/managedstruct.rb +84 -0
  513. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/memorypointer.rb +1 -0
  514. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  515. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  516. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  517. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/aarch64-linux/types.conf +175 -0
  518. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  519. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  520. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  521. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  522. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/arm-linux/types.conf +132 -0
  523. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  524. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  525. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  526. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-darwin/types.conf +100 -0
  527. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  528. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  529. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-gnu/types.conf +107 -0
  530. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-linux/types.conf +103 -0
  531. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  532. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  533. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-solaris/types.conf +122 -0
  534. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/i386-windows/types.conf +52 -0
  535. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/ia64-linux/types.conf +104 -0
  536. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  537. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mips-linux/types.conf +102 -0
  538. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mips64-linux/types.conf +104 -0
  539. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  540. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  541. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  542. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  543. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  544. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  545. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  546. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  547. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  548. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  549. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  550. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  551. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  552. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/s390-linux/types.conf +102 -0
  553. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/s390x-linux/types.conf +102 -0
  554. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/sparc-linux/types.conf +102 -0
  555. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  556. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
  557. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  558. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  559. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  560. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  561. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  562. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  563. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  564. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  565. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  566. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  567. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  568. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  569. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  570. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  571. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  572. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/platform.rb +187 -0
  573. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/pointer.rb +167 -0
  574. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/struct.rb +317 -0
  575. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/struct_by_reference.rb +72 -0
  576. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/struct_layout.rb +96 -0
  577. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/struct_layout_builder.rb +227 -0
  578. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/tools/const_generator.rb +232 -0
  579. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/tools/generator.rb +105 -0
  580. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/tools/generator_task.rb +32 -0
  581. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/tools/struct_generator.rb +195 -0
  582. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/tools/types_generator.rb +137 -0
  583. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/types.rb +222 -0
  584. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/union.rb +43 -0
  585. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/variadic.rb +80 -0
  586. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi/version.rb +3 -0
  587. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/lib/ffi.rb +27 -0
  588. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/rakelib/ffi_gem_helper.rb +65 -0
  589. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/getlogin.rb +8 -0
  590. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/getpid.rb +8 -0
  591. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/gettimeofday.rb +18 -0
  592. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/hello.rb +8 -0
  593. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/hello_ractor.rb +11 -0
  594. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/inotify.rb +60 -0
  595. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/pty.rb +75 -0
  596. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/qsort.rb +20 -0
  597. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/samples/qsort_ractor.rb +28 -0
  598. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/abstract_memory.rbs +165 -0
  599. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/auto_pointer.rbs +27 -0
  600. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/buffer.rbs +18 -0
  601. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/data_converter.rbs +10 -0
  602. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/dynamic_library.rbs +9 -0
  603. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/enum.rbs +38 -0
  604. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/function.rbs +39 -0
  605. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/library.rbs +42 -0
  606. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/native_type.rbs +86 -0
  607. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/pointer.rbs +42 -0
  608. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/struct.rbs +76 -0
  609. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/struct_by_reference.rbs +11 -0
  610. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/struct_by_value.rbs +7 -0
  611. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/struct_layout.rbs +9 -0
  612. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/struct_layout_builder.rbs +5 -0
  613. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi/type.rbs +39 -0
  614. data/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-x64-mingw-ucrt/sig/ffi.rbs +26 -0
  615. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/CHANGELOG.md +31 -0
  616. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/CODE_OF_CONDUCT.md +1 -0
  617. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/Gemfile +22 -0
  618. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/LICENSE +201 -0
  619. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/MANIFEST +9 -0
  620. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/README +48 -0
  621. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/README.md +57 -0
  622. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/Rakefile +53 -0
  623. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/VERSION +1 -0
  624. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/ffi-win32-extensions.gemspec +19 -0
  625. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/lib/ffi/win32/extensions.rb +133 -0
  626. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/lib/ffi-win32-extensions.rb +1 -0
  627. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/test/test_ffi_extensions.rb +41 -0
  628. data/vendor/bundle/ruby/3.3.0/gems/ffi-win32-extensions-1.0.4/test/test_string_extensions.rb +20 -0
  629. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.deepsource.toml +13 -0
  630. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/DISCUSSION_TEMPLATE/q-a-japanese.yml +50 -0
  631. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/DISCUSSION_TEMPLATE/q-a.yml +47 -0
  632. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/ISSUE_TEMPLATE/bug_report.yml +71 -0
  633. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/ISSUE_TEMPLATE/config.yml +5 -0
  634. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/ISSUE_TEMPLATE/feature_request.yml +39 -0
  635. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/ISSUE_TEMPLATE.md +17 -0
  636. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  637. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/workflows/stale-actions.yml +24 -0
  638. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/workflows/test-ruby-head.yml +31 -0
  639. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.github/workflows/test.yml +32 -0
  640. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/.gitignore +30 -0
  641. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/ADOPTERS.md +5 -0
  642. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/AUTHORS +2 -0
  643. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/CHANGELOG.md +2786 -0
  644. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/CONTRIBUTING.md +45 -0
  645. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/GOVERNANCE.md +55 -0
  646. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/Gemfile +9 -0
  647. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/GithubWorkflow.md +78 -0
  648. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/LICENSE +202 -0
  649. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/MAINTAINERS.md +13 -0
  650. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/README.md +75 -0
  651. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/Rakefile +79 -0
  652. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/SECURITY.md +14 -0
  653. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-binlog-reader +7 -0
  654. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-ca-generate +6 -0
  655. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-cap-ctl +7 -0
  656. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-ctl +7 -0
  657. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-debug +5 -0
  658. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-plugin-config-format +5 -0
  659. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/bin/fluent-plugin-generate +5 -0
  660. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/code-of-conduct.md +3 -0
  661. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/docs/SECURITY_AUDIT.pdf +0 -0
  662. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/copy_roundrobin.conf +39 -0
  663. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/counter.conf +18 -0
  664. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/filter_stdout.conf +22 -0
  665. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_forward.conf +14 -0
  666. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_forward_client.conf +37 -0
  667. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_forward_shared_key.conf +15 -0
  668. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_forward_tls.conf +14 -0
  669. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_forward_users.conf +24 -0
  670. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_forward_workers.conf +21 -0
  671. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_http.conf +16 -0
  672. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_out_forward.conf +17 -0
  673. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_sample_blocks.conf +17 -0
  674. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_sample_with_compression.conf +23 -0
  675. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_syslog.conf +15 -0
  676. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_tail.conf +14 -0
  677. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_tcp.conf +13 -0
  678. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/in_udp.conf +13 -0
  679. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/logevents.conf +25 -0
  680. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/multi_filters.conf +61 -0
  681. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_copy.conf +20 -0
  682. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_exec_filter.conf +42 -0
  683. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_file.conf +13 -0
  684. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward.conf +35 -0
  685. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_buf_file.conf +23 -0
  686. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_client.conf +109 -0
  687. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_heartbeat_none.conf +16 -0
  688. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_sd.conf +17 -0
  689. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_shared_key.conf +36 -0
  690. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_tls.conf +18 -0
  691. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_forward_users.conf +65 -0
  692. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/out_null.conf +36 -0
  693. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/sd.yaml +8 -0
  694. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/secondary_file.conf +42 -0
  695. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/suppress_config_dump.conf +7 -0
  696. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/v0_12_filter.conf +78 -0
  697. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/v1_literal_example.conf +36 -0
  698. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/example/worker_section.conf +36 -0
  699. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/fluent.conf +139 -0
  700. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/fluentd.gemspec +62 -0
  701. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/agent.rb +168 -0
  702. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/capability.rb +87 -0
  703. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/clock.rb +66 -0
  704. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/binlog_reader.rb +244 -0
  705. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/bundler_injection.rb +45 -0
  706. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/ca_generate.rb +184 -0
  707. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/cap_ctl.rb +174 -0
  708. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/cat.rb +365 -0
  709. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/ctl.rb +180 -0
  710. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/debug.rb +103 -0
  711. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/fluentd.rb +374 -0
  712. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/plugin_config_formatter.rb +308 -0
  713. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/command/plugin_generator.rb +365 -0
  714. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/call_super_mixin.rb +76 -0
  715. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/detach_process_mixin.rb +33 -0
  716. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/exec_util.rb +129 -0
  717. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/file_util.rb +54 -0
  718. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/filter.rb +68 -0
  719. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/formatter.rb +111 -0
  720. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/formatter_utils.rb +85 -0
  721. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
  722. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
  723. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/input.rb +49 -0
  724. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/output.rb +721 -0
  725. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/output_chain.rb +60 -0
  726. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/parser.rb +310 -0
  727. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/parser_utils.rb +40 -0
  728. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/propagate_default.rb +62 -0
  729. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/record_filter_mixin.rb +34 -0
  730. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
  731. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/set_time_key_mixin.rb +69 -0
  732. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/socket_util.rb +165 -0
  733. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/string_util.rb +34 -0
  734. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/structured_format_mixin.rb +26 -0
  735. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/compat/type_converter.rb +90 -0
  736. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/basic_parser.rb +123 -0
  737. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/configure_proxy.rb +424 -0
  738. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/dsl.rb +152 -0
  739. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/element.rb +265 -0
  740. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/error.rb +44 -0
  741. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/literal_parser.rb +286 -0
  742. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/parser.rb +107 -0
  743. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/section.rb +272 -0
  744. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/types.rb +249 -0
  745. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/v1_parser.rb +192 -0
  746. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/yaml_parser/fluent_value.rb +47 -0
  747. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/yaml_parser/loader.rb +108 -0
  748. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/yaml_parser/parser.rb +166 -0
  749. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/yaml_parser/section_builder.rb +107 -0
  750. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config/yaml_parser.rb +56 -0
  751. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/config.rb +89 -0
  752. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/configurable.rb +201 -0
  753. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/base_socket.rb +44 -0
  754. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/client.rb +297 -0
  755. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/error.rb +86 -0
  756. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/mutex_hash.rb +163 -0
  757. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/server.rb +273 -0
  758. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/store.rb +205 -0
  759. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter/validator.rb +145 -0
  760. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/counter.rb +23 -0
  761. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/daemon.rb +13 -0
  762. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/daemonizer.rb +88 -0
  763. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/engine.rb +253 -0
  764. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/env.rb +40 -0
  765. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/error.rb +37 -0
  766. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/event.rb +330 -0
  767. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/event_router.rb +315 -0
  768. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/ext_monitor_require.rb +28 -0
  769. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/file_wrapper.rb +137 -0
  770. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/filter.rb +21 -0
  771. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/fluent_log_event_router.rb +139 -0
  772. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/formatter.rb +23 -0
  773. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/input.rb +21 -0
  774. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/label.rb +46 -0
  775. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/load.rb +34 -0
  776. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/log/console_adapter.rb +66 -0
  777. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/log.rb +752 -0
  778. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/match.rb +187 -0
  779. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/mixin.rb +31 -0
  780. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/msgpack_factory.rb +111 -0
  781. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/oj_options.rb +61 -0
  782. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/output.rb +29 -0
  783. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/output_chain.rb +23 -0
  784. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/parser.rb +23 -0
  785. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/bare_output.rb +104 -0
  786. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/base.rb +214 -0
  787. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buf_file.rb +242 -0
  788. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buf_file_single.rb +254 -0
  789. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buf_memory.rb +34 -0
  790. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buffer/chunk.rb +240 -0
  791. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
  792. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buffer/file_single_chunk.rb +310 -0
  793. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
  794. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/buffer.rb +948 -0
  795. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/compressable.rb +96 -0
  796. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/exec_util.rb +22 -0
  797. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/file_util.rb +22 -0
  798. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/filter.rb +127 -0
  799. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/filter_grep.rb +189 -0
  800. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/filter_parser.rb +148 -0
  801. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/filter_record_transformer.rb +324 -0
  802. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/filter_stdout.rb +53 -0
  803. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter.rb +75 -0
  804. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_csv.rb +78 -0
  805. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_hash.rb +35 -0
  806. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_json.rb +59 -0
  807. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_ltsv.rb +44 -0
  808. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_msgpack.rb +33 -0
  809. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_out_file.rb +53 -0
  810. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_single_value.rb +36 -0
  811. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_stdout.rb +76 -0
  812. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/formatter_tsv.rb +40 -0
  813. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_debug_agent.rb +71 -0
  814. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_dummy.rb +18 -0
  815. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_exec.rb +110 -0
  816. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_forward.rb +473 -0
  817. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_gc_stat.rb +72 -0
  818. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_http.rb +642 -0
  819. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_monitor_agent.rb +412 -0
  820. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_object_space.rb +93 -0
  821. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_sample.rb +141 -0
  822. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_syslog.rb +276 -0
  823. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_tail/group_watch.rb +204 -0
  824. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_tail/position_file.rb +269 -0
  825. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_tail.rb +1343 -0
  826. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_tcp.rb +226 -0
  827. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_udp.rb +92 -0
  828. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/in_unix.rb +195 -0
  829. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/input.rb +75 -0
  830. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/metrics.rb +119 -0
  831. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/metrics_local.rb +96 -0
  832. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/multi_output.rb +195 -0
  833. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_copy.rb +120 -0
  834. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_exec.rb +105 -0
  835. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_exec_filter.rb +319 -0
  836. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_file.rb +340 -0
  837. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/ack_handler.rb +176 -0
  838. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
  839. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/error.rb +28 -0
  840. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
  841. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
  842. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
  843. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward/socket_cache.rb +142 -0
  844. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_forward.rb +826 -0
  845. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_http.rb +387 -0
  846. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_null.rb +74 -0
  847. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_relabel.rb +32 -0
  848. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_roundrobin.rb +84 -0
  849. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_secondary_file.rb +148 -0
  850. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_stdout.rb +74 -0
  851. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/out_stream.rb +130 -0
  852. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/output.rb +1603 -0
  853. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/owned_by_mixin.rb +41 -0
  854. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser.rb +274 -0
  855. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_apache.rb +28 -0
  856. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_apache2.rb +88 -0
  857. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_apache_error.rb +26 -0
  858. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_csv.rb +114 -0
  859. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_json.rb +113 -0
  860. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_ltsv.rb +51 -0
  861. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_msgpack.rb +71 -0
  862. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_multiline.rb +152 -0
  863. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_nginx.rb +28 -0
  864. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_none.rb +36 -0
  865. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_regexp.rb +68 -0
  866. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_syslog.rb +496 -0
  867. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/parser_tsv.rb +42 -0
  868. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/sd_file.rb +156 -0
  869. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/sd_srv.rb +135 -0
  870. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/sd_static.rb +58 -0
  871. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/service_discovery.rb +65 -0
  872. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/socket_util.rb +22 -0
  873. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/storage.rb +84 -0
  874. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/storage_local.rb +162 -0
  875. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin/string_util.rb +22 -0
  876. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin.rb +206 -0
  877. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/cert_option.rb +191 -0
  878. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/child_process.rb +369 -0
  879. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
  880. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/counter.rb +51 -0
  881. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/event_emitter.rb +100 -0
  882. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/event_loop.rb +170 -0
  883. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/extract.rb +104 -0
  884. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/formatter.rb +147 -0
  885. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/app.rb +79 -0
  886. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
  887. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
  888. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
  889. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
  890. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/request.rb +42 -0
  891. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/router.rb +54 -0
  892. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/server.rb +94 -0
  893. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
  894. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/http_server.rb +135 -0
  895. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/inject.rb +154 -0
  896. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/metrics.rb +129 -0
  897. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/parser.rb +147 -0
  898. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/record_accessor.rb +207 -0
  899. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/retry_state.rb +219 -0
  900. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/server.rb +828 -0
  901. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
  902. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
  903. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/service_discovery.rb +125 -0
  904. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/socket.rb +288 -0
  905. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/socket_option.rb +98 -0
  906. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/storage.rb +349 -0
  907. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/thread.rb +180 -0
  908. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper/timer.rb +92 -0
  909. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_helper.rb +75 -0
  910. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/plugin_id.rb +93 -0
  911. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/process.rb +22 -0
  912. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/registry.rb +117 -0
  913. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/root_agent.rb +372 -0
  914. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/rpc.rb +95 -0
  915. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/static_config_analysis.rb +194 -0
  916. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/supervisor.rb +1076 -0
  917. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/system_config.rb +189 -0
  918. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/base.rb +78 -0
  919. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/base.rb +231 -0
  920. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/base_owned.rb +83 -0
  921. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/base_owner.rb +135 -0
  922. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/event_feeder.rb +98 -0
  923. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/filter.rb +61 -0
  924. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/formatter.rb +30 -0
  925. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/input.rb +31 -0
  926. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/multi_output.rb +53 -0
  927. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/output.rb +102 -0
  928. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/parser.rb +30 -0
  929. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/storage.rb +30 -0
  930. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/driver/test_event_router.rb +45 -0
  931. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/filter_test.rb +77 -0
  932. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/formatter_test.rb +65 -0
  933. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/helpers.rb +134 -0
  934. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/input_test.rb +174 -0
  935. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/log.rb +79 -0
  936. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/output_test.rb +156 -0
  937. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/parser_test.rb +70 -0
  938. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test/startup_shutdown.rb +44 -0
  939. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/test.rb +58 -0
  940. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/time.rb +512 -0
  941. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/timezone.rb +171 -0
  942. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/tls.rb +81 -0
  943. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/unique_id.rb +39 -0
  944. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/variable_store.rb +40 -0
  945. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/version.rb +21 -0
  946. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/win32api.rb +38 -0
  947. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/lib/fluent/winsvc.rb +100 -0
  948. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/Gemfile +3 -0
  949. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/README.md.erb +43 -0
  950. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/Rakefile +13 -0
  951. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
  952. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
  953. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
  954. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
  955. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
  956. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
  957. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
  958. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/helper.rb.erb +7 -0
  959. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
  960. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
  961. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
  962. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
  963. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
  964. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
  965. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/plugin_config_formatter/param.md-compact.erb +25 -0
  966. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/plugin_config_formatter/param.md-table.erb +10 -0
  967. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/plugin_config_formatter/param.md.erb +34 -0
  968. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/templates/plugin_config_formatter/section.md.erb +12 -0
  969. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_binlog_reader.rb +362 -0
  970. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_ca_generate.rb +70 -0
  971. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_cap_ctl.rb +100 -0
  972. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_cat.rb +128 -0
  973. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_ctl.rb +56 -0
  974. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_fluentd.rb +1291 -0
  975. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_plugin_config_formatter.rb +397 -0
  976. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/command/test_plugin_generator.rb +109 -0
  977. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/compat/test_calls_super.rb +166 -0
  978. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/compat/test_parser.rb +92 -0
  979. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/assertions.rb +42 -0
  980. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_config_parser.rb +551 -0
  981. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_configurable.rb +1784 -0
  982. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_configure_proxy.rb +604 -0
  983. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_dsl.rb +415 -0
  984. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_element.rb +518 -0
  985. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_literal_parser.rb +309 -0
  986. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_plugin_configuration.rb +56 -0
  987. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_section.rb +191 -0
  988. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_system_config.rb +195 -0
  989. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/config/test_types.rb +408 -0
  990. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/counter/test_client.rb +563 -0
  991. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/counter/test_error.rb +44 -0
  992. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/counter/test_mutex_hash.rb +179 -0
  993. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/counter/test_server.rb +589 -0
  994. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/counter/test_store.rb +258 -0
  995. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/counter/test_validator.rb +137 -0
  996. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/helper.rb +155 -0
  997. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/helpers/fuzzy_assert.rb +89 -0
  998. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/helpers/process_extenstion.rb +33 -0
  999. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/log/test_console_adapter.rb +117 -0
  1000. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/2010/01/20100102-030405.log +0 -0
  1001. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/2010/01/20100102-030406.log +0 -0
  1002. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/2010/01/20100102.log +0 -0
  1003. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log/bar +0 -0
  1004. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log/foo/bar.log +0 -0
  1005. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log/foo/bar2 +0 -0
  1006. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log/test.log +0 -0
  1007. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log_numeric/01.log +0 -0
  1008. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log_numeric/02.log +0 -0
  1009. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log_numeric/12.log +0 -0
  1010. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/log_numeric/14.log +0 -0
  1011. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/sd_file/config +11 -0
  1012. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/sd_file/config.json +17 -0
  1013. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/sd_file/config.yaml +11 -0
  1014. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/sd_file/config.yml +11 -0
  1015. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/data/sd_file/invalid_config.yml +7 -0
  1016. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/in_tail/test_fifo.rb +121 -0
  1017. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/in_tail/test_io_handler.rb +150 -0
  1018. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/in_tail/test_position_file.rb +346 -0
  1019. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/out_forward/test_ack_handler.rb +140 -0
  1020. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/out_forward/test_connection_manager.rb +145 -0
  1021. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
  1022. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/out_forward/test_load_balancer.rb +106 -0
  1023. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/out_forward/test_socket_cache.rb +174 -0
  1024. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_bare_output.rb +131 -0
  1025. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_base.rb +247 -0
  1026. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buf_file.rb +1314 -0
  1027. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buf_file_single.rb +898 -0
  1028. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buf_memory.rb +42 -0
  1029. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buffer.rb +1493 -0
  1030. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buffer_chunk.rb +209 -0
  1031. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buffer_file_chunk.rb +871 -0
  1032. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buffer_file_single_chunk.rb +611 -0
  1033. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_buffer_memory_chunk.rb +339 -0
  1034. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_compressable.rb +87 -0
  1035. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_file_util.rb +96 -0
  1036. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_filter.rb +368 -0
  1037. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_filter_grep.rb +697 -0
  1038. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_filter_parser.rb +731 -0
  1039. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_filter_record_transformer.rb +577 -0
  1040. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_filter_stdout.rb +207 -0
  1041. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_csv.rb +136 -0
  1042. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_hash.rb +38 -0
  1043. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_json.rb +61 -0
  1044. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_ltsv.rb +70 -0
  1045. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_msgpack.rb +28 -0
  1046. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_out_file.rb +116 -0
  1047. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_single_value.rb +44 -0
  1048. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_formatter_tsv.rb +76 -0
  1049. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_debug_agent.rb +49 -0
  1050. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_exec.rb +261 -0
  1051. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_forward.rb +1178 -0
  1052. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_gc_stat.rb +62 -0
  1053. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_http.rb +1124 -0
  1054. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_monitor_agent.rb +922 -0
  1055. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_object_space.rb +66 -0
  1056. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_sample.rb +190 -0
  1057. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_syslog.rb +505 -0
  1058. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_tail.rb +3429 -0
  1059. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_tcp.rb +328 -0
  1060. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_udp.rb +296 -0
  1061. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_in_unix.rb +181 -0
  1062. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_input.rb +137 -0
  1063. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_metadata.rb +89 -0
  1064. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_metrics.rb +294 -0
  1065. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_metrics_local.rb +96 -0
  1066. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_multi_output.rb +204 -0
  1067. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_copy.rb +308 -0
  1068. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_exec.rb +312 -0
  1069. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_exec_filter.rb +606 -0
  1070. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_file.rb +1038 -0
  1071. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_forward.rb +1349 -0
  1072. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_http.rb +557 -0
  1073. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_null.rb +105 -0
  1074. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_relabel.rb +28 -0
  1075. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_roundrobin.rb +146 -0
  1076. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_secondary_file.rb +458 -0
  1077. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_stdout.rb +205 -0
  1078. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_out_stream.rb +103 -0
  1079. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output.rb +1334 -0
  1080. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_buffered.rb +2024 -0
  1081. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_buffered_backup.rb +363 -0
  1082. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_buffered_compress.rb +179 -0
  1083. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_buffered_overflow.rb +250 -0
  1084. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_buffered_retries.rb +966 -0
  1085. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_buffered_secondary.rb +882 -0
  1086. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_output_as_standard.rb +374 -0
  1087. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_owned_by.rb +34 -0
  1088. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser.rb +399 -0
  1089. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_apache.rb +42 -0
  1090. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_apache2.rb +47 -0
  1091. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_apache_error.rb +45 -0
  1092. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_csv.rb +200 -0
  1093. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_json.rb +244 -0
  1094. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_labeled_tsv.rb +160 -0
  1095. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_msgpack.rb +127 -0
  1096. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_multiline.rb +111 -0
  1097. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_nginx.rb +88 -0
  1098. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_none.rb +52 -0
  1099. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_regexp.rb +284 -0
  1100. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_syslog.rb +650 -0
  1101. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_parser_tsv.rb +122 -0
  1102. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_sd_file.rb +228 -0
  1103. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_sd_srv.rb +230 -0
  1104. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_storage.rb +166 -0
  1105. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_storage_local.rb +335 -0
  1106. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin/test_string_util.rb +26 -0
  1107. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert-key.pem +27 -0
  1108. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
  1109. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
  1110. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert.pem +19 -0
  1111. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
  1112. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
  1113. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
  1114. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
  1115. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/empty.pem +0 -0
  1116. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/generate_cert.rb +125 -0
  1117. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
  1118. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
  1119. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
  1120. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
  1121. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
  1122. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
  1123. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
  1124. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
  1125. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
  1126. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
  1127. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
  1128. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
  1129. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/http_server/test_app.rb +65 -0
  1130. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/http_server/test_route.rb +32 -0
  1131. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/service_discovery/test_manager.rb +93 -0
  1132. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
  1133. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_cert_option.rb +25 -0
  1134. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_child_process.rb +862 -0
  1135. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_compat_parameters.rb +358 -0
  1136. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_event_emitter.rb +80 -0
  1137. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_event_loop.rb +52 -0
  1138. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_extract.rb +194 -0
  1139. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_formatter.rb +255 -0
  1140. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_http_server_helper.rb +372 -0
  1141. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_inject.rb +561 -0
  1142. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_metrics.rb +137 -0
  1143. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_parser.rb +264 -0
  1144. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_record_accessor.rb +238 -0
  1145. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_retry_state.rb +1006 -0
  1146. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_server.rb +1895 -0
  1147. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_service_discovery.rb +165 -0
  1148. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_socket.rb +146 -0
  1149. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_storage.rb +542 -0
  1150. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_thread.rb +164 -0
  1151. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/plugin_helper/test_timer.rb +130 -0
  1152. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/exec_script.rb +32 -0
  1153. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
  1154. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
  1155. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/fluent/plugin/formatter_known.rb +8 -0
  1156. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/fluent/plugin/out_test.rb +81 -0
  1157. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/fluent/plugin/out_test2.rb +80 -0
  1158. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/scripts/fluent/plugin/parser_known.rb +4 -0
  1159. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_capability.rb +74 -0
  1160. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_clock.rb +164 -0
  1161. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_config.rb +369 -0
  1162. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_configdsl.rb +148 -0
  1163. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_daemonizer.rb +91 -0
  1164. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_engine.rb +203 -0
  1165. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_event.rb +531 -0
  1166. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_event_router.rb +348 -0
  1167. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_event_time.rb +199 -0
  1168. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_file_wrapper.rb +53 -0
  1169. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_filter.rb +121 -0
  1170. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_fluent_log_event_router.rb +99 -0
  1171. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_formatter.rb +369 -0
  1172. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_input.rb +31 -0
  1173. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_log.rb +1076 -0
  1174. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_match.rb +148 -0
  1175. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_mixin.rb +351 -0
  1176. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_msgpack_factory.rb +50 -0
  1177. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_oj_options.rb +55 -0
  1178. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_output.rb +278 -0
  1179. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_plugin.rb +251 -0
  1180. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_plugin_classes.rb +370 -0
  1181. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_plugin_helper.rb +81 -0
  1182. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_plugin_id.rb +119 -0
  1183. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_process.rb +14 -0
  1184. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_root_agent.rb +951 -0
  1185. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_static_config_analysis.rb +177 -0
  1186. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_supervisor.rb +821 -0
  1187. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_test_drivers.rb +136 -0
  1188. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_time_formatter.rb +301 -0
  1189. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_time_parser.rb +362 -0
  1190. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_tls.rb +65 -0
  1191. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_unique_id.rb +47 -0
  1192. data/vendor/bundle/ruby/3.3.0/gems/fluentd-1.17.0-x64-mingw-ucrt/test/test_variable_store.rb +65 -0
  1193. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/.github/workflows/linux.yml +23 -0
  1194. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/.github/workflows/windows.yml +23 -0
  1195. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/.gitignore +12 -0
  1196. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/.gitmodules +6 -0
  1197. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/Gemfile +2 -0
  1198. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/LICENSE-MIT +20 -0
  1199. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/README.md +90 -0
  1200. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/Rakefile +8 -0
  1201. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/bench/standalone.rb +23 -0
  1202. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/bench/thin.rb +58 -0
  1203. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/.gitignore +1 -0
  1204. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/RubyHttpParserService.java +18 -0
  1205. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/ext_help.h +18 -0
  1206. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/extconf.rb +24 -0
  1207. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/org/ruby_http_parser/RubyHttpParser.java +502 -0
  1208. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/ruby_http_parser.c +561 -0
  1209. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/.gitkeep +0 -0
  1210. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/AUTHORS +68 -0
  1211. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/LICENSE-MIT +19 -0
  1212. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/README.md +246 -0
  1213. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/bench.c +128 -0
  1214. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/contrib/parsertrace.c +157 -0
  1215. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/contrib/url_parser.c +47 -0
  1216. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/http_parser.c +2440 -0
  1217. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/http_parser.gyp +111 -0
  1218. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/http_parser.h +433 -0
  1219. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser/test.c +4456 -0
  1220. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/AUTHORS +32 -0
  1221. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/LICENSE-MIT +48 -0
  1222. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/README.md +183 -0
  1223. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/TODO +28 -0
  1224. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/build.xml +74 -0
  1225. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/http_parser.c +2175 -0
  1226. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/http_parser.gyp +79 -0
  1227. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/http_parser.h +304 -0
  1228. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/Http-parser.java.iml +22 -0
  1229. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/FieldData.java +41 -0
  1230. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPCallback.java +8 -0
  1231. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPDataCallback.java +34 -0
  1232. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPErrorCallback.java +12 -0
  1233. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPException.java +9 -0
  1234. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPMethod.java +107 -0
  1235. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPParser.java +36 -0
  1236. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/HTTPParserUrl.java +76 -0
  1237. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/ParserSettings.java +256 -0
  1238. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/ParserType.java +13 -0
  1239. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/Util.java +111 -0
  1240. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/lolevel/HTTPCallback.java +5 -0
  1241. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/lolevel/HTTPDataCallback.java +25 -0
  1242. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/lolevel/HTTPErrorCallback.java +7 -0
  1243. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/lolevel/HTTPParser.java +2161 -0
  1244. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/impl/http_parser/lolevel/ParserSettings.java +83 -0
  1245. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Message.java +374 -0
  1246. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/ParseUrl.java +51 -0
  1247. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Requests.java +69 -0
  1248. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Responses.java +52 -0
  1249. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Test.java +16 -0
  1250. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/TestHeaderOverflowError.java +48 -0
  1251. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/TestLoaderNG.java +212 -0
  1252. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/TestNoOverflowLongBody.java +62 -0
  1253. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/UnitTest.java +117 -0
  1254. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Upgrade.java +27 -0
  1255. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Url.java +127 -0
  1256. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/Util.java +236 -0
  1257. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/src/test/http_parser/lolevel/WrongContentLength.java +59 -0
  1258. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/test.c +3425 -0
  1259. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/tests.dumped +845 -0
  1260. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/tests.utf8 +17 -0
  1261. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/tools/byte_constants.rb +6 -0
  1262. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/tools/const_char.rb +13 -0
  1263. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/tools/lowcase.rb +15 -0
  1264. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser/vendor/http-parser-java/tools/parse_tests.rb +33 -0
  1265. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/http_parser.rb.gemspec +32 -0
  1266. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/lib/http/parser.rb +1 -0
  1267. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/lib/http_parser.rb +21 -0
  1268. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/spec/parser_spec.rb +428 -0
  1269. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/spec/spec_helper.rb +1 -0
  1270. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/spec/support/requests.json +612 -0
  1271. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/spec/support/responses.json +395 -0
  1272. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/tasks/compile.rake +42 -0
  1273. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/tasks/fixtures.rake +71 -0
  1274. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/tasks/spec.rake +5 -0
  1275. data/vendor/bundle/ruby/3.3.0/gems/http_parser.rb-0.8.0/tasks/submodules.rake +7 -0
  1276. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/CHANGES.md +503 -0
  1277. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/LICENSE +56 -0
  1278. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/README.md +416 -0
  1279. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/Makefile +205 -0
  1280. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/fbuffer/fbuffer.h +187 -0
  1281. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/generator/Makefile +274 -0
  1282. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/generator/depend +1 -0
  1283. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/generator/extconf.rb +4 -0
  1284. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/generator/generator.c +1703 -0
  1285. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/generator/generator.h +177 -0
  1286. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/parser/Makefile +274 -0
  1287. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/parser/depend +1 -0
  1288. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/parser/extconf.rb +32 -0
  1289. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/parser/parser.c +2211 -0
  1290. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/parser/parser.h +96 -0
  1291. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/ext/parser/parser.rl +971 -0
  1292. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/ext/json/extconf.rb +3 -0
  1293. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/json.gemspec +68 -0
  1294. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/bigdecimal.rb +58 -0
  1295. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/complex.rb +51 -0
  1296. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/core.rb +12 -0
  1297. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/date.rb +54 -0
  1298. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/date_time.rb +67 -0
  1299. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/exception.rb +49 -0
  1300. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/ostruct.rb +54 -0
  1301. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/range.rb +54 -0
  1302. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/rational.rb +49 -0
  1303. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/regexp.rb +48 -0
  1304. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/set.rb +48 -0
  1305. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/struct.rb +52 -0
  1306. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/symbol.rb +48 -0
  1307. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/add/time.rb +59 -0
  1308. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/common.rb +698 -0
  1309. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/ext.rb +15 -0
  1310. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/generic_object.rb +75 -0
  1311. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/pure/generator.rb +513 -0
  1312. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/pure/parser.rb +337 -0
  1313. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/pure.rb +15 -0
  1314. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json/version.rb +9 -0
  1315. data/vendor/bundle/ruby/3.3.0/gems/json-2.7.2/lib/json.rb +592 -0
  1316. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/Code-of-Conduct.md +74 -0
  1317. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/Contributing.md +91 -0
  1318. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/History.md +170 -0
  1319. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/Licence.md +15 -0
  1320. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/Manifest.txt +24 -0
  1321. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/README.rdoc +97 -0
  1322. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/Rakefile +52 -0
  1323. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/docs/bsdl.txt +19 -0
  1324. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/docs/ruby.txt +56 -0
  1325. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive/tar/minitar/input.rb +243 -0
  1326. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive/tar/minitar/output.rb +79 -0
  1327. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive/tar/minitar/posix_header.rb +276 -0
  1328. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive/tar/minitar/reader.rb +272 -0
  1329. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive/tar/minitar/writer.rb +317 -0
  1330. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive/tar/minitar.rb +310 -0
  1331. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/archive-tar-minitar.rb +3 -0
  1332. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/lib/minitar.rb +12 -0
  1333. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/minitest_helper.rb +11 -0
  1334. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/support/tar_test_helpers.rb +131 -0
  1335. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/test_tar_header.rb +113 -0
  1336. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/test_tar_input.rb +227 -0
  1337. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/test_tar_output.rb +54 -0
  1338. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/test_tar_reader.rb +174 -0
  1339. data/vendor/bundle/ruby/3.3.0/gems/minitar-0.9/test/test_tar_writer.rb +228 -0
  1340. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ChangeLog +351 -0
  1341. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/LICENSE +177 -0
  1342. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/README.md +293 -0
  1343. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Buffer.java +233 -0
  1344. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Decoder.java +307 -0
  1345. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Encoder.java +456 -0
  1346. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/ExtensionRegistry.java +167 -0
  1347. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/ExtensionValue.java +128 -0
  1348. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Factory.java +130 -0
  1349. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/MessagePackLibrary.java +45 -0
  1350. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Packer.java +266 -0
  1351. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Types.java +37 -0
  1352. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/java/org/msgpack/jruby/Unpacker.java +336 -0
  1353. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/Makefile +273 -0
  1354. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/buffer.c +668 -0
  1355. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/buffer.h +500 -0
  1356. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/buffer_class.c +616 -0
  1357. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/buffer_class.h +33 -0
  1358. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/compat.h +26 -0
  1359. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/extconf.rb +51 -0
  1360. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/extension_value_class.c +34 -0
  1361. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/extension_value_class.h +31 -0
  1362. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/factory_class.c +276 -0
  1363. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/factory_class.h +33 -0
  1364. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/packer.c +199 -0
  1365. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/packer.h +506 -0
  1366. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/packer_class.c +442 -0
  1367. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/packer_class.h +43 -0
  1368. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/packer_ext_registry.c +74 -0
  1369. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/packer_ext_registry.h +140 -0
  1370. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/rbinit.c +35 -0
  1371. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/rmem.c +93 -0
  1372. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/rmem.h +109 -0
  1373. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/sysdep.h +118 -0
  1374. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/sysdep_endian.h +50 -0
  1375. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/sysdep_types.h +46 -0
  1376. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/unpacker.c +880 -0
  1377. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/unpacker.h +142 -0
  1378. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/unpacker_class.c +437 -0
  1379. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/unpacker_class.h +43 -0
  1380. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/unpacker_ext_registry.c +74 -0
  1381. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/ext/msgpack/unpacker_ext_registry.h +62 -0
  1382. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/bigint.rb +69 -0
  1383. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/buffer.rb +9 -0
  1384. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/core_ext.rb +139 -0
  1385. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/factory.rb +211 -0
  1386. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/packer.rb +37 -0
  1387. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/symbol.rb +26 -0
  1388. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/time.rb +29 -0
  1389. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/timestamp.rb +76 -0
  1390. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/unpacker.rb +41 -0
  1391. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack/version.rb +6 -0
  1392. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/lib/msgpack.rb +48 -0
  1393. data/vendor/bundle/ruby/3.3.0/gems/msgpack-1.7.2/msgpack.gemspec +34 -0
  1394. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/.github/dependabot.yml +6 -0
  1395. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/.github/workflows/ci.yml +32 -0
  1396. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/.gitignore +9 -0
  1397. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/BSDL +22 -0
  1398. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/COPYING +57 -0
  1399. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/Gemfile +9 -0
  1400. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/LEGAL +4 -0
  1401. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/README.md +98 -0
  1402. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/Rakefile +59 -0
  1403. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/colorize.rb +7 -0
  1404. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/configuration.rb +46 -0
  1405. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/context.rb +233 -0
  1406. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/enable_tracepoint_events.rb +60 -0
  1407. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/inspector.rb +66 -0
  1408. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/parser.rb +251 -0
  1409. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert/version.rb +3 -0
  1410. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/lib/power_assert.rb +91 -0
  1411. data/vendor/bundle/ruby/3.3.0/gems/power_assert-2.0.3/power_assert.gemspec +31 -0
  1412. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/History.rdoc +2403 -0
  1413. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/MIT-LICENSE +21 -0
  1414. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/README.rdoc +155 -0
  1415. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/command_line_usage.rdoc +158 -0
  1416. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/example/Rakefile1 +38 -0
  1417. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/example/Rakefile2 +35 -0
  1418. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/example/a.c +6 -0
  1419. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/example/b.c +6 -0
  1420. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/example/main.c +11 -0
  1421. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/glossary.rdoc +42 -0
  1422. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/jamis.rb +592 -0
  1423. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/proto_rake.rdoc +127 -0
  1424. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/rake.1 +156 -0
  1425. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/rakefile.rdoc +622 -0
  1426. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/doc/rational.rdoc +151 -0
  1427. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/exe/rake +27 -0
  1428. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/application.rb +861 -0
  1429. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/backtrace.rb +25 -0
  1430. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/clean.rb +78 -0
  1431. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/cloneable.rb +17 -0
  1432. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/cpu_counter.rb +107 -0
  1433. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/default_loader.rb +15 -0
  1434. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/dsl_definition.rb +196 -0
  1435. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/early_time.rb +22 -0
  1436. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/ext/core.rb +26 -0
  1437. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/ext/string.rb +176 -0
  1438. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/file_creation_task.rb +25 -0
  1439. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/file_list.rb +435 -0
  1440. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/file_task.rb +58 -0
  1441. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/file_utils.rb +132 -0
  1442. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/file_utils_ext.rb +134 -0
  1443. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/invocation_chain.rb +57 -0
  1444. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/invocation_exception_mixin.rb +17 -0
  1445. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/late_time.rb +18 -0
  1446. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/linked_list.rb +112 -0
  1447. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/loaders/makefile.rb +54 -0
  1448. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/multi_task.rb +14 -0
  1449. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/name_space.rb +38 -0
  1450. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/packagetask.rb +222 -0
  1451. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/phony.rb +16 -0
  1452. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/private_reader.rb +21 -0
  1453. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/promise.rb +100 -0
  1454. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/pseudo_status.rb +30 -0
  1455. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/rake_module.rb +67 -0
  1456. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/rake_test_loader.rb +27 -0
  1457. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1458. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/scope.rb +43 -0
  1459. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/task.rb +434 -0
  1460. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/task_argument_error.rb +8 -0
  1461. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/task_arguments.rb +109 -0
  1462. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/task_manager.rb +331 -0
  1463. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/tasklib.rb +12 -0
  1464. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/testtask.rb +189 -0
  1465. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/thread_history_display.rb +49 -0
  1466. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/thread_pool.rb +163 -0
  1467. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/trace_output.rb +23 -0
  1468. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/version.rb +10 -0
  1469. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake/win32.rb +51 -0
  1470. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/lib/rake.rb +70 -0
  1471. data/vendor/bundle/ruby/3.3.0/gems/rake-13.2.1/rake.gemspec +101 -0
  1472. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/Cargo.toml +14 -0
  1473. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/README.md +76 -0
  1474. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext/Rakefile +51 -0
  1475. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext/json_schema.so.x64-mingw32.default +0 -0
  1476. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext/json_schema.so.x86_64-darwin.default +0 -0
  1477. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/ext/json_schema.so.x86_64-linux.default +0 -0
  1478. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib/rusty_json_schema/binding.rb +22 -0
  1479. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib/rusty_json_schema/nodes_array.rb +26 -0
  1480. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib/rusty_json_schema/validator.rb +47 -0
  1481. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib/rusty_json_schema/version.rb +7 -0
  1482. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib/rusty_json_schema.rb +51 -0
  1483. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/lib/tasks/thermite_dir_patch.rb +13 -0
  1484. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/rusty_json_schema.gemspec +46 -0
  1485. data/vendor/bundle/ruby/3.3.0/gems/rusty_json_schema-0.15.0/src/lib.rs +267 -0
  1486. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/.github/workflows/linux.yml +31 -0
  1487. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/.github/workflows/windows.yml +42 -0
  1488. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/.gitignore +5 -0
  1489. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/.rspec +2 -0
  1490. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/Changelog +208 -0
  1491. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/Gemfile +2 -0
  1492. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/LICENSE +202 -0
  1493. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/NOTICE +3 -0
  1494. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/README.md +517 -0
  1495. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/Rakefile +10 -0
  1496. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/examples/server.rb +138 -0
  1497. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/examples/spawn_worker_script.rb +38 -0
  1498. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/blocking_flag.rb +77 -0
  1499. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/command_sender.rb +89 -0
  1500. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/config_loader.rb +82 -0
  1501. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/daemon.rb +232 -0
  1502. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/daemon_logger.rb +172 -0
  1503. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/embedded_server.rb +67 -0
  1504. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/multi_process_server.rb +173 -0
  1505. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/multi_spawn_server.rb +88 -0
  1506. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/multi_thread_server.rb +83 -0
  1507. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/multi_worker_server.rb +173 -0
  1508. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/privilege.rb +57 -0
  1509. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/process_manager.rb +534 -0
  1510. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/server.rb +183 -0
  1511. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/signal_thread.rb +116 -0
  1512. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/signals.rb +31 -0
  1513. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/socket_manager.rb +259 -0
  1514. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/socket_manager_unix.rb +131 -0
  1515. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/socket_manager_win.rb +158 -0
  1516. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/supervisor.rb +317 -0
  1517. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/utils.rb +62 -0
  1518. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/version.rb +3 -0
  1519. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/winsock.rb +133 -0
  1520. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine/worker.rb +84 -0
  1521. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/lib/serverengine.rb +61 -0
  1522. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/serverengine.gemspec +32 -0
  1523. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/blocking_flag_spec.rb +71 -0
  1524. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/daemon_logger_spec.rb +200 -0
  1525. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/daemon_spec.rb +184 -0
  1526. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/multi_process_server_spec.rb +259 -0
  1527. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/multi_spawn_server_spec.rb +225 -0
  1528. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/server_worker_context.rb +278 -0
  1529. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/signal_thread_spec.rb +94 -0
  1530. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/socket_manager_spec.rb +282 -0
  1531. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/spec_helper.rb +21 -0
  1532. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/supervisor_spec.rb +237 -0
  1533. data/vendor/bundle/ruby/3.3.0/gems/serverengine-2.3.2/spec/winsock_spec.rb +17 -0
  1534. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/.gitignore +2 -0
  1535. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/ChangeLog +36 -0
  1536. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/Gemfile +3 -0
  1537. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/LICENSE +202 -0
  1538. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/README.md +134 -0
  1539. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/Rakefile +5 -0
  1540. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/lib/sigdump/setup.rb +4 -0
  1541. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/lib/sigdump.rb +150 -0
  1542. data/vendor/bundle/ruby/3.3.0/gems/sigdump-0.2.5/sigdump.gemspec +21 -0
  1543. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/.clang-format +67 -0
  1544. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/.gitignore +15 -0
  1545. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/.rspec +2 -0
  1546. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/.travis.yml +24 -0
  1547. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/Gemfile +4 -0
  1548. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/LICENSE.txt +26 -0
  1549. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/README.md +54 -0
  1550. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/Rakefile +36 -0
  1551. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/appveyor.yml +18 -0
  1552. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/bin/console +14 -0
  1553. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/bin/setup +7 -0
  1554. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/ext/strptime/Makefile +273 -0
  1555. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/ext/strptime/extconf.rb +7 -0
  1556. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/ext/strptime/ruby_time.c +694 -0
  1557. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/ext/strptime/strftime.c +510 -0
  1558. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/ext/strptime/strptime.c +742 -0
  1559. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/ext/strptime/strptime.h +29 -0
  1560. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/lib/strptime/version.rb +3 -0
  1561. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/lib/strptime.rb +10 -0
  1562. data/vendor/bundle/ruby/3.3.0/gems/strptime-0.2.5/strptime.gemspec +30 -0
  1563. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/BSDL +24 -0
  1564. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/COPYING +64 -0
  1565. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/PSFL +271 -0
  1566. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/README.md +108 -0
  1567. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/Rakefile +68 -0
  1568. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/doc/text/getting-started.md +246 -0
  1569. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/doc/text/how-to.md +90 -0
  1570. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/doc/text/news.md +1782 -0
  1571. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/assertion-failed-error.rb +60 -0
  1572. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/assertions.rb +2541 -0
  1573. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/attribute-matcher.rb +26 -0
  1574. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/attribute.rb +228 -0
  1575. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/auto-runner-loader.rb +17 -0
  1576. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/autorunner.rb +606 -0
  1577. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/code-snippet-fetcher.rb +58 -0
  1578. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/collector/descendant.rb +20 -0
  1579. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/collector/dir.rb +110 -0
  1580. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/collector/load.rb +201 -0
  1581. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/collector/objectspace.rb +35 -0
  1582. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/collector/xml.rb +249 -0
  1583. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/collector.rb +104 -0
  1584. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/color-scheme.rb +225 -0
  1585. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/color.rb +134 -0
  1586. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/data-sets.rb +127 -0
  1587. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/data.rb +371 -0
  1588. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/diff.rb +745 -0
  1589. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/error.rb +158 -0
  1590. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/exception-handler.rb +82 -0
  1591. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/failure.rb +169 -0
  1592. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/fault-location-detector.rb +100 -0
  1593. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/fixture.rb +304 -0
  1594. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/notification.rb +138 -0
  1595. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/omission.rb +198 -0
  1596. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/pending.rb +155 -0
  1597. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/priority.rb +194 -0
  1598. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/runner/console.rb +78 -0
  1599. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/runner/emacs.rb +8 -0
  1600. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/runner/xml.rb +15 -0
  1601. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/test-suite-creator.rb +103 -0
  1602. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/testcase.rb +938 -0
  1603. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/testresult.rb +132 -0
  1604. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/testsuite.rb +175 -0
  1605. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/console/outputlevel.rb +15 -0
  1606. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/console/testrunner.rb +804 -0
  1607. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  1608. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/testrunner.rb +53 -0
  1609. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/testrunnermediator.rb +114 -0
  1610. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  1611. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/ui/xml/testrunner.rb +224 -0
  1612. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/util/backtracefilter.rb +59 -0
  1613. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/util/memory-usage.rb +47 -0
  1614. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/util/method-owner-finder.rb +28 -0
  1615. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/util/observable.rb +90 -0
  1616. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/util/output.rb +32 -0
  1617. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/util/procwrapper.rb +48 -0
  1618. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/version.rb +5 -0
  1619. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit/warning.rb +3 -0
  1620. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test/unit.rb +521 -0
  1621. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/lib/test-unit.rb +19 -0
  1622. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample/adder.rb +13 -0
  1623. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample/subtracter.rb +12 -0
  1624. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample/test_adder.rb +20 -0
  1625. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample/test_subtracter.rb +20 -0
  1626. data/vendor/bundle/ruby/3.3.0/gems/test-unit-3.6.2/sample/test_user.rb +23 -0
  1627. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/.appveyor.yml +27 -0
  1628. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/.gitignore +5 -0
  1629. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/.rubocop.yml +33 -0
  1630. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/.travis.yml +24 -0
  1631. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/.yardopts +2 -0
  1632. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/CONTRIBUTING.md +67 -0
  1633. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/Gemfile +10 -0
  1634. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/LICENSE +9 -0
  1635. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/NEWS.md +173 -0
  1636. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/README.md +134 -0
  1637. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/Rakefile +32 -0
  1638. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/ci/after_success.py +54 -0
  1639. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/cargo.rb +125 -0
  1640. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/config.rb +290 -0
  1641. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/custom_binary.rb +66 -0
  1642. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/fiddle.rb +45 -0
  1643. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/github_release_binary.rb +122 -0
  1644. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/package.rb +95 -0
  1645. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/tasks.rb +157 -0
  1646. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/lib/thermite/util.rb +59 -0
  1647. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/fixtures/config/Cargo.toml +5 -0
  1648. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/fixtures/github/releases.atom +30 -0
  1649. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/lib/thermite/cargo_test.rb +95 -0
  1650. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/lib/thermite/config_test.rb +232 -0
  1651. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/lib/thermite/custom_binary_test.rb +59 -0
  1652. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/lib/thermite/github_release_binary_test.rb +160 -0
  1653. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/lib/thermite/package_test.rb +119 -0
  1654. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/lib/thermite/util_test.rb +55 -0
  1655. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/test/test_helper.rb +56 -0
  1656. data/vendor/bundle/ruby/3.3.0/gems/thermite-0.13.0/thermite.gemspec +28 -0
  1657. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/LICENSE.txt +21 -0
  1658. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/generated_parser.rb +570 -0
  1659. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/handler.rb +73 -0
  1660. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/parser.rb +19 -0
  1661. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/parser.y +106 -0
  1662. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/scanner.rb +58 -0
  1663. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/string_utils.rb +33 -0
  1664. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb/version.rb +3 -0
  1665. data/vendor/bundle/ruby/3.3.0/gems/tomlrb-1.3.0/lib/tomlrb.rb +44 -0
  1666. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/.yardopts +9 -0
  1667. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/CHANGES.md +1026 -0
  1668. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/LICENSE +19 -0
  1669. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/README.md +406 -0
  1670. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/annual_rules.rb +71 -0
  1671. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/country.rb +208 -0
  1672. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/country_timezone.rb +93 -0
  1673. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_source.rb +446 -0
  1674. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/constant_offset_data_timezone_info.rb +56 -0
  1675. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/country_info.rb +42 -0
  1676. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/data_timezone_info.rb +91 -0
  1677. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/linked_timezone_info.rb +33 -0
  1678. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/posix_time_zone_parser.rb +177 -0
  1679. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/ruby_data_source.rb +141 -0
  1680. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/timezone_info.rb +47 -0
  1681. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/transitions_data_timezone_info.rb +214 -0
  1682. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/zoneinfo_data_source.rb +592 -0
  1683. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources/zoneinfo_reader.rb +482 -0
  1684. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_sources.rb +8 -0
  1685. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/data_timezone.rb +44 -0
  1686. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/datetime_with_offset.rb +153 -0
  1687. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format1/country_definer.rb +17 -0
  1688. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format1/country_index_definition.rb +64 -0
  1689. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format1/timezone_definer.rb +64 -0
  1690. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format1/timezone_definition.rb +39 -0
  1691. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format1/timezone_index_definition.rb +77 -0
  1692. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format1.rb +10 -0
  1693. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/country_definer.rb +68 -0
  1694. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/country_index_definer.rb +68 -0
  1695. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/country_index_definition.rb +46 -0
  1696. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/timezone_definer.rb +94 -0
  1697. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/timezone_definition.rb +73 -0
  1698. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/timezone_index_definer.rb +45 -0
  1699. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2/timezone_index_definition.rb +55 -0
  1700. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/format2.rb +10 -0
  1701. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/info_timezone.rb +35 -0
  1702. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/linked_timezone.rb +44 -0
  1703. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/offset_timezone_period.rb +42 -0
  1704. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/ruby_core_support.rb +38 -0
  1705. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/string_deduper.rb +118 -0
  1706. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/time_with_offset.rb +154 -0
  1707. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timestamp.rb +552 -0
  1708. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timestamp_with_offset.rb +85 -0
  1709. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone.rb +1160 -0
  1710. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone_offset.rb +111 -0
  1711. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone_period.rb +179 -0
  1712. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone_proxy.rb +96 -0
  1713. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/timezone_transition.rb +98 -0
  1714. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/transition_rule.rb +455 -0
  1715. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/transitions_timezone_period.rb +63 -0
  1716. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/version.rb +7 -0
  1717. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo/with_offset.rb +61 -0
  1718. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-2.0.6/lib/tzinfo.rb +81 -0
  1719. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/.yardopts +8 -0
  1720. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/CONTRIBUTING.md +7 -0
  1721. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/LICENSE +19 -0
  1722. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/README.md +42 -0
  1723. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Abidjan.rb +23 -0
  1724. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Accra.rb +18 -0
  1725. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Addis_Ababa.rb +18 -0
  1726. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Algiers.rb +60 -0
  1727. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Asmara.rb +18 -0
  1728. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Asmera.rb +18 -0
  1729. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Bamako.rb +18 -0
  1730. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Bangui.rb +18 -0
  1731. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Banjul.rb +18 -0
  1732. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Bissau.rb +25 -0
  1733. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Blantyre.rb +18 -0
  1734. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Brazzaville.rb +18 -0
  1735. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Bujumbura.rb +18 -0
  1736. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Cairo.rb +254 -0
  1737. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Casablanca.rb +196 -0
  1738. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Ceuta.rb +225 -0
  1739. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Conakry.rb +18 -0
  1740. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Dakar.rb +18 -0
  1741. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Dar_es_Salaam.rb +18 -0
  1742. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Djibouti.rb +18 -0
  1743. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Douala.rb +18 -0
  1744. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/El_Aaiun.rb +186 -0
  1745. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Freetown.rb +18 -0
  1746. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Gaborone.rb +18 -0
  1747. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Harare.rb +18 -0
  1748. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Johannesburg.rb +30 -0
  1749. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Juba.rb +59 -0
  1750. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Kampala.rb +18 -0
  1751. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Khartoum.rb +59 -0
  1752. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Kigali.rb +18 -0
  1753. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Kinshasa.rb +18 -0
  1754. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Lagos.rb +28 -0
  1755. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Libreville.rb +18 -0
  1756. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Lome.rb +18 -0
  1757. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Luanda.rb +18 -0
  1758. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Lubumbashi.rb +18 -0
  1759. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Lusaka.rb +18 -0
  1760. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Malabo.rb +18 -0
  1761. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Maputo.rb +23 -0
  1762. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Maseru.rb +18 -0
  1763. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Mbabane.rb +18 -0
  1764. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Mogadishu.rb +18 -0
  1765. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Monrovia.rb +27 -0
  1766. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Nairobi.rb +29 -0
  1767. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Ndjamena.rb +26 -0
  1768. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Niamey.rb +18 -0
  1769. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Nouakchott.rb +18 -0
  1770. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Ouagadougou.rb +18 -0
  1771. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Porto__m__Novo.rb +18 -0
  1772. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Sao_Tome.rb +28 -0
  1773. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Timbuktu.rb +18 -0
  1774. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Tripoli.rb +56 -0
  1775. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Tunis.rb +58 -0
  1776. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Africa/Windhoek.rb +79 -0
  1777. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Adak.rb +249 -0
  1778. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Anchorage.rb +249 -0
  1779. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Anguilla.rb +18 -0
  1780. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Antigua.rb +18 -0
  1781. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Araguaina.rb +74 -0
  1782. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
  1783. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Catamarca.rb +89 -0
  1784. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/ComodRivadavia.rb +20 -0
  1785. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Cordoba.rb +89 -0
  1786. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Jujuy.rb +87 -0
  1787. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/La_Rioja.rb +90 -0
  1788. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Mendoza.rb +89 -0
  1789. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Rio_Gallegos.rb +89 -0
  1790. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Salta.rb +87 -0
  1791. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/San_Juan.rb +90 -0
  1792. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/San_Luis.rb +90 -0
  1793. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Tucuman.rb +91 -0
  1794. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Argentina/Ushuaia.rb +89 -0
  1795. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Aruba.rb +18 -0
  1796. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Asuncion.rb +227 -0
  1797. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Atikokan.rb +18 -0
  1798. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Atka.rb +18 -0
  1799. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Bahia.rb +84 -0
  1800. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Bahia_Banderas.rb +89 -0
  1801. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Barbados.rb +39 -0
  1802. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Belem.rb +52 -0
  1803. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Belize.rb +124 -0
  1804. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Blanc__m__Sablon.rb +18 -0
  1805. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Boa_Vista.rb +56 -0
  1806. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Bogota.rb +28 -0
  1807. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Boise.rb +252 -0
  1808. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Buenos_Aires.rb +18 -0
  1809. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Cambridge_Bay.rb +239 -0
  1810. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Campo_Grande.rb +114 -0
  1811. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Cancun.rb +67 -0
  1812. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Caracas.rb +29 -0
  1813. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Catamarca.rb +18 -0
  1814. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Cayenne.rb +25 -0
  1815. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Cayman.rb +18 -0
  1816. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Chicago.rb +336 -0
  1817. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Chihuahua.rb +85 -0
  1818. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Ciudad_Juarez.rb +190 -0
  1819. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Coral_Harbour.rb +18 -0
  1820. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Cordoba.rb +18 -0
  1821. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Costa_Rica.rb +34 -0
  1822. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Creston.rb +18 -0
  1823. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Cuiaba.rb +112 -0
  1824. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Curacao.rb +18 -0
  1825. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Danmarkshavn.rb +58 -0
  1826. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Dawson.rb +122 -0
  1827. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Dawson_Creek.rb +84 -0
  1828. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Denver.rb +257 -0
  1829. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Detroit.rb +241 -0
  1830. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Dominica.rb +18 -0
  1831. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Edmonton.rb +249 -0
  1832. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Eirunepe.rb +57 -0
  1833. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/El_Salvador.rb +28 -0
  1834. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Ensenada.rb +18 -0
  1835. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Fort_Nelson.rb +169 -0
  1836. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Fort_Wayne.rb +18 -0
  1837. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Fortaleza.rb +62 -0
  1838. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Glace_Bay.rb +239 -0
  1839. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Godthab.rb +18 -0
  1840. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Goose_Bay.rb +308 -0
  1841. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Grand_Turk.rb +214 -0
  1842. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Grenada.rb +18 -0
  1843. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Guadeloupe.rb +18 -0
  1844. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Guatemala.rb +32 -0
  1845. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Guayaquil.rb +28 -0
  1846. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Guyana.rb +28 -0
  1847. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Halifax.rb +327 -0
  1848. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Havana.rb +254 -0
  1849. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Hermosillo.rb +40 -0
  1850. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Indianapolis.rb +202 -0
  1851. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Knox.rb +256 -0
  1852. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Marengo.rb +206 -0
  1853. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Petersburg.rb +219 -0
  1854. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Tell_City.rb +201 -0
  1855. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Vevay.rb +184 -0
  1856. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Vincennes.rb +204 -0
  1857. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indiana/Winamac.rb +210 -0
  1858. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Indianapolis.rb +18 -0
  1859. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Inuvik.rb +232 -0
  1860. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Iqaluit.rb +236 -0
  1861. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Jamaica.rb +46 -0
  1862. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Jujuy.rb +18 -0
  1863. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Juneau.rb +248 -0
  1864. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Kentucky/Louisville.rb +281 -0
  1865. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Kentucky/Monticello.rb +251 -0
  1866. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Knox_IN.rb +18 -0
  1867. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Kralendijk.rb +18 -0
  1868. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/La_Paz.rb +27 -0
  1869. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Lima.rb +40 -0
  1870. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Los_Angeles.rb +285 -0
  1871. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Louisville.rb +18 -0
  1872. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Lower_Princes.rb +18 -0
  1873. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Maceio.rb +64 -0
  1874. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Managua.rb +41 -0
  1875. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Manaus.rb +54 -0
  1876. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Marigot.rb +18 -0
  1877. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Martinique.rb +28 -0
  1878. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Matamoros.rb +184 -0
  1879. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Mazatlan.rb +88 -0
  1880. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Mendoza.rb +18 -0
  1881. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Menominee.rb +243 -0
  1882. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Merida.rb +81 -0
  1883. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Metlakatla.rb +183 -0
  1884. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Mexico_City.rb +94 -0
  1885. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Miquelon.rb +202 -0
  1886. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Moncton.rb +307 -0
  1887. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Monterrey.rb +80 -0
  1888. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Montevideo.rb +115 -0
  1889. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Montreal.rb +18 -0
  1890. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Montserrat.rb +18 -0
  1891. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Nassau.rb +18 -0
  1892. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/New_York.rb +335 -0
  1893. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Nipigon.rb +18 -0
  1894. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Nome.rb +249 -0
  1895. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Noronha.rb +62 -0
  1896. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/North_Dakota/Beulah.rb +253 -0
  1897. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/North_Dakota/Center.rb +253 -0
  1898. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/North_Dakota/New_Salem.rb +253 -0
  1899. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Nuuk.rb +215 -0
  1900. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Ojinaga.rb +189 -0
  1901. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Panama.rb +25 -0
  1902. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Pangnirtung.rb +18 -0
  1903. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Paramaribo.rb +29 -0
  1904. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Phoenix.rb +35 -0
  1905. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Port__m__au__m__Prince.rb +184 -0
  1906. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Port_of_Spain.rb +18 -0
  1907. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Porto_Acre.rb +18 -0
  1908. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Porto_Velho.rb +52 -0
  1909. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Puerto_Rico.rb +28 -0
  1910. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Punta_Arenas.rb +144 -0
  1911. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Rainy_River.rb +18 -0
  1912. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Rankin_Inlet.rb +231 -0
  1913. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Recife.rb +62 -0
  1914. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Regina.rb +79 -0
  1915. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Resolute.rb +231 -0
  1916. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Rio_Branco.rb +55 -0
  1917. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Rosario.rb +18 -0
  1918. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Santa_Isabel.rb +18 -0
  1919. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Santarem.rb +54 -0
  1920. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Santiago.rb +258 -0
  1921. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Santo_Domingo.rb +43 -0
  1922. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Sao_Paulo.rb +114 -0
  1923. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Scoresbysund.rb +216 -0
  1924. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Shiprock.rb +18 -0
  1925. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Sitka.rb +247 -0
  1926. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/St_Barthelemy.rb +18 -0
  1927. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/St_Johns.rb +341 -0
  1928. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/St_Kitts.rb +18 -0
  1929. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/St_Lucia.rb +18 -0
  1930. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/St_Thomas.rb +18 -0
  1931. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/St_Vincent.rb +18 -0
  1932. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Swift_Current.rb +49 -0
  1933. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Tegucigalpa.rb +30 -0
  1934. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Thule.rb +192 -0
  1935. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Thunder_Bay.rb +18 -0
  1936. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Tijuana.rb +249 -0
  1937. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Toronto.rb +332 -0
  1938. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Tortola.rb +18 -0
  1939. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Vancouver.rb +289 -0
  1940. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Virgin.rb +18 -0
  1941. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Whitehorse.rb +122 -0
  1942. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Winnipeg.rb +285 -0
  1943. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Yakutat.rb +246 -0
  1944. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/America/Yellowknife.rb +18 -0
  1945. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Casey.rb +40 -0
  1946. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Davis.rb +30 -0
  1947. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/DumontDUrville.rb +18 -0
  1948. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Macquarie.rb +240 -0
  1949. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Mawson.rb +25 -0
  1950. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/McMurdo.rb +18 -0
  1951. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Palmer.rb +107 -0
  1952. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Rothera.rb +23 -0
  1953. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/South_Pole.rb +18 -0
  1954. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Syowa.rb +18 -0
  1955. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Troll.rb +164 -0
  1956. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Antarctica/Vostok.rb +27 -0
  1957. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Arctic/Longyearbyen.rb +18 -0
  1958. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Aden.rb +18 -0
  1959. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Almaty.rb +77 -0
  1960. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Amman.rb +111 -0
  1961. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Anadyr.rb +91 -0
  1962. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Aqtau.rb +76 -0
  1963. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Aqtobe.rb +77 -0
  1964. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ashgabat.rb +50 -0
  1965. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ashkhabad.rb +18 -0
  1966. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Atyrau.rb +77 -0
  1967. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Baghdad.rb +78 -0
  1968. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Bahrain.rb +18 -0
  1969. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Baku.rb +91 -0
  1970. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Bangkok.rb +25 -0
  1971. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Barnaul.rb +92 -0
  1972. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Beirut.rb +238 -0
  1973. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Bishkek.rb +77 -0
  1974. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Brunei.rb +18 -0
  1975. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Calcutta.rb +18 -0
  1976. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Chita.rb +92 -0
  1977. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Choibalsan.rb +77 -0
  1978. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Chongqing.rb +18 -0
  1979. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Chungking.rb +18 -0
  1980. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Colombo.rb +35 -0
  1981. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Dacca.rb +18 -0
  1982. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Damascus.rb +145 -0
  1983. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Dhaka.rb +33 -0
  1984. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Dili.rb +27 -0
  1985. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Dubai.rb +23 -0
  1986. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Dushanbe.rb +49 -0
  1987. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Famagusta.rb +224 -0
  1988. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Gaza.rb +285 -0
  1989. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Harbin.rb +18 -0
  1990. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Hebron.rb +287 -0
  1991. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ho_Chi_Minh.rb +34 -0
  1992. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Hong_Kong.rb +94 -0
  1993. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Hovd.rb +74 -0
  1994. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Irkutsk.rb +93 -0
  1995. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Istanbul.rb +18 -0
  1996. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Jakarta.rb +35 -0
  1997. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Jayapura.rb +27 -0
  1998. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Jerusalem.rb +248 -0
  1999. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kabul.rb +25 -0
  2000. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kamchatka.rb +89 -0
  2001. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Karachi.rb +37 -0
  2002. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kashgar.rb +18 -0
  2003. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kathmandu.rb +25 -0
  2004. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Katmandu.rb +18 -0
  2005. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Khandyga.rb +95 -0
  2006. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kolkata.rb +32 -0
  2007. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Krasnoyarsk.rb +91 -0
  2008. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kuala_Lumpur.rb +18 -0
  2009. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kuching.rb +43 -0
  2010. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Kuwait.rb +18 -0
  2011. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Macao.rb +18 -0
  2012. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Macau.rb +96 -0
  2013. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Magadan.rb +92 -0
  2014. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Makassar.rb +29 -0
  2015. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Manila.rb +35 -0
  2016. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Muscat.rb +18 -0
  2017. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Nicosia.rb +224 -0
  2018. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Novokuznetsk.rb +89 -0
  2019. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Novosibirsk.rb +92 -0
  2020. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Omsk.rb +91 -0
  2021. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Oral.rb +78 -0
  2022. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Phnom_Penh.rb +18 -0
  2023. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Pontianak.rb +35 -0
  2024. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Pyongyang.rb +29 -0
  2025. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Qatar.rb +25 -0
  2026. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Qostanay.rb +78 -0
  2027. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Qyzylorda.rb +78 -0
  2028. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Rangoon.rb +18 -0
  2029. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Riyadh.rb +23 -0
  2030. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Saigon.rb +18 -0
  2031. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Sakhalin.rb +92 -0
  2032. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Samarkand.rb +49 -0
  2033. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Seoul.rb +55 -0
  2034. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Shanghai.rb +52 -0
  2035. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Singapore.rb +36 -0
  2036. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Srednekolymsk.rb +91 -0
  2037. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Taipei.rb +65 -0
  2038. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Tashkent.rb +49 -0
  2039. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Tbilisi.rb +78 -0
  2040. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Tehran.rb +97 -0
  2041. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Tel_Aviv.rb +18 -0
  2042. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Thimbu.rb +18 -0
  2043. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Thimphu.rb +25 -0
  2044. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Tokyo.rb +32 -0
  2045. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Tomsk.rb +92 -0
  2046. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ujung_Pandang.rb +18 -0
  2047. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ulaanbaatar.rb +74 -0
  2048. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ulan_Bator.rb +18 -0
  2049. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Urumqi.rb +23 -0
  2050. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Ust__m__Nera.rb +94 -0
  2051. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Vientiane.rb +18 -0
  2052. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Vladivostok.rb +91 -0
  2053. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Yakutsk.rb +91 -0
  2054. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Yangon.rb +28 -0
  2055. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Yekaterinburg.rb +93 -0
  2056. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Asia/Yerevan.rb +87 -0
  2057. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Azores.rb +325 -0
  2058. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Bermuda.rb +255 -0
  2059. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Canary.rb +216 -0
  2060. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Cape_Verde.rb +28 -0
  2061. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Faeroe.rb +18 -0
  2062. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Faroe.rb +212 -0
  2063. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Jan_Mayen.rb +18 -0
  2064. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Madeira.rb +324 -0
  2065. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Reykjavik.rb +18 -0
  2066. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/South_Georgia.rb +23 -0
  2067. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/St_Helena.rb +18 -0
  2068. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Atlantic/Stanley.rb +96 -0
  2069. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/ACT.rb +18 -0
  2070. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Adelaide.rb +240 -0
  2071. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Brisbane.rb +40 -0
  2072. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Broken_Hill.rb +242 -0
  2073. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Canberra.rb +18 -0
  2074. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Currie.rb +18 -0
  2075. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Darwin.rb +34 -0
  2076. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Eucla.rb +42 -0
  2077. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Hobart.rb +250 -0
  2078. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/LHI.rb +18 -0
  2079. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Lindeman.rb +44 -0
  2080. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Lord_Howe.rb +213 -0
  2081. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Melbourne.rb +238 -0
  2082. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/NSW.rb +18 -0
  2083. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/North.rb +18 -0
  2084. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Perth.rb +42 -0
  2085. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Queensland.rb +18 -0
  2086. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/South.rb +18 -0
  2087. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Sydney.rb +238 -0
  2088. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Tasmania.rb +18 -0
  2089. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Victoria.rb +18 -0
  2090. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/West.rb +18 -0
  2091. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Australia/Yancowinna.rb +18 -0
  2092. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Brazil/Acre.rb +18 -0
  2093. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Brazil/DeNoronha.rb +18 -0
  2094. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Brazil/East.rb +18 -0
  2095. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Brazil/West.rb +18 -0
  2096. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/CET.rb +230 -0
  2097. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/CST6CDT.rb +245 -0
  2098. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Atlantic.rb +18 -0
  2099. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Central.rb +18 -0
  2100. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Eastern.rb +18 -0
  2101. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Mountain.rb +18 -0
  2102. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Newfoundland.rb +18 -0
  2103. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Pacific.rb +18 -0
  2104. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Saskatchewan.rb +18 -0
  2105. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Canada/Yukon.rb +18 -0
  2106. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Chile/Continental.rb +18 -0
  2107. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Chile/EasterIsland.rb +18 -0
  2108. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Cuba.rb +16 -0
  2109. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/EET.rb +216 -0
  2110. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/EST.rb +19 -0
  2111. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/EST5EDT.rb +245 -0
  2112. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Egypt.rb +16 -0
  2113. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Eire.rb +16 -0
  2114. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT.rb +21 -0
  2115. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT0.rb +18 -0
  2116. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__0.rb +18 -0
  2117. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
  2118. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__10.rb +21 -0
  2119. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__11.rb +21 -0
  2120. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__12.rb +21 -0
  2121. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__13.rb +21 -0
  2122. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__14.rb +21 -0
  2123. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__2.rb +21 -0
  2124. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__3.rb +21 -0
  2125. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__4.rb +21 -0
  2126. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__5.rb +21 -0
  2127. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__6.rb +21 -0
  2128. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__7.rb +21 -0
  2129. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__8.rb +21 -0
  2130. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__m__9.rb +21 -0
  2131. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__0.rb +18 -0
  2132. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
  2133. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__10.rb +21 -0
  2134. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__11.rb +21 -0
  2135. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__12.rb +21 -0
  2136. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__2.rb +21 -0
  2137. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__3.rb +21 -0
  2138. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__4.rb +21 -0
  2139. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__5.rb +21 -0
  2140. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__6.rb +21 -0
  2141. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__7.rb +21 -0
  2142. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__8.rb +21 -0
  2143. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/GMT__p__9.rb +21 -0
  2144. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/Greenwich.rb +18 -0
  2145. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/UCT.rb +18 -0
  2146. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/UTC.rb +21 -0
  2147. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/Universal.rb +18 -0
  2148. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Etc/Zulu.rb +18 -0
  2149. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Amsterdam.rb +18 -0
  2150. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Andorra.rb +206 -0
  2151. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Astrakhan.rb +89 -0
  2152. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Athens.rb +238 -0
  2153. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Belfast.rb +18 -0
  2154. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Belgrade.rb +216 -0
  2155. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Berlin.rb +241 -0
  2156. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Bratislava.rb +18 -0
  2157. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Brussels.rb +285 -0
  2158. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Bucharest.rb +234 -0
  2159. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Budapest.rb +248 -0
  2160. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Busingen.rb +18 -0
  2161. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Chisinau.rb +244 -0
  2162. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Copenhagen.rb +18 -0
  2163. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Dublin.rb +329 -0
  2164. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Gibraltar.rb +298 -0
  2165. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Guernsey.rb +18 -0
  2166. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Helsinki.rb +216 -0
  2167. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Isle_of_Man.rb +18 -0
  2168. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Istanbul.rb +141 -0
  2169. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Jersey.rb +18 -0
  2170. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Kaliningrad.rb +108 -0
  2171. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Kiev.rb +18 -0
  2172. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Kirov.rb +90 -0
  2173. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Kyiv.rb +223 -0
  2174. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Lisbon.rb +323 -0
  2175. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Ljubljana.rb +18 -0
  2176. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/London.rb +341 -0
  2177. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Luxembourg.rb +18 -0
  2178. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Madrid.rb +262 -0
  2179. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Malta.rb +266 -0
  2180. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Mariehamn.rb +18 -0
  2181. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Minsk.rb +97 -0
  2182. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Monaco.rb +18 -0
  2183. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Moscow.rb +109 -0
  2184. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Nicosia.rb +18 -0
  2185. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Oslo.rb +18 -0
  2186. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Paris.rb +285 -0
  2187. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Podgorica.rb +18 -0
  2188. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Prague.rb +243 -0
  2189. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Riga.rb +229 -0
  2190. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Rome.rb +268 -0
  2191. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Samara.rb +90 -0
  2192. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/San_Marino.rb +18 -0
  2193. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Sarajevo.rb +18 -0
  2194. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Saratov.rb +89 -0
  2195. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Simferopol.rb +104 -0
  2196. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Skopje.rb +18 -0
  2197. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Sofia.rb +226 -0
  2198. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Stockholm.rb +18 -0
  2199. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Tallinn.rb +225 -0
  2200. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Tirane.rb +230 -0
  2201. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Tiraspol.rb +18 -0
  2202. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Ulyanovsk.rb +93 -0
  2203. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Uzhgorod.rb +18 -0
  2204. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Vaduz.rb +18 -0
  2205. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Vatican.rb +18 -0
  2206. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Vienna.rb +236 -0
  2207. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Vilnius.rb +223 -0
  2208. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Volgograd.rb +92 -0
  2209. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Warsaw.rb +265 -0
  2210. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Zagreb.rb +18 -0
  2211. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Zaporozhye.rb +18 -0
  2212. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Europe/Zurich.rb +218 -0
  2213. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Factory.rb +19 -0
  2214. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/GB.rb +16 -0
  2215. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/GB__m__Eire.rb +16 -0
  2216. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/GMT.rb +16 -0
  2217. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/GMT0.rb +16 -0
  2218. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/GMT__m__0.rb +16 -0
  2219. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/GMT__p__0.rb +16 -0
  2220. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Greenwich.rb +16 -0
  2221. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/HST.rb +19 -0
  2222. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Hongkong.rb +16 -0
  2223. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Iceland.rb +16 -0
  2224. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Antananarivo.rb +18 -0
  2225. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Chagos.rb +25 -0
  2226. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Christmas.rb +18 -0
  2227. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Cocos.rb +18 -0
  2228. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Comoro.rb +18 -0
  2229. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Kerguelen.rb +18 -0
  2230. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Mahe.rb +18 -0
  2231. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Maldives.rb +25 -0
  2232. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Mauritius.rb +28 -0
  2233. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Mayotte.rb +18 -0
  2234. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Indian/Reunion.rb +18 -0
  2235. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Iran.rb +16 -0
  2236. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Israel.rb +16 -0
  2237. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Jamaica.rb +16 -0
  2238. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Japan.rb +16 -0
  2239. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Kwajalein.rb +16 -0
  2240. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Libya.rb +16 -0
  2241. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/MET.rb +230 -0
  2242. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/MST.rb +19 -0
  2243. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/MST7MDT.rb +245 -0
  2244. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Mexico/BajaNorte.rb +18 -0
  2245. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Mexico/BajaSur.rb +18 -0
  2246. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Mexico/General.rb +18 -0
  2247. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/NZ.rb +16 -0
  2248. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/NZ__m__CHAT.rb +16 -0
  2249. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Navajo.rb +16 -0
  2250. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/PRC.rb +16 -0
  2251. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/PST8PDT.rb +245 -0
  2252. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Apia.rb +53 -0
  2253. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Auckland.rb +255 -0
  2254. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Bougainville.rb +30 -0
  2255. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Chatham.rb +226 -0
  2256. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Chuuk.rb +18 -0
  2257. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Easter.rb +238 -0
  2258. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Efate.rb +46 -0
  2259. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Enderbury.rb +18 -0
  2260. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Fakaofo.rb +25 -0
  2261. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Fiji.rb +52 -0
  2262. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Funafuti.rb +18 -0
  2263. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Galapagos.rb +28 -0
  2264. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Gambier.rb +23 -0
  2265. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Guadalcanal.rb +23 -0
  2266. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Guam.rb +47 -0
  2267. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Honolulu.rb +33 -0
  2268. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Johnston.rb +18 -0
  2269. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Kanton.rb +27 -0
  2270. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Kiritimati.rb +27 -0
  2271. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Kosrae.rb +35 -0
  2272. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Kwajalein.rb +32 -0
  2273. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Majuro.rb +18 -0
  2274. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Marquesas.rb +23 -0
  2275. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Midway.rb +18 -0
  2276. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Nauru.rb +28 -0
  2277. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Niue.rb +25 -0
  2278. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Norfolk.rb +141 -0
  2279. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Noumea.rb +30 -0
  2280. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Pago_Pago.rb +25 -0
  2281. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Palau.rb +25 -0
  2282. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Pitcairn.rb +25 -0
  2283. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Pohnpei.rb +18 -0
  2284. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Ponape.rb +18 -0
  2285. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Port_Moresby.rb +25 -0
  2286. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Rarotonga.rb +53 -0
  2287. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Saipan.rb +18 -0
  2288. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Samoa.rb +18 -0
  2289. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Tahiti.rb +23 -0
  2290. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Tarawa.rb +23 -0
  2291. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Tongatapu.rb +34 -0
  2292. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Truk.rb +18 -0
  2293. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Wake.rb +18 -0
  2294. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Wallis.rb +18 -0
  2295. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Pacific/Yap.rb +18 -0
  2296. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Poland.rb +16 -0
  2297. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Portugal.rb +16 -0
  2298. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/ROC.rb +16 -0
  2299. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/ROK.rb +16 -0
  2300. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Singapore.rb +16 -0
  2301. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Turkey.rb +16 -0
  2302. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/UCT.rb +16 -0
  2303. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Alaska.rb +18 -0
  2304. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Aleutian.rb +18 -0
  2305. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Arizona.rb +18 -0
  2306. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Central.rb +18 -0
  2307. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/East__m__Indiana.rb +18 -0
  2308. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Eastern.rb +18 -0
  2309. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Hawaii.rb +18 -0
  2310. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Indiana__m__Starke.rb +18 -0
  2311. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Michigan.rb +18 -0
  2312. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Mountain.rb +18 -0
  2313. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Pacific.rb +18 -0
  2314. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/US/Samoa.rb +18 -0
  2315. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/UTC.rb +16 -0
  2316. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Universal.rb +16 -0
  2317. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/WET.rb +216 -0
  2318. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/W__m__SU.rb +16 -0
  2319. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/definitions/Zulu.rb +16 -0
  2320. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/indexes/countries.rb +932 -0
  2321. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/indexes/timezones.rb +612 -0
  2322. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/tzdataparser.rb +1350 -0
  2323. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data/version.rb +20 -0
  2324. data/vendor/bundle/ruby/3.3.0/gems/tzinfo-data-1.2024.1/lib/tzinfo/data.rb +8 -0
  2325. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/Gemfile +6 -0
  2326. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/LICENSE.txt +22 -0
  2327. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/README.md +61 -0
  2328. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/Rakefile +17 -0
  2329. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/accesslog.rb +157 -0
  2330. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/cgi.rb +313 -0
  2331. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/compat.rb +36 -0
  2332. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/config.rb +158 -0
  2333. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/cookie.rb +172 -0
  2334. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/htmlutils.rb +30 -0
  2335. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/authenticator.rb +117 -0
  2336. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/basicauth.rb +116 -0
  2337. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/digestauth.rb +395 -0
  2338. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/htdigest.rb +132 -0
  2339. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/htgroup.rb +97 -0
  2340. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/htpasswd.rb +158 -0
  2341. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth/userdb.rb +53 -0
  2342. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpauth.rb +96 -0
  2343. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpproxy.rb +354 -0
  2344. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httprequest.rb +640 -0
  2345. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpresponse.rb +588 -0
  2346. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/https.rb +152 -0
  2347. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpserver.rb +294 -0
  2348. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet/abstract.rb +152 -0
  2349. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet/cgi_runner.rb +47 -0
  2350. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet/cgihandler.rb +126 -0
  2351. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet/erbhandler.rb +88 -0
  2352. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet/filehandler.rb +552 -0
  2353. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet/prochandler.rb +48 -0
  2354. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpservlet.rb +23 -0
  2355. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpstatus.rb +194 -0
  2356. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httputils.rb +523 -0
  2357. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/httpversion.rb +76 -0
  2358. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/log.rb +156 -0
  2359. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/server.rb +381 -0
  2360. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/ssl.rb +219 -0
  2361. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/utils.rb +265 -0
  2362. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick/version.rb +18 -0
  2363. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/lib/webrick.rb +232 -0
  2364. data/vendor/bundle/ruby/3.3.0/gems/webrick-1.8.1/webrick.gemspec +70 -0
  2365. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/CHANGES +71 -0
  2366. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/MANIFEST +9 -0
  2367. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/README +51 -0
  2368. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/Rakefile +28 -0
  2369. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/certs/djberg96_pub.pem +21 -0
  2370. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/lib/win32/event.rb +189 -0
  2371. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/lib/win32-event.rb +1 -0
  2372. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/test/test_win32_event.rb +200 -0
  2373. data/vendor/bundle/ruby/3.3.0/gems/win32-event-0.6.3/win32-event.gemspec +27 -0
  2374. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/CHANGES +96 -0
  2375. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/MANIFEST +8 -0
  2376. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/README +32 -0
  2377. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/Rakefile +28 -0
  2378. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/certs/djberg96_pub.pem +21 -0
  2379. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/lib/win32/ipc.rb +185 -0
  2380. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/lib/win32-ipc.rb +1 -0
  2381. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/test/test_win32_ipc.rb +88 -0
  2382. data/vendor/bundle/ruby/3.3.0/gems/win32-ipc-0.7.0/win32-ipc.gemspec +25 -0
  2383. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32/daemon.rb +366 -0
  2384. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32/service.rb +1666 -0
  2385. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32/windows/constants.rb +143 -0
  2386. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32/windows/functions.rb +75 -0
  2387. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32/windows/structs.rb +121 -0
  2388. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32/windows/version.rb +6 -0
  2389. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32-daemon.rb +1 -0
  2390. data/vendor/bundle/ruby/3.3.0/gems/win32-service-2.3.2/lib/win32-service.rb +1 -0
  2391. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/.codeclimate.yml +40 -0
  2392. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/.github/workflows/ci.yml +26 -0
  2393. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/.gitignore +13 -0
  2394. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/.rspec +2 -0
  2395. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/CHANGELOG.md +332 -0
  2396. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/Gemfile +3 -0
  2397. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/LICENSE +21 -0
  2398. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/README.md +367 -0
  2399. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/Rakefile +2 -0
  2400. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/encode.rb +72 -0
  2401. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/encode_json_and_marshal.rb +42 -0
  2402. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/encode_json_and_yaml.rb +53 -0
  2403. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/http.rb +32 -0
  2404. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/parse.rb +94 -0
  2405. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/parse_json_and_marshal.rb +50 -0
  2406. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/parse_json_and_yaml.rb +55 -0
  2407. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/parse_stream.rb +54 -0
  2408. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/item.json +1 -0
  2409. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/ohai.json +1216 -0
  2410. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/ohai.marshal_dump +0 -0
  2411. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/ohai.yml +975 -0
  2412. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/twitter_search.json +1 -0
  2413. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/twitter_stream.json +430 -0
  2414. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/benchmark/subjects/unicode.json +1 -0
  2415. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/encoding/chunked_encoding.rb +27 -0
  2416. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/encoding/one_shot.rb +13 -0
  2417. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/encoding/to_an_io.rb +12 -0
  2418. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/http/twitter_search_api.rb +12 -0
  2419. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/http/twitter_stream_api.rb +26 -0
  2420. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/parsing/from_file.rb +14 -0
  2421. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/parsing/from_stdin.rb +9 -0
  2422. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/examples/parsing/from_string.rb +13 -0
  2423. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/api/yajl_common.h +95 -0
  2424. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/api/yajl_gen.h +166 -0
  2425. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/api/yajl_parse.h +198 -0
  2426. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/api/yajl_version.h +23 -0
  2427. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/extconf.rb +12 -0
  2428. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl.c +180 -0
  2429. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_alloc.c +65 -0
  2430. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_alloc.h +51 -0
  2431. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_buf.c +200 -0
  2432. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_buf.h +89 -0
  2433. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_bytestack.h +102 -0
  2434. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_encode.c +237 -0
  2435. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_encode.h +55 -0
  2436. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_ext.c +1424 -0
  2437. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_ext.h +135 -0
  2438. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_gen.c +378 -0
  2439. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_lex.c +758 -0
  2440. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_lex.h +148 -0
  2441. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_parser.c +464 -0
  2442. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_parser.h +84 -0
  2443. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/ext/yajl/yajl_version.c +7 -0
  2444. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/bzip2/stream_reader.rb +31 -0
  2445. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/bzip2/stream_writer.rb +14 -0
  2446. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/bzip2.rb +11 -0
  2447. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/deflate/stream_reader.rb +43 -0
  2448. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/deflate/stream_writer.rb +20 -0
  2449. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/deflate.rb +6 -0
  2450. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/gzip/stream_reader.rb +30 -0
  2451. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/gzip/stream_writer.rb +13 -0
  2452. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/gzip.rb +6 -0
  2453. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/http_stream.rb +213 -0
  2454. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/json_gem/encoding.rb +50 -0
  2455. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/json_gem/parsing.rb +26 -0
  2456. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/json_gem.rb +13 -0
  2457. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl/version.rb +3 -0
  2458. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/lib/yajl.rb +83 -0
  2459. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/script/bootstrap +5 -0
  2460. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/encoding/encoding_spec.rb +341 -0
  2461. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/global/global_spec.rb +54 -0
  2462. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.bzip2.dump +0 -0
  2463. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.chunked.dump +11 -0
  2464. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.deflate.dump +0 -0
  2465. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.error.dump +12 -0
  2466. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.gzip.dump +0 -0
  2467. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.html.dump +1220 -0
  2468. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/fixtures/http.raw.dump +1226 -0
  2469. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/http_delete_spec.rb +98 -0
  2470. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/http_error_spec.rb +31 -0
  2471. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/http_get_spec.rb +109 -0
  2472. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/http_post_spec.rb +123 -0
  2473. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/http_put_spec.rb +105 -0
  2474. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/http/http_stream_options_spec.rb +27 -0
  2475. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/json_gem_compatibility/compatibility_spec.rb +207 -0
  2476. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/active_support_spec.rb +64 -0
  2477. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/chunked_spec.rb +96 -0
  2478. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail.15.json +1 -0
  2479. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail.16.json +1 -0
  2480. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail.17.json +1 -0
  2481. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail.26.json +1 -0
  2482. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail11.json +1 -0
  2483. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail12.json +1 -0
  2484. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail13.json +1 -0
  2485. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail14.json +1 -0
  2486. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail19.json +1 -0
  2487. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail20.json +1 -0
  2488. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail21.json +1 -0
  2489. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail22.json +1 -0
  2490. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail23.json +1 -0
  2491. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail24.json +1 -0
  2492. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail25.json +1 -0
  2493. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail27.json +2 -0
  2494. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail28.json +2 -0
  2495. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail3.json +1 -0
  2496. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail4.json +1 -0
  2497. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail5.json +1 -0
  2498. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail6.json +1 -0
  2499. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/fail9.json +1 -0
  2500. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.array.json +6 -0
  2501. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.codepoints_from_unicode_org.json +1 -0
  2502. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.contacts.json +1 -0
  2503. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.db100.xml.json +1 -0
  2504. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.db1000.xml.json +1 -0
  2505. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.dc_simple_with_comments.json +11 -0
  2506. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.deep_arrays.json +1 -0
  2507. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.difficult_json_c_test_case.json +1 -0
  2508. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json +1 -0
  2509. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.doubles.json +1 -0
  2510. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.empty_array.json +1 -0
  2511. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.empty_string.json +1 -0
  2512. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.escaped_bulgarian.json +4 -0
  2513. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.escaped_foobar.json +1 -0
  2514. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.item.json +1 -0
  2515. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.json-org-sample1.json +23 -0
  2516. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.json-org-sample2.json +11 -0
  2517. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.json-org-sample3.json +26 -0
  2518. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.json-org-sample4-nows.json +88 -0
  2519. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.json-org-sample4.json +89 -0
  2520. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.json-org-sample5.json +27 -0
  2521. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.map-spain.xml.json +1 -0
  2522. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.ns-invoice100.xml.json +1 -0
  2523. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.ns-soap.xml.json +1 -0
  2524. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.numbers-fp-4k.json +6 -0
  2525. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.numbers-fp-64k.json +61 -0
  2526. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.numbers-int-4k.json +11 -0
  2527. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.numbers-int-64k.json +154 -0
  2528. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.twitter-search.json +1 -0
  2529. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.twitter-search2.json +1 -0
  2530. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.unicode.json +3315 -0
  2531. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass.yelp.json +1 -0
  2532. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass1.json +56 -0
  2533. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass2.json +1 -0
  2534. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures/pass3.json +6 -0
  2535. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/fixtures_spec.rb +40 -0
  2536. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/large_number_spec.rb +60 -0
  2537. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/parsing/one_off_spec.rb +97 -0
  2538. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/projection/project_file.rb +41 -0
  2539. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/projection/projection.rb +498 -0
  2540. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/rcov.opts +3 -0
  2541. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/spec/spec_helper.rb +13 -0
  2542. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/tasks/compile.rake +35 -0
  2543. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/tasks/rspec.rake +16 -0
  2544. data/vendor/bundle/ruby/3.3.0/gems/yajl-ruby-1.4.3/yajl-ruby.gemspec +23 -0
  2545. data/vendor/bundle/ruby/3.3.0/specifications/base64-0.2.0.gemspec +23 -0
  2546. data/vendor/bundle/ruby/3.3.0/specifications/certstore_c-0.1.7.gemspec +34 -0
  2547. data/vendor/bundle/ruby/3.3.0/specifications/concurrent-ruby-1.3.3.gemspec +24 -0
  2548. data/vendor/bundle/ruby/3.3.0/specifications/cool.io-1.8.1.gemspec +0 -0
  2549. data/vendor/bundle/ruby/3.3.0/specifications/csv-3.3.0.gemspec +31 -0
  2550. data/vendor/bundle/ruby/3.3.0/specifications/drb-2.2.1.gemspec +22 -0
  2551. data/vendor/bundle/ruby/3.3.0/specifications/ffi-1.17.0-x64-mingw-ucrt.gemspec +31 -0
  2552. data/vendor/bundle/ruby/3.3.0/specifications/ffi-win32-extensions-1.0.4.gemspec +24 -0
  2553. data/vendor/bundle/ruby/3.3.0/specifications/fluentd-1.17.0-x64-mingw-ucrt.gemspec +59 -0
  2554. data/vendor/bundle/ruby/3.3.0/specifications/http_parser.rb-0.8.0.gemspec +32 -0
  2555. data/vendor/bundle/ruby/3.3.0/specifications/json-2.7.2.gemspec +0 -0
  2556. data/vendor/bundle/ruby/3.3.0/specifications/minitar-0.9.gemspec +38 -0
  2557. data/vendor/bundle/ruby/3.3.0/specifications/msgpack-1.7.2.gemspec +35 -0
  2558. data/vendor/bundle/ruby/3.3.0/specifications/power_assert-2.0.3.gemspec +34 -0
  2559. data/vendor/bundle/ruby/3.3.0/specifications/rake-13.2.1.gemspec +26 -0
  2560. data/vendor/bundle/ruby/3.3.0/specifications/serverengine-2.3.2.gemspec +31 -0
  2561. data/vendor/bundle/ruby/3.3.0/specifications/sigdump-0.2.5.gemspec +24 -0
  2562. data/vendor/bundle/ruby/3.3.0/specifications/strptime-0.2.5.gemspec +34 -0
  2563. data/vendor/bundle/ruby/3.3.0/specifications/test-unit-3.6.2.gemspec +30 -0
  2564. data/vendor/bundle/ruby/3.3.0/specifications/thermite-0.13.0.gemspec +31 -0
  2565. data/vendor/bundle/ruby/3.3.0/specifications/tomlrb-1.3.0.gemspec +21 -0
  2566. data/vendor/bundle/ruby/3.3.0/specifications/tzinfo-2.0.6.gemspec +30 -0
  2567. data/vendor/bundle/ruby/3.3.0/specifications/tzinfo-data-1.2024.1.gemspec +29 -0
  2568. data/vendor/bundle/ruby/3.3.0/specifications/webrick-1.8.1.gemspec +22 -0
  2569. data/vendor/bundle/ruby/3.3.0/specifications/win32-event-0.6.3.gemspec +29 -0
  2570. data/vendor/bundle/ruby/3.3.0/specifications/win32-ipc-0.7.0.gemspec +28 -0
  2571. data/vendor/bundle/ruby/3.3.0/specifications/win32-service-2.3.2.gemspec +31 -0
  2572. data/vendor/bundle/ruby/3.3.0/specifications/yajl-ruby-1.4.3.gemspec +31 -0
  2573. metadata +2757 -0
@@ -0,0 +1,4456 @@
1
+ /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2
+ *
3
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ * of this software and associated documentation files (the "Software"), to
5
+ * deal in the Software without restriction, including without limitation the
6
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ * sell copies of the Software, and to permit persons to whom the Software is
8
+ * furnished to do so, subject to the following conditions:
9
+ *
10
+ * The above copyright notice and this permission notice shall be included in
11
+ * all copies or substantial portions of the Software.
12
+ *
13
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
+ * IN THE SOFTWARE.
20
+ */
21
+ #include "http_parser.h"
22
+ #include <stdlib.h>
23
+ #include <assert.h>
24
+ #include <stdio.h>
25
+ #include <stdlib.h> /* rand */
26
+ #include <string.h>
27
+ #include <stdarg.h>
28
+
29
+ #if defined(__APPLE__)
30
+ # undef strlncpy
31
+ #endif /* defined(__APPLE__) */
32
+
33
+ #undef TRUE
34
+ #define TRUE 1
35
+ #undef FALSE
36
+ #define FALSE 0
37
+
38
+ #define MAX_HEADERS 13
39
+ #define MAX_ELEMENT_SIZE 2048
40
+ #define MAX_CHUNKS 16
41
+
42
+ #define MIN(a,b) ((a) < (b) ? (a) : (b))
43
+
44
+ #define ARRAY_SIZE(x) (sizeof(x) / sizeof(*x))
45
+
46
+ static http_parser *parser;
47
+
48
+ struct message {
49
+ const char *name; // for debugging purposes
50
+ const char *raw;
51
+ enum http_parser_type type;
52
+ enum http_method method;
53
+ int status_code;
54
+ char response_status[MAX_ELEMENT_SIZE];
55
+ char request_path[MAX_ELEMENT_SIZE];
56
+ char request_url[MAX_ELEMENT_SIZE];
57
+ char fragment[MAX_ELEMENT_SIZE];
58
+ char query_string[MAX_ELEMENT_SIZE];
59
+ char body[MAX_ELEMENT_SIZE];
60
+ size_t body_size;
61
+ const char *host;
62
+ const char *userinfo;
63
+ uint16_t port;
64
+ int num_headers;
65
+ enum { NONE=0, FIELD, VALUE } last_header_element;
66
+ char headers [MAX_HEADERS][2][MAX_ELEMENT_SIZE];
67
+ int should_keep_alive;
68
+
69
+ int num_chunks;
70
+ int num_chunks_complete;
71
+ int chunk_lengths[MAX_CHUNKS];
72
+
73
+ const char *upgrade; // upgraded body
74
+
75
+ unsigned short http_major;
76
+ unsigned short http_minor;
77
+
78
+ int message_begin_cb_called;
79
+ int headers_complete_cb_called;
80
+ int message_complete_cb_called;
81
+ int status_cb_called;
82
+ int message_complete_on_eof;
83
+ int body_is_final;
84
+ };
85
+
86
+ static int currently_parsing_eof;
87
+
88
+ static struct message messages[5];
89
+ static int num_messages;
90
+ static http_parser_settings *current_pause_parser;
91
+
92
+ /* * R E Q U E S T S * */
93
+ const struct message requests[] =
94
+ #define CURL_GET 0
95
+ { {.name= "curl get"
96
+ ,.type= HTTP_REQUEST
97
+ ,.raw= "GET /test HTTP/1.1\r\n"
98
+ "User-Agent: curl/7.18.0 (i486-pc-linux-gnu) libcurl/7.18.0 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.1\r\n"
99
+ "Host: 0.0.0.0=5000\r\n"
100
+ "Accept: */*\r\n"
101
+ "\r\n"
102
+ ,.should_keep_alive= TRUE
103
+ ,.message_complete_on_eof= FALSE
104
+ ,.http_major= 1
105
+ ,.http_minor= 1
106
+ ,.method= HTTP_GET
107
+ ,.query_string= ""
108
+ ,.fragment= ""
109
+ ,.request_path= "/test"
110
+ ,.request_url= "/test"
111
+ ,.num_headers= 3
112
+ ,.headers=
113
+ { { "User-Agent", "curl/7.18.0 (i486-pc-linux-gnu) libcurl/7.18.0 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.1" }
114
+ , { "Host", "0.0.0.0=5000" }
115
+ , { "Accept", "*/*" }
116
+ }
117
+ ,.body= ""
118
+ }
119
+
120
+ #define FIREFOX_GET 1
121
+ , {.name= "firefox get"
122
+ ,.type= HTTP_REQUEST
123
+ ,.raw= "GET /favicon.ico HTTP/1.1\r\n"
124
+ "Host: 0.0.0.0=5000\r\n"
125
+ "User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9) Gecko/2008061015 Firefox/3.0\r\n"
126
+ "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n"
127
+ "Accept-Language: en-us,en;q=0.5\r\n"
128
+ "Accept-Encoding: gzip,deflate\r\n"
129
+ "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n"
130
+ "Keep-Alive: 300\r\n"
131
+ "Connection: keep-alive\r\n"
132
+ "\r\n"
133
+ ,.should_keep_alive= TRUE
134
+ ,.message_complete_on_eof= FALSE
135
+ ,.http_major= 1
136
+ ,.http_minor= 1
137
+ ,.method= HTTP_GET
138
+ ,.query_string= ""
139
+ ,.fragment= ""
140
+ ,.request_path= "/favicon.ico"
141
+ ,.request_url= "/favicon.ico"
142
+ ,.num_headers= 8
143
+ ,.headers=
144
+ { { "Host", "0.0.0.0=5000" }
145
+ , { "User-Agent", "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9) Gecko/2008061015 Firefox/3.0" }
146
+ , { "Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" }
147
+ , { "Accept-Language", "en-us,en;q=0.5" }
148
+ , { "Accept-Encoding", "gzip,deflate" }
149
+ , { "Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7" }
150
+ , { "Keep-Alive", "300" }
151
+ , { "Connection", "keep-alive" }
152
+ }
153
+ ,.body= ""
154
+ }
155
+
156
+ #define DUMBFUCK 2
157
+ , {.name= "dumbfuck"
158
+ ,.type= HTTP_REQUEST
159
+ ,.raw= "GET /dumbfuck HTTP/1.1\r\n"
160
+ "aaaaaaaaaaaaa:++++++++++\r\n"
161
+ "\r\n"
162
+ ,.should_keep_alive= TRUE
163
+ ,.message_complete_on_eof= FALSE
164
+ ,.http_major= 1
165
+ ,.http_minor= 1
166
+ ,.method= HTTP_GET
167
+ ,.query_string= ""
168
+ ,.fragment= ""
169
+ ,.request_path= "/dumbfuck"
170
+ ,.request_url= "/dumbfuck"
171
+ ,.num_headers= 1
172
+ ,.headers=
173
+ { { "aaaaaaaaaaaaa", "++++++++++" }
174
+ }
175
+ ,.body= ""
176
+ }
177
+
178
+ #define FRAGMENT_IN_URI 3
179
+ , {.name= "fragment in url"
180
+ ,.type= HTTP_REQUEST
181
+ ,.raw= "GET /forums/1/topics/2375?page=1#posts-17408 HTTP/1.1\r\n"
182
+ "\r\n"
183
+ ,.should_keep_alive= TRUE
184
+ ,.message_complete_on_eof= FALSE
185
+ ,.http_major= 1
186
+ ,.http_minor= 1
187
+ ,.method= HTTP_GET
188
+ ,.query_string= "page=1"
189
+ ,.fragment= "posts-17408"
190
+ ,.request_path= "/forums/1/topics/2375"
191
+ /* XXX request url does include fragment? */
192
+ ,.request_url= "/forums/1/topics/2375?page=1#posts-17408"
193
+ ,.num_headers= 0
194
+ ,.body= ""
195
+ }
196
+
197
+ #define GET_NO_HEADERS_NO_BODY 4
198
+ , {.name= "get no headers no body"
199
+ ,.type= HTTP_REQUEST
200
+ ,.raw= "GET /get_no_headers_no_body/world HTTP/1.1\r\n"
201
+ "\r\n"
202
+ ,.should_keep_alive= TRUE
203
+ ,.message_complete_on_eof= FALSE /* would need Connection: close */
204
+ ,.http_major= 1
205
+ ,.http_minor= 1
206
+ ,.method= HTTP_GET
207
+ ,.query_string= ""
208
+ ,.fragment= ""
209
+ ,.request_path= "/get_no_headers_no_body/world"
210
+ ,.request_url= "/get_no_headers_no_body/world"
211
+ ,.num_headers= 0
212
+ ,.body= ""
213
+ }
214
+
215
+ #define GET_ONE_HEADER_NO_BODY 5
216
+ , {.name= "get one header no body"
217
+ ,.type= HTTP_REQUEST
218
+ ,.raw= "GET /get_one_header_no_body HTTP/1.1\r\n"
219
+ "Accept: */*\r\n"
220
+ "\r\n"
221
+ ,.should_keep_alive= TRUE
222
+ ,.message_complete_on_eof= FALSE /* would need Connection: close */
223
+ ,.http_major= 1
224
+ ,.http_minor= 1
225
+ ,.method= HTTP_GET
226
+ ,.query_string= ""
227
+ ,.fragment= ""
228
+ ,.request_path= "/get_one_header_no_body"
229
+ ,.request_url= "/get_one_header_no_body"
230
+ ,.num_headers= 1
231
+ ,.headers=
232
+ { { "Accept" , "*/*" }
233
+ }
234
+ ,.body= ""
235
+ }
236
+
237
+ #define GET_FUNKY_CONTENT_LENGTH 6
238
+ , {.name= "get funky content length body hello"
239
+ ,.type= HTTP_REQUEST
240
+ ,.raw= "GET /get_funky_content_length_body_hello HTTP/1.0\r\n"
241
+ "conTENT-Length: 5\r\n"
242
+ "\r\n"
243
+ "HELLO"
244
+ ,.should_keep_alive= FALSE
245
+ ,.message_complete_on_eof= FALSE
246
+ ,.http_major= 1
247
+ ,.http_minor= 0
248
+ ,.method= HTTP_GET
249
+ ,.query_string= ""
250
+ ,.fragment= ""
251
+ ,.request_path= "/get_funky_content_length_body_hello"
252
+ ,.request_url= "/get_funky_content_length_body_hello"
253
+ ,.num_headers= 1
254
+ ,.headers=
255
+ { { "conTENT-Length" , "5" }
256
+ }
257
+ ,.body= "HELLO"
258
+ }
259
+
260
+ #define POST_IDENTITY_BODY_WORLD 7
261
+ , {.name= "post identity body world"
262
+ ,.type= HTTP_REQUEST
263
+ ,.raw= "POST /post_identity_body_world?q=search#hey HTTP/1.1\r\n"
264
+ "Accept: */*\r\n"
265
+ "Transfer-Encoding: identity\r\n"
266
+ "Content-Length: 5\r\n"
267
+ "\r\n"
268
+ "World"
269
+ ,.should_keep_alive= TRUE
270
+ ,.message_complete_on_eof= FALSE
271
+ ,.http_major= 1
272
+ ,.http_minor= 1
273
+ ,.method= HTTP_POST
274
+ ,.query_string= "q=search"
275
+ ,.fragment= "hey"
276
+ ,.request_path= "/post_identity_body_world"
277
+ ,.request_url= "/post_identity_body_world?q=search#hey"
278
+ ,.num_headers= 3
279
+ ,.headers=
280
+ { { "Accept", "*/*" }
281
+ , { "Transfer-Encoding", "identity" }
282
+ , { "Content-Length", "5" }
283
+ }
284
+ ,.body= "World"
285
+ }
286
+
287
+ #define POST_CHUNKED_ALL_YOUR_BASE 8
288
+ , {.name= "post - chunked body: all your base are belong to us"
289
+ ,.type= HTTP_REQUEST
290
+ ,.raw= "POST /post_chunked_all_your_base HTTP/1.1\r\n"
291
+ "Transfer-Encoding: chunked\r\n"
292
+ "\r\n"
293
+ "1e\r\nall your base are belong to us\r\n"
294
+ "0\r\n"
295
+ "\r\n"
296
+ ,.should_keep_alive= TRUE
297
+ ,.message_complete_on_eof= FALSE
298
+ ,.http_major= 1
299
+ ,.http_minor= 1
300
+ ,.method= HTTP_POST
301
+ ,.query_string= ""
302
+ ,.fragment= ""
303
+ ,.request_path= "/post_chunked_all_your_base"
304
+ ,.request_url= "/post_chunked_all_your_base"
305
+ ,.num_headers= 1
306
+ ,.headers=
307
+ { { "Transfer-Encoding" , "chunked" }
308
+ }
309
+ ,.body= "all your base are belong to us"
310
+ ,.num_chunks_complete= 2
311
+ ,.chunk_lengths= { 0x1e }
312
+ }
313
+
314
+ #define TWO_CHUNKS_MULT_ZERO_END 9
315
+ , {.name= "two chunks ; triple zero ending"
316
+ ,.type= HTTP_REQUEST
317
+ ,.raw= "POST /two_chunks_mult_zero_end HTTP/1.1\r\n"
318
+ "Transfer-Encoding: chunked\r\n"
319
+ "\r\n"
320
+ "5\r\nhello\r\n"
321
+ "6\r\n world\r\n"
322
+ "000\r\n"
323
+ "\r\n"
324
+ ,.should_keep_alive= TRUE
325
+ ,.message_complete_on_eof= FALSE
326
+ ,.http_major= 1
327
+ ,.http_minor= 1
328
+ ,.method= HTTP_POST
329
+ ,.query_string= ""
330
+ ,.fragment= ""
331
+ ,.request_path= "/two_chunks_mult_zero_end"
332
+ ,.request_url= "/two_chunks_mult_zero_end"
333
+ ,.num_headers= 1
334
+ ,.headers=
335
+ { { "Transfer-Encoding", "chunked" }
336
+ }
337
+ ,.body= "hello world"
338
+ ,.num_chunks_complete= 3
339
+ ,.chunk_lengths= { 5, 6 }
340
+ }
341
+
342
+ #define CHUNKED_W_TRAILING_HEADERS 10
343
+ , {.name= "chunked with trailing headers. blech."
344
+ ,.type= HTTP_REQUEST
345
+ ,.raw= "POST /chunked_w_trailing_headers HTTP/1.1\r\n"
346
+ "Transfer-Encoding: chunked\r\n"
347
+ "\r\n"
348
+ "5\r\nhello\r\n"
349
+ "6\r\n world\r\n"
350
+ "0\r\n"
351
+ "Vary: *\r\n"
352
+ "Content-Type: text/plain\r\n"
353
+ "\r\n"
354
+ ,.should_keep_alive= TRUE
355
+ ,.message_complete_on_eof= FALSE
356
+ ,.http_major= 1
357
+ ,.http_minor= 1
358
+ ,.method= HTTP_POST
359
+ ,.query_string= ""
360
+ ,.fragment= ""
361
+ ,.request_path= "/chunked_w_trailing_headers"
362
+ ,.request_url= "/chunked_w_trailing_headers"
363
+ ,.num_headers= 3
364
+ ,.headers=
365
+ { { "Transfer-Encoding", "chunked" }
366
+ , { "Vary", "*" }
367
+ , { "Content-Type", "text/plain" }
368
+ }
369
+ ,.body= "hello world"
370
+ ,.num_chunks_complete= 3
371
+ ,.chunk_lengths= { 5, 6 }
372
+ }
373
+
374
+ #define CHUNKED_W_BULLSHIT_AFTER_LENGTH 11
375
+ , {.name= "with bullshit after the length"
376
+ ,.type= HTTP_REQUEST
377
+ ,.raw= "POST /chunked_w_bullshit_after_length HTTP/1.1\r\n"
378
+ "Transfer-Encoding: chunked\r\n"
379
+ "\r\n"
380
+ "5; ihatew3;whatthefuck=aretheseparametersfor\r\nhello\r\n"
381
+ "6; blahblah; blah\r\n world\r\n"
382
+ "0\r\n"
383
+ "\r\n"
384
+ ,.should_keep_alive= TRUE
385
+ ,.message_complete_on_eof= FALSE
386
+ ,.http_major= 1
387
+ ,.http_minor= 1
388
+ ,.method= HTTP_POST
389
+ ,.query_string= ""
390
+ ,.fragment= ""
391
+ ,.request_path= "/chunked_w_bullshit_after_length"
392
+ ,.request_url= "/chunked_w_bullshit_after_length"
393
+ ,.num_headers= 1
394
+ ,.headers=
395
+ { { "Transfer-Encoding", "chunked" }
396
+ }
397
+ ,.body= "hello world"
398
+ ,.num_chunks_complete= 3
399
+ ,.chunk_lengths= { 5, 6 }
400
+ }
401
+
402
+ #define WITH_QUOTES 12
403
+ , {.name= "with quotes"
404
+ ,.type= HTTP_REQUEST
405
+ ,.raw= "GET /with_\"stupid\"_quotes?foo=\"bar\" HTTP/1.1\r\n\r\n"
406
+ ,.should_keep_alive= TRUE
407
+ ,.message_complete_on_eof= FALSE
408
+ ,.http_major= 1
409
+ ,.http_minor= 1
410
+ ,.method= HTTP_GET
411
+ ,.query_string= "foo=\"bar\""
412
+ ,.fragment= ""
413
+ ,.request_path= "/with_\"stupid\"_quotes"
414
+ ,.request_url= "/with_\"stupid\"_quotes?foo=\"bar\""
415
+ ,.num_headers= 0
416
+ ,.headers= { }
417
+ ,.body= ""
418
+ }
419
+
420
+ #define APACHEBENCH_GET 13
421
+ /* The server receiving this request SHOULD NOT wait for EOF
422
+ * to know that content-length == 0.
423
+ * How to represent this in a unit test? message_complete_on_eof
424
+ * Compare with NO_CONTENT_LENGTH_RESPONSE.
425
+ */
426
+ , {.name = "apachebench get"
427
+ ,.type= HTTP_REQUEST
428
+ ,.raw= "GET /test HTTP/1.0\r\n"
429
+ "Host: 0.0.0.0:5000\r\n"
430
+ "User-Agent: ApacheBench/2.3\r\n"
431
+ "Accept: */*\r\n\r\n"
432
+ ,.should_keep_alive= FALSE
433
+ ,.message_complete_on_eof= FALSE
434
+ ,.http_major= 1
435
+ ,.http_minor= 0
436
+ ,.method= HTTP_GET
437
+ ,.query_string= ""
438
+ ,.fragment= ""
439
+ ,.request_path= "/test"
440
+ ,.request_url= "/test"
441
+ ,.num_headers= 3
442
+ ,.headers= { { "Host", "0.0.0.0:5000" }
443
+ , { "User-Agent", "ApacheBench/2.3" }
444
+ , { "Accept", "*/*" }
445
+ }
446
+ ,.body= ""
447
+ }
448
+
449
+ #define QUERY_URL_WITH_QUESTION_MARK_GET 14
450
+ /* Some clients include '?' characters in query strings.
451
+ */
452
+ , {.name = "query url with question mark"
453
+ ,.type= HTTP_REQUEST
454
+ ,.raw= "GET /test.cgi?foo=bar?baz HTTP/1.1\r\n\r\n"
455
+ ,.should_keep_alive= TRUE
456
+ ,.message_complete_on_eof= FALSE
457
+ ,.http_major= 1
458
+ ,.http_minor= 1
459
+ ,.method= HTTP_GET
460
+ ,.query_string= "foo=bar?baz"
461
+ ,.fragment= ""
462
+ ,.request_path= "/test.cgi"
463
+ ,.request_url= "/test.cgi?foo=bar?baz"
464
+ ,.num_headers= 0
465
+ ,.headers= {}
466
+ ,.body= ""
467
+ }
468
+
469
+ #define PREFIX_NEWLINE_GET 15
470
+ /* Some clients, especially after a POST in a keep-alive connection,
471
+ * will send an extra CRLF before the next request
472
+ */
473
+ , {.name = "newline prefix get"
474
+ ,.type= HTTP_REQUEST
475
+ ,.raw= "\r\nGET /test HTTP/1.1\r\n\r\n"
476
+ ,.should_keep_alive= TRUE
477
+ ,.message_complete_on_eof= FALSE
478
+ ,.http_major= 1
479
+ ,.http_minor= 1
480
+ ,.method= HTTP_GET
481
+ ,.query_string= ""
482
+ ,.fragment= ""
483
+ ,.request_path= "/test"
484
+ ,.request_url= "/test"
485
+ ,.num_headers= 0
486
+ ,.headers= { }
487
+ ,.body= ""
488
+ }
489
+
490
+ #define UPGRADE_REQUEST 16
491
+ , {.name = "upgrade request"
492
+ ,.type= HTTP_REQUEST
493
+ ,.raw= "GET /demo HTTP/1.1\r\n"
494
+ "Host: example.com\r\n"
495
+ "Connection: Upgrade\r\n"
496
+ "Sec-WebSocket-Key2: 12998 5 Y3 1 .P00\r\n"
497
+ "Sec-WebSocket-Protocol: sample\r\n"
498
+ "Upgrade: WebSocket\r\n"
499
+ "Sec-WebSocket-Key1: 4 @1 46546xW%0l 1 5\r\n"
500
+ "Origin: http://example.com\r\n"
501
+ "\r\n"
502
+ "Hot diggity dogg"
503
+ ,.should_keep_alive= TRUE
504
+ ,.message_complete_on_eof= FALSE
505
+ ,.http_major= 1
506
+ ,.http_minor= 1
507
+ ,.method= HTTP_GET
508
+ ,.query_string= ""
509
+ ,.fragment= ""
510
+ ,.request_path= "/demo"
511
+ ,.request_url= "/demo"
512
+ ,.num_headers= 7
513
+ ,.upgrade="Hot diggity dogg"
514
+ ,.headers= { { "Host", "example.com" }
515
+ , { "Connection", "Upgrade" }
516
+ , { "Sec-WebSocket-Key2", "12998 5 Y3 1 .P00" }
517
+ , { "Sec-WebSocket-Protocol", "sample" }
518
+ , { "Upgrade", "WebSocket" }
519
+ , { "Sec-WebSocket-Key1", "4 @1 46546xW%0l 1 5" }
520
+ , { "Origin", "http://example.com" }
521
+ }
522
+ ,.body= ""
523
+ }
524
+
525
+ #define CONNECT_REQUEST 17
526
+ , {.name = "connect request"
527
+ ,.type= HTTP_REQUEST
528
+ ,.raw= "CONNECT 0-home0.netscape.com:443 HTTP/1.0\r\n"
529
+ "User-agent: Mozilla/1.1N\r\n"
530
+ "Proxy-authorization: basic aGVsbG86d29ybGQ=\r\n"
531
+ "\r\n"
532
+ "some data\r\n"
533
+ "and yet even more data"
534
+ ,.should_keep_alive= FALSE
535
+ ,.message_complete_on_eof= FALSE
536
+ ,.http_major= 1
537
+ ,.http_minor= 0
538
+ ,.method= HTTP_CONNECT
539
+ ,.query_string= ""
540
+ ,.fragment= ""
541
+ ,.request_path= ""
542
+ ,.request_url= "0-home0.netscape.com:443"
543
+ ,.num_headers= 2
544
+ ,.upgrade="some data\r\nand yet even more data"
545
+ ,.headers= { { "User-agent", "Mozilla/1.1N" }
546
+ , { "Proxy-authorization", "basic aGVsbG86d29ybGQ=" }
547
+ }
548
+ ,.body= ""
549
+ }
550
+
551
+ #define REPORT_REQ 18
552
+ , {.name= "report request"
553
+ ,.type= HTTP_REQUEST
554
+ ,.raw= "REPORT /test HTTP/1.1\r\n"
555
+ "\r\n"
556
+ ,.should_keep_alive= TRUE
557
+ ,.message_complete_on_eof= FALSE
558
+ ,.http_major= 1
559
+ ,.http_minor= 1
560
+ ,.method= HTTP_REPORT
561
+ ,.query_string= ""
562
+ ,.fragment= ""
563
+ ,.request_path= "/test"
564
+ ,.request_url= "/test"
565
+ ,.num_headers= 0
566
+ ,.headers= {}
567
+ ,.body= ""
568
+ }
569
+
570
+ #define NO_HTTP_VERSION 19
571
+ , {.name= "request with no http version"
572
+ ,.type= HTTP_REQUEST
573
+ ,.raw= "GET /\r\n"
574
+ "\r\n"
575
+ ,.should_keep_alive= FALSE
576
+ ,.message_complete_on_eof= FALSE
577
+ ,.http_major= 0
578
+ ,.http_minor= 9
579
+ ,.method= HTTP_GET
580
+ ,.query_string= ""
581
+ ,.fragment= ""
582
+ ,.request_path= "/"
583
+ ,.request_url= "/"
584
+ ,.num_headers= 0
585
+ ,.headers= {}
586
+ ,.body= ""
587
+ }
588
+
589
+ #define MSEARCH_REQ 20
590
+ , {.name= "m-search request"
591
+ ,.type= HTTP_REQUEST
592
+ ,.raw= "M-SEARCH * HTTP/1.1\r\n"
593
+ "HOST: 239.255.255.250:1900\r\n"
594
+ "MAN: \"ssdp:discover\"\r\n"
595
+ "ST: \"ssdp:all\"\r\n"
596
+ "\r\n"
597
+ ,.should_keep_alive= TRUE
598
+ ,.message_complete_on_eof= FALSE
599
+ ,.http_major= 1
600
+ ,.http_minor= 1
601
+ ,.method= HTTP_MSEARCH
602
+ ,.query_string= ""
603
+ ,.fragment= ""
604
+ ,.request_path= "*"
605
+ ,.request_url= "*"
606
+ ,.num_headers= 3
607
+ ,.headers= { { "HOST", "239.255.255.250:1900" }
608
+ , { "MAN", "\"ssdp:discover\"" }
609
+ , { "ST", "\"ssdp:all\"" }
610
+ }
611
+ ,.body= ""
612
+ }
613
+
614
+ #define LINE_FOLDING_IN_HEADER 21
615
+ , {.name= "line folding in header value"
616
+ ,.type= HTTP_REQUEST
617
+ ,.raw= "GET / HTTP/1.1\r\n"
618
+ "Line1: abc\r\n"
619
+ "\tdef\r\n"
620
+ " ghi\r\n"
621
+ "\t\tjkl\r\n"
622
+ " mno \r\n"
623
+ "\t \tqrs\r\n"
624
+ "Line2: \t line2\t\r\n"
625
+ "Line3:\r\n"
626
+ " line3\r\n"
627
+ "Line4: \r\n"
628
+ " \r\n"
629
+ "Connection:\r\n"
630
+ " close\r\n"
631
+ "\r\n"
632
+ ,.should_keep_alive= FALSE
633
+ ,.message_complete_on_eof= FALSE
634
+ ,.http_major= 1
635
+ ,.http_minor= 1
636
+ ,.method= HTTP_GET
637
+ ,.query_string= ""
638
+ ,.fragment= ""
639
+ ,.request_path= "/"
640
+ ,.request_url= "/"
641
+ ,.num_headers= 5
642
+ ,.headers= { { "Line1", "abc\tdef ghi\t\tjkl mno \t \tqrs" }
643
+ , { "Line2", "line2\t" }
644
+ , { "Line3", "line3" }
645
+ , { "Line4", "" }
646
+ , { "Connection", "close" },
647
+ }
648
+ ,.body= ""
649
+ }
650
+
651
+
652
+ #define QUERY_TERMINATED_HOST 22
653
+ , {.name= "host terminated by a query string"
654
+ ,.type= HTTP_REQUEST
655
+ ,.raw= "GET http://hypnotoad.org?hail=all HTTP/1.1\r\n"
656
+ "\r\n"
657
+ ,.should_keep_alive= TRUE
658
+ ,.message_complete_on_eof= FALSE
659
+ ,.http_major= 1
660
+ ,.http_minor= 1
661
+ ,.method= HTTP_GET
662
+ ,.query_string= "hail=all"
663
+ ,.fragment= ""
664
+ ,.request_path= ""
665
+ ,.request_url= "http://hypnotoad.org?hail=all"
666
+ ,.host= "hypnotoad.org"
667
+ ,.num_headers= 0
668
+ ,.headers= { }
669
+ ,.body= ""
670
+ }
671
+
672
+ #define QUERY_TERMINATED_HOSTPORT 23
673
+ , {.name= "host:port terminated by a query string"
674
+ ,.type= HTTP_REQUEST
675
+ ,.raw= "GET http://hypnotoad.org:1234?hail=all HTTP/1.1\r\n"
676
+ "\r\n"
677
+ ,.should_keep_alive= TRUE
678
+ ,.message_complete_on_eof= FALSE
679
+ ,.http_major= 1
680
+ ,.http_minor= 1
681
+ ,.method= HTTP_GET
682
+ ,.query_string= "hail=all"
683
+ ,.fragment= ""
684
+ ,.request_path= ""
685
+ ,.request_url= "http://hypnotoad.org:1234?hail=all"
686
+ ,.host= "hypnotoad.org"
687
+ ,.port= 1234
688
+ ,.num_headers= 0
689
+ ,.headers= { }
690
+ ,.body= ""
691
+ }
692
+
693
+ #define SPACE_TERMINATED_HOSTPORT 24
694
+ , {.name= "host:port terminated by a space"
695
+ ,.type= HTTP_REQUEST
696
+ ,.raw= "GET http://hypnotoad.org:1234 HTTP/1.1\r\n"
697
+ "\r\n"
698
+ ,.should_keep_alive= TRUE
699
+ ,.message_complete_on_eof= FALSE
700
+ ,.http_major= 1
701
+ ,.http_minor= 1
702
+ ,.method= HTTP_GET
703
+ ,.query_string= ""
704
+ ,.fragment= ""
705
+ ,.request_path= ""
706
+ ,.request_url= "http://hypnotoad.org:1234"
707
+ ,.host= "hypnotoad.org"
708
+ ,.port= 1234
709
+ ,.num_headers= 0
710
+ ,.headers= { }
711
+ ,.body= ""
712
+ }
713
+
714
+ #define PATCH_REQ 25
715
+ , {.name = "PATCH request"
716
+ ,.type= HTTP_REQUEST
717
+ ,.raw= "PATCH /file.txt HTTP/1.1\r\n"
718
+ "Host: www.example.com\r\n"
719
+ "Content-Type: application/example\r\n"
720
+ "If-Match: \"e0023aa4e\"\r\n"
721
+ "Content-Length: 10\r\n"
722
+ "\r\n"
723
+ "cccccccccc"
724
+ ,.should_keep_alive= TRUE
725
+ ,.message_complete_on_eof= FALSE
726
+ ,.http_major= 1
727
+ ,.http_minor= 1
728
+ ,.method= HTTP_PATCH
729
+ ,.query_string= ""
730
+ ,.fragment= ""
731
+ ,.request_path= "/file.txt"
732
+ ,.request_url= "/file.txt"
733
+ ,.num_headers= 4
734
+ ,.headers= { { "Host", "www.example.com" }
735
+ , { "Content-Type", "application/example" }
736
+ , { "If-Match", "\"e0023aa4e\"" }
737
+ , { "Content-Length", "10" }
738
+ }
739
+ ,.body= "cccccccccc"
740
+ }
741
+
742
+ #define CONNECT_CAPS_REQUEST 26
743
+ , {.name = "connect caps request"
744
+ ,.type= HTTP_REQUEST
745
+ ,.raw= "CONNECT HOME0.NETSCAPE.COM:443 HTTP/1.0\r\n"
746
+ "User-agent: Mozilla/1.1N\r\n"
747
+ "Proxy-authorization: basic aGVsbG86d29ybGQ=\r\n"
748
+ "\r\n"
749
+ ,.should_keep_alive= FALSE
750
+ ,.message_complete_on_eof= FALSE
751
+ ,.http_major= 1
752
+ ,.http_minor= 0
753
+ ,.method= HTTP_CONNECT
754
+ ,.query_string= ""
755
+ ,.fragment= ""
756
+ ,.request_path= ""
757
+ ,.request_url= "HOME0.NETSCAPE.COM:443"
758
+ ,.num_headers= 2
759
+ ,.upgrade=""
760
+ ,.headers= { { "User-agent", "Mozilla/1.1N" }
761
+ , { "Proxy-authorization", "basic aGVsbG86d29ybGQ=" }
762
+ }
763
+ ,.body= ""
764
+ }
765
+
766
+ #if !HTTP_PARSER_STRICT
767
+ #define UTF8_PATH_REQ 27
768
+ , {.name= "utf-8 path request"
769
+ ,.type= HTTP_REQUEST
770
+ ,.raw= "GET /δ¶/δt/pope?q=1#narf HTTP/1.1\r\n"
771
+ "Host: github.com\r\n"
772
+ "\r\n"
773
+ ,.should_keep_alive= TRUE
774
+ ,.message_complete_on_eof= FALSE
775
+ ,.http_major= 1
776
+ ,.http_minor= 1
777
+ ,.method= HTTP_GET
778
+ ,.query_string= "q=1"
779
+ ,.fragment= "narf"
780
+ ,.request_path= "/δ¶/δt/pope"
781
+ ,.request_url= "/δ¶/δt/pope?q=1#narf"
782
+ ,.num_headers= 1
783
+ ,.headers= { {"Host", "github.com" }
784
+ }
785
+ ,.body= ""
786
+ }
787
+
788
+ #define HOSTNAME_UNDERSCORE 28
789
+ , {.name = "hostname underscore"
790
+ ,.type= HTTP_REQUEST
791
+ ,.raw= "CONNECT home_0.netscape.com:443 HTTP/1.0\r\n"
792
+ "User-agent: Mozilla/1.1N\r\n"
793
+ "Proxy-authorization: basic aGVsbG86d29ybGQ=\r\n"
794
+ "\r\n"
795
+ ,.should_keep_alive= FALSE
796
+ ,.message_complete_on_eof= FALSE
797
+ ,.http_major= 1
798
+ ,.http_minor= 0
799
+ ,.method= HTTP_CONNECT
800
+ ,.query_string= ""
801
+ ,.fragment= ""
802
+ ,.request_path= ""
803
+ ,.request_url= "home_0.netscape.com:443"
804
+ ,.num_headers= 2
805
+ ,.upgrade=""
806
+ ,.headers= { { "User-agent", "Mozilla/1.1N" }
807
+ , { "Proxy-authorization", "basic aGVsbG86d29ybGQ=" }
808
+ }
809
+ ,.body= ""
810
+ }
811
+ #endif /* !HTTP_PARSER_STRICT */
812
+
813
+ /* see https://github.com/ry/http-parser/issues/47 */
814
+ #define EAT_TRAILING_CRLF_NO_CONNECTION_CLOSE 29
815
+ , {.name = "eat CRLF between requests, no \"Connection: close\" header"
816
+ ,.raw= "POST / HTTP/1.1\r\n"
817
+ "Host: www.example.com\r\n"
818
+ "Content-Type: application/x-www-form-urlencoded\r\n"
819
+ "Content-Length: 4\r\n"
820
+ "\r\n"
821
+ "q=42\r\n" /* note the trailing CRLF */
822
+ ,.should_keep_alive= TRUE
823
+ ,.message_complete_on_eof= FALSE
824
+ ,.http_major= 1
825
+ ,.http_minor= 1
826
+ ,.method= HTTP_POST
827
+ ,.query_string= ""
828
+ ,.fragment= ""
829
+ ,.request_path= "/"
830
+ ,.request_url= "/"
831
+ ,.num_headers= 3
832
+ ,.upgrade= 0
833
+ ,.headers= { { "Host", "www.example.com" }
834
+ , { "Content-Type", "application/x-www-form-urlencoded" }
835
+ , { "Content-Length", "4" }
836
+ }
837
+ ,.body= "q=42"
838
+ }
839
+
840
+ /* see https://github.com/ry/http-parser/issues/47 */
841
+ #define EAT_TRAILING_CRLF_WITH_CONNECTION_CLOSE 30
842
+ , {.name = "eat CRLF between requests even if \"Connection: close\" is set"
843
+ ,.raw= "POST / HTTP/1.1\r\n"
844
+ "Host: www.example.com\r\n"
845
+ "Content-Type: application/x-www-form-urlencoded\r\n"
846
+ "Content-Length: 4\r\n"
847
+ "Connection: close\r\n"
848
+ "\r\n"
849
+ "q=42\r\n" /* note the trailing CRLF */
850
+ ,.should_keep_alive= FALSE
851
+ ,.message_complete_on_eof= FALSE /* input buffer isn't empty when on_message_complete is called */
852
+ ,.http_major= 1
853
+ ,.http_minor= 1
854
+ ,.method= HTTP_POST
855
+ ,.query_string= ""
856
+ ,.fragment= ""
857
+ ,.request_path= "/"
858
+ ,.request_url= "/"
859
+ ,.num_headers= 4
860
+ ,.upgrade= 0
861
+ ,.headers= { { "Host", "www.example.com" }
862
+ , { "Content-Type", "application/x-www-form-urlencoded" }
863
+ , { "Content-Length", "4" }
864
+ , { "Connection", "close" }
865
+ }
866
+ ,.body= "q=42"
867
+ }
868
+
869
+ #define PURGE_REQ 31
870
+ , {.name = "PURGE request"
871
+ ,.type= HTTP_REQUEST
872
+ ,.raw= "PURGE /file.txt HTTP/1.1\r\n"
873
+ "Host: www.example.com\r\n"
874
+ "\r\n"
875
+ ,.should_keep_alive= TRUE
876
+ ,.message_complete_on_eof= FALSE
877
+ ,.http_major= 1
878
+ ,.http_minor= 1
879
+ ,.method= HTTP_PURGE
880
+ ,.query_string= ""
881
+ ,.fragment= ""
882
+ ,.request_path= "/file.txt"
883
+ ,.request_url= "/file.txt"
884
+ ,.num_headers= 1
885
+ ,.headers= { { "Host", "www.example.com" } }
886
+ ,.body= ""
887
+ }
888
+
889
+ #define SEARCH_REQ 32
890
+ , {.name = "SEARCH request"
891
+ ,.type= HTTP_REQUEST
892
+ ,.raw= "SEARCH / HTTP/1.1\r\n"
893
+ "Host: www.example.com\r\n"
894
+ "\r\n"
895
+ ,.should_keep_alive= TRUE
896
+ ,.message_complete_on_eof= FALSE
897
+ ,.http_major= 1
898
+ ,.http_minor= 1
899
+ ,.method= HTTP_SEARCH
900
+ ,.query_string= ""
901
+ ,.fragment= ""
902
+ ,.request_path= "/"
903
+ ,.request_url= "/"
904
+ ,.num_headers= 1
905
+ ,.headers= { { "Host", "www.example.com" } }
906
+ ,.body= ""
907
+ }
908
+
909
+ #define PROXY_WITH_BASIC_AUTH 33
910
+ , {.name= "host:port and basic_auth"
911
+ ,.type= HTTP_REQUEST
912
+ ,.raw= "GET http://a%12:b!&*$@hypnotoad.org:1234/toto HTTP/1.1\r\n"
913
+ "\r\n"
914
+ ,.should_keep_alive= TRUE
915
+ ,.message_complete_on_eof= FALSE
916
+ ,.http_major= 1
917
+ ,.http_minor= 1
918
+ ,.method= HTTP_GET
919
+ ,.fragment= ""
920
+ ,.request_path= "/toto"
921
+ ,.request_url= "http://a%12:b!&*$@hypnotoad.org:1234/toto"
922
+ ,.host= "hypnotoad.org"
923
+ ,.userinfo= "a%12:b!&*$"
924
+ ,.port= 1234
925
+ ,.num_headers= 0
926
+ ,.headers= { }
927
+ ,.body= ""
928
+ }
929
+
930
+ #define LINE_FOLDING_IN_HEADER_WITH_LF 34
931
+ , {.name= "line folding in header value"
932
+ ,.type= HTTP_REQUEST
933
+ ,.raw= "GET / HTTP/1.1\n"
934
+ "Line1: abc\n"
935
+ "\tdef\n"
936
+ " ghi\n"
937
+ "\t\tjkl\n"
938
+ " mno \n"
939
+ "\t \tqrs\n"
940
+ "Line2: \t line2\t\n"
941
+ "Line3:\n"
942
+ " line3\n"
943
+ "Line4: \n"
944
+ " \n"
945
+ "Connection:\n"
946
+ " close\n"
947
+ "\n"
948
+ ,.should_keep_alive= FALSE
949
+ ,.message_complete_on_eof= FALSE
950
+ ,.http_major= 1
951
+ ,.http_minor= 1
952
+ ,.method= HTTP_GET
953
+ ,.query_string= ""
954
+ ,.fragment= ""
955
+ ,.request_path= "/"
956
+ ,.request_url= "/"
957
+ ,.num_headers= 5
958
+ ,.headers= { { "Line1", "abc\tdef ghi\t\tjkl mno \t \tqrs" }
959
+ , { "Line2", "line2\t" }
960
+ , { "Line3", "line3" }
961
+ , { "Line4", "" }
962
+ , { "Connection", "close" },
963
+ }
964
+ ,.body= ""
965
+ }
966
+
967
+ #define CONNECTION_MULTI 35
968
+ , {.name = "multiple connection header values with folding"
969
+ ,.type= HTTP_REQUEST
970
+ ,.raw= "GET /demo HTTP/1.1\r\n"
971
+ "Host: example.com\r\n"
972
+ "Connection: Something,\r\n"
973
+ " Upgrade, ,Keep-Alive\r\n"
974
+ "Sec-WebSocket-Key2: 12998 5 Y3 1 .P00\r\n"
975
+ "Sec-WebSocket-Protocol: sample\r\n"
976
+ "Upgrade: WebSocket\r\n"
977
+ "Sec-WebSocket-Key1: 4 @1 46546xW%0l 1 5\r\n"
978
+ "Origin: http://example.com\r\n"
979
+ "\r\n"
980
+ "Hot diggity dogg"
981
+ ,.should_keep_alive= TRUE
982
+ ,.message_complete_on_eof= FALSE
983
+ ,.http_major= 1
984
+ ,.http_minor= 1
985
+ ,.method= HTTP_GET
986
+ ,.query_string= ""
987
+ ,.fragment= ""
988
+ ,.request_path= "/demo"
989
+ ,.request_url= "/demo"
990
+ ,.num_headers= 7
991
+ ,.upgrade="Hot diggity dogg"
992
+ ,.headers= { { "Host", "example.com" }
993
+ , { "Connection", "Something, Upgrade, ,Keep-Alive" }
994
+ , { "Sec-WebSocket-Key2", "12998 5 Y3 1 .P00" }
995
+ , { "Sec-WebSocket-Protocol", "sample" }
996
+ , { "Upgrade", "WebSocket" }
997
+ , { "Sec-WebSocket-Key1", "4 @1 46546xW%0l 1 5" }
998
+ , { "Origin", "http://example.com" }
999
+ }
1000
+ ,.body= ""
1001
+ }
1002
+
1003
+ #define CONNECTION_MULTI_LWS 36
1004
+ , {.name = "multiple connection header values with folding and lws"
1005
+ ,.type= HTTP_REQUEST
1006
+ ,.raw= "GET /demo HTTP/1.1\r\n"
1007
+ "Connection: keep-alive, upgrade\r\n"
1008
+ "Upgrade: WebSocket\r\n"
1009
+ "\r\n"
1010
+ "Hot diggity dogg"
1011
+ ,.should_keep_alive= TRUE
1012
+ ,.message_complete_on_eof= FALSE
1013
+ ,.http_major= 1
1014
+ ,.http_minor= 1
1015
+ ,.method= HTTP_GET
1016
+ ,.query_string= ""
1017
+ ,.fragment= ""
1018
+ ,.request_path= "/demo"
1019
+ ,.request_url= "/demo"
1020
+ ,.num_headers= 2
1021
+ ,.upgrade="Hot diggity dogg"
1022
+ ,.headers= { { "Connection", "keep-alive, upgrade" }
1023
+ , { "Upgrade", "WebSocket" }
1024
+ }
1025
+ ,.body= ""
1026
+ }
1027
+
1028
+ #define CONNECTION_MULTI_LWS_CRLF 37
1029
+ , {.name = "multiple connection header values with folding and lws"
1030
+ ,.type= HTTP_REQUEST
1031
+ ,.raw= "GET /demo HTTP/1.1\r\n"
1032
+ "Connection: keep-alive, \r\n upgrade\r\n"
1033
+ "Upgrade: WebSocket\r\n"
1034
+ "\r\n"
1035
+ "Hot diggity dogg"
1036
+ ,.should_keep_alive= TRUE
1037
+ ,.message_complete_on_eof= FALSE
1038
+ ,.http_major= 1
1039
+ ,.http_minor= 1
1040
+ ,.method= HTTP_GET
1041
+ ,.query_string= ""
1042
+ ,.fragment= ""
1043
+ ,.request_path= "/demo"
1044
+ ,.request_url= "/demo"
1045
+ ,.num_headers= 2
1046
+ ,.upgrade="Hot diggity dogg"
1047
+ ,.headers= { { "Connection", "keep-alive, upgrade" }
1048
+ , { "Upgrade", "WebSocket" }
1049
+ }
1050
+ ,.body= ""
1051
+ }
1052
+
1053
+ #define UPGRADE_POST_REQUEST 38
1054
+ , {.name = "upgrade post request"
1055
+ ,.type= HTTP_REQUEST
1056
+ ,.raw= "POST /demo HTTP/1.1\r\n"
1057
+ "Host: example.com\r\n"
1058
+ "Connection: Upgrade\r\n"
1059
+ "Upgrade: HTTP/2.0\r\n"
1060
+ "Content-Length: 15\r\n"
1061
+ "\r\n"
1062
+ "sweet post body"
1063
+ "Hot diggity dogg"
1064
+ ,.should_keep_alive= TRUE
1065
+ ,.message_complete_on_eof= FALSE
1066
+ ,.http_major= 1
1067
+ ,.http_minor= 1
1068
+ ,.method= HTTP_POST
1069
+ ,.request_path= "/demo"
1070
+ ,.request_url= "/demo"
1071
+ ,.num_headers= 4
1072
+ ,.upgrade="Hot diggity dogg"
1073
+ ,.headers= { { "Host", "example.com" }
1074
+ , { "Connection", "Upgrade" }
1075
+ , { "Upgrade", "HTTP/2.0" }
1076
+ , { "Content-Length", "15" }
1077
+ }
1078
+ ,.body= "sweet post body"
1079
+ }
1080
+
1081
+ #define CONNECT_WITH_BODY_REQUEST 39
1082
+ , {.name = "connect with body request"
1083
+ ,.type= HTTP_REQUEST
1084
+ ,.raw= "CONNECT foo.bar.com:443 HTTP/1.0\r\n"
1085
+ "User-agent: Mozilla/1.1N\r\n"
1086
+ "Proxy-authorization: basic aGVsbG86d29ybGQ=\r\n"
1087
+ "Content-Length: 10\r\n"
1088
+ "\r\n"
1089
+ "blarfcicle"
1090
+ ,.should_keep_alive= FALSE
1091
+ ,.message_complete_on_eof= FALSE
1092
+ ,.http_major= 1
1093
+ ,.http_minor= 0
1094
+ ,.method= HTTP_CONNECT
1095
+ ,.request_url= "foo.bar.com:443"
1096
+ ,.num_headers= 3
1097
+ ,.upgrade="blarfcicle"
1098
+ ,.headers= { { "User-agent", "Mozilla/1.1N" }
1099
+ , { "Proxy-authorization", "basic aGVsbG86d29ybGQ=" }
1100
+ , { "Content-Length", "10" }
1101
+ }
1102
+ ,.body= ""
1103
+ }
1104
+
1105
+ /* Examples from the Internet draft for LINK/UNLINK methods:
1106
+ * https://tools.ietf.org/id/draft-snell-link-method-01.html#rfc.section.5
1107
+ */
1108
+
1109
+ #define LINK_REQUEST 40
1110
+ , {.name = "link request"
1111
+ ,.type= HTTP_REQUEST
1112
+ ,.raw= "LINK /images/my_dog.jpg HTTP/1.1\r\n"
1113
+ "Host: example.com\r\n"
1114
+ "Link: <http://example.com/profiles/joe>; rel=\"tag\"\r\n"
1115
+ "Link: <http://example.com/profiles/sally>; rel=\"tag\"\r\n"
1116
+ "\r\n"
1117
+ ,.should_keep_alive= TRUE
1118
+ ,.message_complete_on_eof= FALSE
1119
+ ,.http_major= 1
1120
+ ,.http_minor= 1
1121
+ ,.method= HTTP_LINK
1122
+ ,.request_path= "/images/my_dog.jpg"
1123
+ ,.request_url= "/images/my_dog.jpg"
1124
+ ,.query_string= ""
1125
+ ,.fragment= ""
1126
+ ,.num_headers= 3
1127
+ ,.headers= { { "Host", "example.com" }
1128
+ , { "Link", "<http://example.com/profiles/joe>; rel=\"tag\"" }
1129
+ , { "Link", "<http://example.com/profiles/sally>; rel=\"tag\"" }
1130
+ }
1131
+ ,.body= ""
1132
+ }
1133
+
1134
+ #define UNLINK_REQUEST 41
1135
+ , {.name = "unlink request"
1136
+ ,.type= HTTP_REQUEST
1137
+ ,.raw= "UNLINK /images/my_dog.jpg HTTP/1.1\r\n"
1138
+ "Host: example.com\r\n"
1139
+ "Link: <http://example.com/profiles/sally>; rel=\"tag\"\r\n"
1140
+ "\r\n"
1141
+ ,.should_keep_alive= TRUE
1142
+ ,.message_complete_on_eof= FALSE
1143
+ ,.http_major= 1
1144
+ ,.http_minor= 1
1145
+ ,.method= HTTP_UNLINK
1146
+ ,.request_path= "/images/my_dog.jpg"
1147
+ ,.request_url= "/images/my_dog.jpg"
1148
+ ,.query_string= ""
1149
+ ,.fragment= ""
1150
+ ,.num_headers= 2
1151
+ ,.headers= { { "Host", "example.com" }
1152
+ , { "Link", "<http://example.com/profiles/sally>; rel=\"tag\"" }
1153
+ }
1154
+ ,.body= ""
1155
+ }
1156
+
1157
+ #define SOURCE_REQUEST 42
1158
+ , {.name = "source request"
1159
+ ,.type= HTTP_REQUEST
1160
+ ,.raw= "SOURCE /music/sweet/music HTTP/1.1\r\n"
1161
+ "Host: example.com\r\n"
1162
+ "\r\n"
1163
+ ,.should_keep_alive= TRUE
1164
+ ,.message_complete_on_eof= FALSE
1165
+ ,.http_major= 1
1166
+ ,.http_minor= 1
1167
+ ,.method= HTTP_SOURCE
1168
+ ,.request_path= "/music/sweet/music"
1169
+ ,.request_url= "/music/sweet/music"
1170
+ ,.query_string= ""
1171
+ ,.fragment= ""
1172
+ ,.num_headers= 1
1173
+ ,.headers= { { "Host", "example.com" } }
1174
+ ,.body= ""
1175
+ }
1176
+ };
1177
+
1178
+ /* * R E S P O N S E S * */
1179
+ const struct message responses[] =
1180
+ #define GOOGLE_301 0
1181
+ { {.name= "google 301"
1182
+ ,.type= HTTP_RESPONSE
1183
+ ,.raw= "HTTP/1.1 301 Moved Permanently\r\n"
1184
+ "Location: http://www.google.com/\r\n"
1185
+ "Content-Type: text/html; charset=UTF-8\r\n"
1186
+ "Date: Sun, 26 Apr 2009 11:11:49 GMT\r\n"
1187
+ "Expires: Tue, 26 May 2009 11:11:49 GMT\r\n"
1188
+ "X-$PrototypeBI-Version: 1.6.0.3\r\n" /* $ char in header field */
1189
+ "Cache-Control: public, max-age=2592000\r\n"
1190
+ "Server: gws\r\n"
1191
+ "Content-Length: 219 \r\n"
1192
+ "\r\n"
1193
+ "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n"
1194
+ "<TITLE>301 Moved</TITLE></HEAD><BODY>\n"
1195
+ "<H1>301 Moved</H1>\n"
1196
+ "The document has moved\n"
1197
+ "<A HREF=\"http://www.google.com/\">here</A>.\r\n"
1198
+ "</BODY></HTML>\r\n"
1199
+ ,.should_keep_alive= TRUE
1200
+ ,.message_complete_on_eof= FALSE
1201
+ ,.http_major= 1
1202
+ ,.http_minor= 1
1203
+ ,.status_code= 301
1204
+ ,.response_status= "Moved Permanently"
1205
+ ,.num_headers= 8
1206
+ ,.headers=
1207
+ { { "Location", "http://www.google.com/" }
1208
+ , { "Content-Type", "text/html; charset=UTF-8" }
1209
+ , { "Date", "Sun, 26 Apr 2009 11:11:49 GMT" }
1210
+ , { "Expires", "Tue, 26 May 2009 11:11:49 GMT" }
1211
+ , { "X-$PrototypeBI-Version", "1.6.0.3" }
1212
+ , { "Cache-Control", "public, max-age=2592000" }
1213
+ , { "Server", "gws" }
1214
+ , { "Content-Length", "219 " }
1215
+ }
1216
+ ,.body= "<HTML><HEAD><meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n"
1217
+ "<TITLE>301 Moved</TITLE></HEAD><BODY>\n"
1218
+ "<H1>301 Moved</H1>\n"
1219
+ "The document has moved\n"
1220
+ "<A HREF=\"http://www.google.com/\">here</A>.\r\n"
1221
+ "</BODY></HTML>\r\n"
1222
+ }
1223
+
1224
+ #define NO_CONTENT_LENGTH_RESPONSE 1
1225
+ /* The client should wait for the server's EOF. That is, when content-length
1226
+ * is not specified, and "Connection: close", the end of body is specified
1227
+ * by the EOF.
1228
+ * Compare with APACHEBENCH_GET
1229
+ */
1230
+ , {.name= "no content-length response"
1231
+ ,.type= HTTP_RESPONSE
1232
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1233
+ "Date: Tue, 04 Aug 2009 07:59:32 GMT\r\n"
1234
+ "Server: Apache\r\n"
1235
+ "X-Powered-By: Servlet/2.5 JSP/2.1\r\n"
1236
+ "Content-Type: text/xml; charset=utf-8\r\n"
1237
+ "Connection: close\r\n"
1238
+ "\r\n"
1239
+ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1240
+ "<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
1241
+ " <SOAP-ENV:Body>\n"
1242
+ " <SOAP-ENV:Fault>\n"
1243
+ " <faultcode>SOAP-ENV:Client</faultcode>\n"
1244
+ " <faultstring>Client Error</faultstring>\n"
1245
+ " </SOAP-ENV:Fault>\n"
1246
+ " </SOAP-ENV:Body>\n"
1247
+ "</SOAP-ENV:Envelope>"
1248
+ ,.should_keep_alive= FALSE
1249
+ ,.message_complete_on_eof= TRUE
1250
+ ,.http_major= 1
1251
+ ,.http_minor= 1
1252
+ ,.status_code= 200
1253
+ ,.response_status= "OK"
1254
+ ,.num_headers= 5
1255
+ ,.headers=
1256
+ { { "Date", "Tue, 04 Aug 2009 07:59:32 GMT" }
1257
+ , { "Server", "Apache" }
1258
+ , { "X-Powered-By", "Servlet/2.5 JSP/2.1" }
1259
+ , { "Content-Type", "text/xml; charset=utf-8" }
1260
+ , { "Connection", "close" }
1261
+ }
1262
+ ,.body= "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1263
+ "<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
1264
+ " <SOAP-ENV:Body>\n"
1265
+ " <SOAP-ENV:Fault>\n"
1266
+ " <faultcode>SOAP-ENV:Client</faultcode>\n"
1267
+ " <faultstring>Client Error</faultstring>\n"
1268
+ " </SOAP-ENV:Fault>\n"
1269
+ " </SOAP-ENV:Body>\n"
1270
+ "</SOAP-ENV:Envelope>"
1271
+ }
1272
+
1273
+ #define NO_HEADERS_NO_BODY_404 2
1274
+ , {.name= "404 no headers no body"
1275
+ ,.type= HTTP_RESPONSE
1276
+ ,.raw= "HTTP/1.1 404 Not Found\r\n\r\n"
1277
+ ,.should_keep_alive= FALSE
1278
+ ,.message_complete_on_eof= TRUE
1279
+ ,.http_major= 1
1280
+ ,.http_minor= 1
1281
+ ,.status_code= 404
1282
+ ,.response_status= "Not Found"
1283
+ ,.num_headers= 0
1284
+ ,.headers= {}
1285
+ ,.body_size= 0
1286
+ ,.body= ""
1287
+ }
1288
+
1289
+ #define NO_REASON_PHRASE 3
1290
+ , {.name= "301 no response phrase"
1291
+ ,.type= HTTP_RESPONSE
1292
+ ,.raw= "HTTP/1.1 301\r\n\r\n"
1293
+ ,.should_keep_alive = FALSE
1294
+ ,.message_complete_on_eof= TRUE
1295
+ ,.http_major= 1
1296
+ ,.http_minor= 1
1297
+ ,.status_code= 301
1298
+ ,.response_status= ""
1299
+ ,.num_headers= 0
1300
+ ,.headers= {}
1301
+ ,.body= ""
1302
+ }
1303
+
1304
+ #define TRAILING_SPACE_ON_CHUNKED_BODY 4
1305
+ , {.name="200 trailing space on chunked body"
1306
+ ,.type= HTTP_RESPONSE
1307
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1308
+ "Content-Type: text/plain\r\n"
1309
+ "Transfer-Encoding: chunked\r\n"
1310
+ "\r\n"
1311
+ "25 \r\n"
1312
+ "This is the data in the first chunk\r\n"
1313
+ "\r\n"
1314
+ "1C\r\n"
1315
+ "and this is the second one\r\n"
1316
+ "\r\n"
1317
+ "0 \r\n"
1318
+ "\r\n"
1319
+ ,.should_keep_alive= TRUE
1320
+ ,.message_complete_on_eof= FALSE
1321
+ ,.http_major= 1
1322
+ ,.http_minor= 1
1323
+ ,.status_code= 200
1324
+ ,.response_status= "OK"
1325
+ ,.num_headers= 2
1326
+ ,.headers=
1327
+ { {"Content-Type", "text/plain" }
1328
+ , {"Transfer-Encoding", "chunked" }
1329
+ }
1330
+ ,.body_size = 37+28
1331
+ ,.body =
1332
+ "This is the data in the first chunk\r\n"
1333
+ "and this is the second one\r\n"
1334
+ ,.num_chunks_complete= 3
1335
+ ,.chunk_lengths= { 0x25, 0x1c }
1336
+ }
1337
+
1338
+ #define NO_CARRIAGE_RET 5
1339
+ , {.name="no carriage ret"
1340
+ ,.type= HTTP_RESPONSE
1341
+ ,.raw= "HTTP/1.1 200 OK\n"
1342
+ "Content-Type: text/html; charset=utf-8\n"
1343
+ "Connection: close\n"
1344
+ "\n"
1345
+ "these headers are from http://news.ycombinator.com/"
1346
+ ,.should_keep_alive= FALSE
1347
+ ,.message_complete_on_eof= TRUE
1348
+ ,.http_major= 1
1349
+ ,.http_minor= 1
1350
+ ,.status_code= 200
1351
+ ,.response_status= "OK"
1352
+ ,.num_headers= 2
1353
+ ,.headers=
1354
+ { {"Content-Type", "text/html; charset=utf-8" }
1355
+ , {"Connection", "close" }
1356
+ }
1357
+ ,.body= "these headers are from http://news.ycombinator.com/"
1358
+ }
1359
+
1360
+ #define PROXY_CONNECTION 6
1361
+ , {.name="proxy connection"
1362
+ ,.type= HTTP_RESPONSE
1363
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1364
+ "Content-Type: text/html; charset=UTF-8\r\n"
1365
+ "Content-Length: 11\r\n"
1366
+ "Proxy-Connection: close\r\n"
1367
+ "Date: Thu, 31 Dec 2009 20:55:48 +0000\r\n"
1368
+ "\r\n"
1369
+ "hello world"
1370
+ ,.should_keep_alive= FALSE
1371
+ ,.message_complete_on_eof= FALSE
1372
+ ,.http_major= 1
1373
+ ,.http_minor= 1
1374
+ ,.status_code= 200
1375
+ ,.response_status= "OK"
1376
+ ,.num_headers= 4
1377
+ ,.headers=
1378
+ { {"Content-Type", "text/html; charset=UTF-8" }
1379
+ , {"Content-Length", "11" }
1380
+ , {"Proxy-Connection", "close" }
1381
+ , {"Date", "Thu, 31 Dec 2009 20:55:48 +0000"}
1382
+ }
1383
+ ,.body= "hello world"
1384
+ }
1385
+
1386
+ #define UNDERSTORE_HEADER_KEY 7
1387
+ // shown by
1388
+ // curl -o /dev/null -v "http://ad.doubleclick.net/pfadx/DARTSHELLCONFIGXML;dcmt=text/xml;"
1389
+ , {.name="underscore header key"
1390
+ ,.type= HTTP_RESPONSE
1391
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1392
+ "Server: DCLK-AdSvr\r\n"
1393
+ "Content-Type: text/xml\r\n"
1394
+ "Content-Length: 0\r\n"
1395
+ "DCLK_imp: v7;x;114750856;0-0;0;17820020;0/0;21603567/21621457/1;;~okv=;dcmt=text/xml;;~cs=o\r\n\r\n"
1396
+ ,.should_keep_alive= TRUE
1397
+ ,.message_complete_on_eof= FALSE
1398
+ ,.http_major= 1
1399
+ ,.http_minor= 1
1400
+ ,.status_code= 200
1401
+ ,.response_status= "OK"
1402
+ ,.num_headers= 4
1403
+ ,.headers=
1404
+ { {"Server", "DCLK-AdSvr" }
1405
+ , {"Content-Type", "text/xml" }
1406
+ , {"Content-Length", "0" }
1407
+ , {"DCLK_imp", "v7;x;114750856;0-0;0;17820020;0/0;21603567/21621457/1;;~okv=;dcmt=text/xml;;~cs=o" }
1408
+ }
1409
+ ,.body= ""
1410
+ }
1411
+
1412
+ #define BONJOUR_MADAME_FR 8
1413
+ /* The client should not merge two headers fields when the first one doesn't
1414
+ * have a value.
1415
+ */
1416
+ , {.name= "bonjourmadame.fr"
1417
+ ,.type= HTTP_RESPONSE
1418
+ ,.raw= "HTTP/1.0 301 Moved Permanently\r\n"
1419
+ "Date: Thu, 03 Jun 2010 09:56:32 GMT\r\n"
1420
+ "Server: Apache/2.2.3 (Red Hat)\r\n"
1421
+ "Cache-Control: public\r\n"
1422
+ "Pragma: \r\n"
1423
+ "Location: http://www.bonjourmadame.fr/\r\n"
1424
+ "Vary: Accept-Encoding\r\n"
1425
+ "Content-Length: 0\r\n"
1426
+ "Content-Type: text/html; charset=UTF-8\r\n"
1427
+ "Connection: keep-alive\r\n"
1428
+ "\r\n"
1429
+ ,.should_keep_alive= TRUE
1430
+ ,.message_complete_on_eof= FALSE
1431
+ ,.http_major= 1
1432
+ ,.http_minor= 0
1433
+ ,.status_code= 301
1434
+ ,.response_status= "Moved Permanently"
1435
+ ,.num_headers= 9
1436
+ ,.headers=
1437
+ { { "Date", "Thu, 03 Jun 2010 09:56:32 GMT" }
1438
+ , { "Server", "Apache/2.2.3 (Red Hat)" }
1439
+ , { "Cache-Control", "public" }
1440
+ , { "Pragma", "" }
1441
+ , { "Location", "http://www.bonjourmadame.fr/" }
1442
+ , { "Vary", "Accept-Encoding" }
1443
+ , { "Content-Length", "0" }
1444
+ , { "Content-Type", "text/html; charset=UTF-8" }
1445
+ , { "Connection", "keep-alive" }
1446
+ }
1447
+ ,.body= ""
1448
+ }
1449
+
1450
+ #define RES_FIELD_UNDERSCORE 9
1451
+ /* Should handle spaces in header fields */
1452
+ , {.name= "field underscore"
1453
+ ,.type= HTTP_RESPONSE
1454
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1455
+ "Date: Tue, 28 Sep 2010 01:14:13 GMT\r\n"
1456
+ "Server: Apache\r\n"
1457
+ "Cache-Control: no-cache, must-revalidate\r\n"
1458
+ "Expires: Mon, 26 Jul 1997 05:00:00 GMT\r\n"
1459
+ ".et-Cookie: PlaxoCS=1274804622353690521; path=/; domain=.plaxo.com\r\n"
1460
+ "Vary: Accept-Encoding\r\n"
1461
+ "_eep-Alive: timeout=45\r\n" /* semantic value ignored */
1462
+ "_onnection: Keep-Alive\r\n" /* semantic value ignored */
1463
+ "Transfer-Encoding: chunked\r\n"
1464
+ "Content-Type: text/html\r\n"
1465
+ "Connection: close\r\n"
1466
+ "\r\n"
1467
+ "0\r\n\r\n"
1468
+ ,.should_keep_alive= FALSE
1469
+ ,.message_complete_on_eof= FALSE
1470
+ ,.http_major= 1
1471
+ ,.http_minor= 1
1472
+ ,.status_code= 200
1473
+ ,.response_status= "OK"
1474
+ ,.num_headers= 11
1475
+ ,.headers=
1476
+ { { "Date", "Tue, 28 Sep 2010 01:14:13 GMT" }
1477
+ , { "Server", "Apache" }
1478
+ , { "Cache-Control", "no-cache, must-revalidate" }
1479
+ , { "Expires", "Mon, 26 Jul 1997 05:00:00 GMT" }
1480
+ , { ".et-Cookie", "PlaxoCS=1274804622353690521; path=/; domain=.plaxo.com" }
1481
+ , { "Vary", "Accept-Encoding" }
1482
+ , { "_eep-Alive", "timeout=45" }
1483
+ , { "_onnection", "Keep-Alive" }
1484
+ , { "Transfer-Encoding", "chunked" }
1485
+ , { "Content-Type", "text/html" }
1486
+ , { "Connection", "close" }
1487
+ }
1488
+ ,.body= ""
1489
+ ,.num_chunks_complete= 1
1490
+ ,.chunk_lengths= {}
1491
+ }
1492
+
1493
+ #define NON_ASCII_IN_STATUS_LINE 10
1494
+ /* Should handle non-ASCII in status line */
1495
+ , {.name= "non-ASCII in status line"
1496
+ ,.type= HTTP_RESPONSE
1497
+ ,.raw= "HTTP/1.1 500 Oriëntatieprobleem\r\n"
1498
+ "Date: Fri, 5 Nov 2010 23:07:12 GMT+2\r\n"
1499
+ "Content-Length: 0\r\n"
1500
+ "Connection: close\r\n"
1501
+ "\r\n"
1502
+ ,.should_keep_alive= FALSE
1503
+ ,.message_complete_on_eof= FALSE
1504
+ ,.http_major= 1
1505
+ ,.http_minor= 1
1506
+ ,.status_code= 500
1507
+ ,.response_status= "Oriëntatieprobleem"
1508
+ ,.num_headers= 3
1509
+ ,.headers=
1510
+ { { "Date", "Fri, 5 Nov 2010 23:07:12 GMT+2" }
1511
+ , { "Content-Length", "0" }
1512
+ , { "Connection", "close" }
1513
+ }
1514
+ ,.body= ""
1515
+ }
1516
+
1517
+ #define HTTP_VERSION_0_9 11
1518
+ /* Should handle HTTP/0.9 */
1519
+ , {.name= "http version 0.9"
1520
+ ,.type= HTTP_RESPONSE
1521
+ ,.raw= "HTTP/0.9 200 OK\r\n"
1522
+ "\r\n"
1523
+ ,.should_keep_alive= FALSE
1524
+ ,.message_complete_on_eof= TRUE
1525
+ ,.http_major= 0
1526
+ ,.http_minor= 9
1527
+ ,.status_code= 200
1528
+ ,.response_status= "OK"
1529
+ ,.num_headers= 0
1530
+ ,.headers=
1531
+ {}
1532
+ ,.body= ""
1533
+ }
1534
+
1535
+ #define NO_CONTENT_LENGTH_NO_TRANSFER_ENCODING_RESPONSE 12
1536
+ /* The client should wait for the server's EOF. That is, when neither
1537
+ * content-length nor transfer-encoding is specified, the end of body
1538
+ * is specified by the EOF.
1539
+ */
1540
+ , {.name= "neither content-length nor transfer-encoding response"
1541
+ ,.type= HTTP_RESPONSE
1542
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1543
+ "Content-Type: text/plain\r\n"
1544
+ "\r\n"
1545
+ "hello world"
1546
+ ,.should_keep_alive= FALSE
1547
+ ,.message_complete_on_eof= TRUE
1548
+ ,.http_major= 1
1549
+ ,.http_minor= 1
1550
+ ,.status_code= 200
1551
+ ,.response_status= "OK"
1552
+ ,.num_headers= 1
1553
+ ,.headers=
1554
+ { { "Content-Type", "text/plain" }
1555
+ }
1556
+ ,.body= "hello world"
1557
+ }
1558
+
1559
+ #define NO_BODY_HTTP10_KA_200 13
1560
+ , {.name= "HTTP/1.0 with keep-alive and EOF-terminated 200 status"
1561
+ ,.type= HTTP_RESPONSE
1562
+ ,.raw= "HTTP/1.0 200 OK\r\n"
1563
+ "Connection: keep-alive\r\n"
1564
+ "\r\n"
1565
+ ,.should_keep_alive= FALSE
1566
+ ,.message_complete_on_eof= TRUE
1567
+ ,.http_major= 1
1568
+ ,.http_minor= 0
1569
+ ,.status_code= 200
1570
+ ,.response_status= "OK"
1571
+ ,.num_headers= 1
1572
+ ,.headers=
1573
+ { { "Connection", "keep-alive" }
1574
+ }
1575
+ ,.body_size= 0
1576
+ ,.body= ""
1577
+ }
1578
+
1579
+ #define NO_BODY_HTTP10_KA_204 14
1580
+ , {.name= "HTTP/1.0 with keep-alive and a 204 status"
1581
+ ,.type= HTTP_RESPONSE
1582
+ ,.raw= "HTTP/1.0 204 No content\r\n"
1583
+ "Connection: keep-alive\r\n"
1584
+ "\r\n"
1585
+ ,.should_keep_alive= TRUE
1586
+ ,.message_complete_on_eof= FALSE
1587
+ ,.http_major= 1
1588
+ ,.http_minor= 0
1589
+ ,.status_code= 204
1590
+ ,.response_status= "No content"
1591
+ ,.num_headers= 1
1592
+ ,.headers=
1593
+ { { "Connection", "keep-alive" }
1594
+ }
1595
+ ,.body_size= 0
1596
+ ,.body= ""
1597
+ }
1598
+
1599
+ #define NO_BODY_HTTP11_KA_200 15
1600
+ , {.name= "HTTP/1.1 with an EOF-terminated 200 status"
1601
+ ,.type= HTTP_RESPONSE
1602
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1603
+ "\r\n"
1604
+ ,.should_keep_alive= FALSE
1605
+ ,.message_complete_on_eof= TRUE
1606
+ ,.http_major= 1
1607
+ ,.http_minor= 1
1608
+ ,.status_code= 200
1609
+ ,.response_status= "OK"
1610
+ ,.num_headers= 0
1611
+ ,.headers={}
1612
+ ,.body_size= 0
1613
+ ,.body= ""
1614
+ }
1615
+
1616
+ #define NO_BODY_HTTP11_KA_204 16
1617
+ , {.name= "HTTP/1.1 with a 204 status"
1618
+ ,.type= HTTP_RESPONSE
1619
+ ,.raw= "HTTP/1.1 204 No content\r\n"
1620
+ "\r\n"
1621
+ ,.should_keep_alive= TRUE
1622
+ ,.message_complete_on_eof= FALSE
1623
+ ,.http_major= 1
1624
+ ,.http_minor= 1
1625
+ ,.status_code= 204
1626
+ ,.response_status= "No content"
1627
+ ,.num_headers= 0
1628
+ ,.headers={}
1629
+ ,.body_size= 0
1630
+ ,.body= ""
1631
+ }
1632
+
1633
+ #define NO_BODY_HTTP11_NOKA_204 17
1634
+ , {.name= "HTTP/1.1 with a 204 status and keep-alive disabled"
1635
+ ,.type= HTTP_RESPONSE
1636
+ ,.raw= "HTTP/1.1 204 No content\r\n"
1637
+ "Connection: close\r\n"
1638
+ "\r\n"
1639
+ ,.should_keep_alive= FALSE
1640
+ ,.message_complete_on_eof= FALSE
1641
+ ,.http_major= 1
1642
+ ,.http_minor= 1
1643
+ ,.status_code= 204
1644
+ ,.response_status= "No content"
1645
+ ,.num_headers= 1
1646
+ ,.headers=
1647
+ { { "Connection", "close" }
1648
+ }
1649
+ ,.body_size= 0
1650
+ ,.body= ""
1651
+ }
1652
+
1653
+ #define NO_BODY_HTTP11_KA_CHUNKED_200 18
1654
+ , {.name= "HTTP/1.1 with chunked endocing and a 200 response"
1655
+ ,.type= HTTP_RESPONSE
1656
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1657
+ "Transfer-Encoding: chunked\r\n"
1658
+ "\r\n"
1659
+ "0\r\n"
1660
+ "\r\n"
1661
+ ,.should_keep_alive= TRUE
1662
+ ,.message_complete_on_eof= FALSE
1663
+ ,.http_major= 1
1664
+ ,.http_minor= 1
1665
+ ,.status_code= 200
1666
+ ,.response_status= "OK"
1667
+ ,.num_headers= 1
1668
+ ,.headers=
1669
+ { { "Transfer-Encoding", "chunked" }
1670
+ }
1671
+ ,.body_size= 0
1672
+ ,.body= ""
1673
+ ,.num_chunks_complete= 1
1674
+ }
1675
+
1676
+ #if !HTTP_PARSER_STRICT
1677
+ #define SPACE_IN_FIELD_RES 19
1678
+ /* Should handle spaces in header fields */
1679
+ , {.name= "field space"
1680
+ ,.type= HTTP_RESPONSE
1681
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1682
+ "Server: Microsoft-IIS/6.0\r\n"
1683
+ "X-Powered-By: ASP.NET\r\n"
1684
+ "en-US Content-Type: text/xml\r\n" /* this is the problem */
1685
+ "Content-Type: text/xml\r\n"
1686
+ "Content-Length: 16\r\n"
1687
+ "Date: Fri, 23 Jul 2010 18:45:38 GMT\r\n"
1688
+ "Connection: keep-alive\r\n"
1689
+ "\r\n"
1690
+ "<xml>hello</xml>" /* fake body */
1691
+ ,.should_keep_alive= TRUE
1692
+ ,.message_complete_on_eof= FALSE
1693
+ ,.http_major= 1
1694
+ ,.http_minor= 1
1695
+ ,.status_code= 200
1696
+ ,.response_status= "OK"
1697
+ ,.num_headers= 7
1698
+ ,.headers=
1699
+ { { "Server", "Microsoft-IIS/6.0" }
1700
+ , { "X-Powered-By", "ASP.NET" }
1701
+ , { "en-US Content-Type", "text/xml" }
1702
+ , { "Content-Type", "text/xml" }
1703
+ , { "Content-Length", "16" }
1704
+ , { "Date", "Fri, 23 Jul 2010 18:45:38 GMT" }
1705
+ , { "Connection", "keep-alive" }
1706
+ }
1707
+ ,.body= "<xml>hello</xml>"
1708
+ }
1709
+ #endif /* !HTTP_PARSER_STRICT */
1710
+
1711
+ #define AMAZON_COM 20
1712
+ , {.name= "amazon.com"
1713
+ ,.type= HTTP_RESPONSE
1714
+ ,.raw= "HTTP/1.1 301 MovedPermanently\r\n"
1715
+ "Date: Wed, 15 May 2013 17:06:33 GMT\r\n"
1716
+ "Server: Server\r\n"
1717
+ "x-amz-id-1: 0GPHKXSJQ826RK7GZEB2\r\n"
1718
+ "p3p: policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"\r\n"
1719
+ "x-amz-id-2: STN69VZxIFSz9YJLbz1GDbxpbjG6Qjmmq5E3DxRhOUw+Et0p4hr7c/Q8qNcx4oAD\r\n"
1720
+ "Location: http://www.amazon.com/Dan-Brown/e/B000AP9DSU/ref=s9_pop_gw_al1?_encoding=UTF8&refinementId=618073011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=center-2&pf_rd_r=0SHYY5BZXN3KR20BNFAY&pf_rd_t=101&pf_rd_p=1263340922&pf_rd_i=507846\r\n"
1721
+ "Vary: Accept-Encoding,User-Agent\r\n"
1722
+ "Content-Type: text/html; charset=ISO-8859-1\r\n"
1723
+ "Transfer-Encoding: chunked\r\n"
1724
+ "\r\n"
1725
+ "1\r\n"
1726
+ "\n\r\n"
1727
+ "0\r\n"
1728
+ "\r\n"
1729
+ ,.should_keep_alive= TRUE
1730
+ ,.message_complete_on_eof= FALSE
1731
+ ,.http_major= 1
1732
+ ,.http_minor= 1
1733
+ ,.status_code= 301
1734
+ ,.response_status= "MovedPermanently"
1735
+ ,.num_headers= 9
1736
+ ,.headers= { { "Date", "Wed, 15 May 2013 17:06:33 GMT" }
1737
+ , { "Server", "Server" }
1738
+ , { "x-amz-id-1", "0GPHKXSJQ826RK7GZEB2" }
1739
+ , { "p3p", "policyref=\"http://www.amazon.com/w3c/p3p.xml\",CP=\"CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC \"" }
1740
+ , { "x-amz-id-2", "STN69VZxIFSz9YJLbz1GDbxpbjG6Qjmmq5E3DxRhOUw+Et0p4hr7c/Q8qNcx4oAD" }
1741
+ , { "Location", "http://www.amazon.com/Dan-Brown/e/B000AP9DSU/ref=s9_pop_gw_al1?_encoding=UTF8&refinementId=618073011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=center-2&pf_rd_r=0SHYY5BZXN3KR20BNFAY&pf_rd_t=101&pf_rd_p=1263340922&pf_rd_i=507846" }
1742
+ , { "Vary", "Accept-Encoding,User-Agent" }
1743
+ , { "Content-Type", "text/html; charset=ISO-8859-1" }
1744
+ , { "Transfer-Encoding", "chunked" }
1745
+ }
1746
+ ,.body= "\n"
1747
+ ,.num_chunks_complete= 2
1748
+ ,.chunk_lengths= { 1 }
1749
+ }
1750
+
1751
+ #define EMPTY_REASON_PHRASE_AFTER_SPACE 20
1752
+ , {.name= "empty reason phrase after space"
1753
+ ,.type= HTTP_RESPONSE
1754
+ ,.raw= "HTTP/1.1 200 \r\n"
1755
+ "\r\n"
1756
+ ,.should_keep_alive= FALSE
1757
+ ,.message_complete_on_eof= TRUE
1758
+ ,.http_major= 1
1759
+ ,.http_minor= 1
1760
+ ,.status_code= 200
1761
+ ,.response_status= ""
1762
+ ,.num_headers= 0
1763
+ ,.headers= {}
1764
+ ,.body= ""
1765
+ }
1766
+
1767
+ #define CONTENT_LENGTH_X 21
1768
+ , {.name= "Content-Length-X"
1769
+ ,.type= HTTP_RESPONSE
1770
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1771
+ "Content-Length-X: 0\r\n"
1772
+ "Transfer-Encoding: chunked\r\n"
1773
+ "\r\n"
1774
+ "2\r\n"
1775
+ "OK\r\n"
1776
+ "0\r\n"
1777
+ "\r\n"
1778
+ ,.should_keep_alive= TRUE
1779
+ ,.message_complete_on_eof= FALSE
1780
+ ,.http_major= 1
1781
+ ,.http_minor= 1
1782
+ ,.status_code= 200
1783
+ ,.response_status= "OK"
1784
+ ,.num_headers= 2
1785
+ ,.headers= { { "Content-Length-X", "0" }
1786
+ , { "Transfer-Encoding", "chunked" }
1787
+ }
1788
+ ,.body= "OK"
1789
+ ,.num_chunks_complete= 2
1790
+ ,.chunk_lengths= { 2 }
1791
+ }
1792
+
1793
+ #define HTTP_101_RESPONSE_WITH_UPGRADE_HEADER 22
1794
+ , {.name= "HTTP 101 response with Upgrade header"
1795
+ ,.type= HTTP_RESPONSE
1796
+ ,.raw= "HTTP/1.1 101 Switching Protocols\r\n"
1797
+ "Connection: upgrade\r\n"
1798
+ "Upgrade: h2c\r\n"
1799
+ "\r\n"
1800
+ "proto"
1801
+ ,.should_keep_alive= TRUE
1802
+ ,.message_complete_on_eof= FALSE
1803
+ ,.http_major= 1
1804
+ ,.http_minor= 1
1805
+ ,.status_code= 101
1806
+ ,.response_status= "Switching Protocols"
1807
+ ,.upgrade= "proto"
1808
+ ,.num_headers= 2
1809
+ ,.headers=
1810
+ { { "Connection", "upgrade" }
1811
+ , { "Upgrade", "h2c" }
1812
+ }
1813
+ }
1814
+
1815
+ #define HTTP_101_RESPONSE_WITH_UPGRADE_HEADER_AND_CONTENT_LENGTH 23
1816
+ , {.name= "HTTP 101 response with Upgrade and Content-Length header"
1817
+ ,.type= HTTP_RESPONSE
1818
+ ,.raw= "HTTP/1.1 101 Switching Protocols\r\n"
1819
+ "Connection: upgrade\r\n"
1820
+ "Upgrade: h2c\r\n"
1821
+ "Content-Length: 4\r\n"
1822
+ "\r\n"
1823
+ "body"
1824
+ "proto"
1825
+ ,.should_keep_alive= TRUE
1826
+ ,.message_complete_on_eof= FALSE
1827
+ ,.http_major= 1
1828
+ ,.http_minor= 1
1829
+ ,.status_code= 101
1830
+ ,.response_status= "Switching Protocols"
1831
+ ,.body= "body"
1832
+ ,.upgrade= "proto"
1833
+ ,.num_headers= 3
1834
+ ,.headers=
1835
+ { { "Connection", "upgrade" }
1836
+ , { "Upgrade", "h2c" }
1837
+ , { "Content-Length", "4" }
1838
+ }
1839
+ }
1840
+
1841
+ #define HTTP_101_RESPONSE_WITH_UPGRADE_HEADER_AND_TRANSFER_ENCODING 24
1842
+ , {.name= "HTTP 101 response with Upgrade and Transfer-Encoding header"
1843
+ ,.type= HTTP_RESPONSE
1844
+ ,.raw= "HTTP/1.1 101 Switching Protocols\r\n"
1845
+ "Connection: upgrade\r\n"
1846
+ "Upgrade: h2c\r\n"
1847
+ "Transfer-Encoding: chunked\r\n"
1848
+ "\r\n"
1849
+ "2\r\n"
1850
+ "bo\r\n"
1851
+ "2\r\n"
1852
+ "dy\r\n"
1853
+ "0\r\n"
1854
+ "\r\n"
1855
+ "proto"
1856
+ ,.should_keep_alive= TRUE
1857
+ ,.message_complete_on_eof= FALSE
1858
+ ,.http_major= 1
1859
+ ,.http_minor= 1
1860
+ ,.status_code= 101
1861
+ ,.response_status= "Switching Protocols"
1862
+ ,.body= "body"
1863
+ ,.upgrade= "proto"
1864
+ ,.num_headers= 3
1865
+ ,.headers=
1866
+ { { "Connection", "upgrade" }
1867
+ , { "Upgrade", "h2c" }
1868
+ , { "Transfer-Encoding", "chunked" }
1869
+ }
1870
+ ,.num_chunks_complete= 3
1871
+ ,.chunk_lengths= { 2, 2 }
1872
+ }
1873
+
1874
+ #define HTTP_200_RESPONSE_WITH_UPGRADE_HEADER 25
1875
+ , {.name= "HTTP 200 response with Upgrade header"
1876
+ ,.type= HTTP_RESPONSE
1877
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1878
+ "Connection: upgrade\r\n"
1879
+ "Upgrade: h2c\r\n"
1880
+ "\r\n"
1881
+ "body"
1882
+ ,.should_keep_alive= FALSE
1883
+ ,.message_complete_on_eof= TRUE
1884
+ ,.http_major= 1
1885
+ ,.http_minor= 1
1886
+ ,.status_code= 200
1887
+ ,.response_status= "OK"
1888
+ ,.body= "body"
1889
+ ,.upgrade= NULL
1890
+ ,.num_headers= 2
1891
+ ,.headers=
1892
+ { { "Connection", "upgrade" }
1893
+ , { "Upgrade", "h2c" }
1894
+ }
1895
+ }
1896
+
1897
+ #define HTTP_200_RESPONSE_WITH_UPGRADE_HEADER_AND_CONTENT_LENGTH 26
1898
+ , {.name= "HTTP 200 response with Upgrade and Content-Length header"
1899
+ ,.type= HTTP_RESPONSE
1900
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1901
+ "Connection: upgrade\r\n"
1902
+ "Upgrade: h2c\r\n"
1903
+ "Content-Length: 4\r\n"
1904
+ "\r\n"
1905
+ "body"
1906
+ ,.should_keep_alive= TRUE
1907
+ ,.message_complete_on_eof= FALSE
1908
+ ,.http_major= 1
1909
+ ,.http_minor= 1
1910
+ ,.status_code= 200
1911
+ ,.response_status= "OK"
1912
+ ,.num_headers= 3
1913
+ ,.body= "body"
1914
+ ,.upgrade= NULL
1915
+ ,.headers=
1916
+ { { "Connection", "upgrade" }
1917
+ , { "Upgrade", "h2c" }
1918
+ , { "Content-Length", "4" }
1919
+ }
1920
+ }
1921
+
1922
+ #define HTTP_200_RESPONSE_WITH_UPGRADE_HEADER_AND_TRANSFER_ENCODING 27
1923
+ , {.name= "HTTP 200 response with Upgrade and Transfer-Encoding header"
1924
+ ,.type= HTTP_RESPONSE
1925
+ ,.raw= "HTTP/1.1 200 OK\r\n"
1926
+ "Connection: upgrade\r\n"
1927
+ "Upgrade: h2c\r\n"
1928
+ "Transfer-Encoding: chunked\r\n"
1929
+ "\r\n"
1930
+ "2\r\n"
1931
+ "bo\r\n"
1932
+ "2\r\n"
1933
+ "dy\r\n"
1934
+ "0\r\n"
1935
+ "\r\n"
1936
+ ,.should_keep_alive= TRUE
1937
+ ,.message_complete_on_eof= FALSE
1938
+ ,.http_major= 1
1939
+ ,.http_minor= 1
1940
+ ,.status_code= 200
1941
+ ,.response_status= "OK"
1942
+ ,.num_headers= 3
1943
+ ,.body= "body"
1944
+ ,.upgrade= NULL
1945
+ ,.headers=
1946
+ { { "Connection", "upgrade" }
1947
+ , { "Upgrade", "h2c" }
1948
+ , { "Transfer-Encoding", "chunked" }
1949
+ }
1950
+ ,.num_chunks_complete= 3
1951
+ ,.chunk_lengths= { 2, 2 }
1952
+ }
1953
+ };
1954
+
1955
+ /* strnlen() is a POSIX.2008 addition. Can't rely on it being available so
1956
+ * define it ourselves.
1957
+ */
1958
+ size_t
1959
+ strnlen(const char *s, size_t maxlen)
1960
+ {
1961
+ const char *p;
1962
+
1963
+ p = memchr(s, '\0', maxlen);
1964
+ if (p == NULL)
1965
+ return maxlen;
1966
+
1967
+ return p - s;
1968
+ }
1969
+
1970
+ size_t
1971
+ strlncat(char *dst, size_t len, const char *src, size_t n)
1972
+ {
1973
+ size_t slen;
1974
+ size_t dlen;
1975
+ size_t rlen;
1976
+ size_t ncpy;
1977
+
1978
+ slen = strnlen(src, n);
1979
+ dlen = strnlen(dst, len);
1980
+
1981
+ if (dlen < len) {
1982
+ rlen = len - dlen;
1983
+ ncpy = slen < rlen ? slen : (rlen - 1);
1984
+ memcpy(dst + dlen, src, ncpy);
1985
+ dst[dlen + ncpy] = '\0';
1986
+ }
1987
+
1988
+ assert(len > slen + dlen);
1989
+ return slen + dlen;
1990
+ }
1991
+
1992
+ size_t
1993
+ strlncpy(char *dst, size_t len, const char *src, size_t n)
1994
+ {
1995
+ size_t slen;
1996
+ size_t ncpy;
1997
+
1998
+ slen = strnlen(src, n);
1999
+
2000
+ if (len > 0) {
2001
+ ncpy = slen < len ? slen : (len - 1);
2002
+ memcpy(dst, src, ncpy);
2003
+ dst[ncpy] = '\0';
2004
+ }
2005
+
2006
+ assert(len > slen);
2007
+ return slen;
2008
+ }
2009
+
2010
+ int
2011
+ request_url_cb (http_parser *p, const char *buf, size_t len)
2012
+ {
2013
+ assert(p == parser);
2014
+ strlncat(messages[num_messages].request_url,
2015
+ sizeof(messages[num_messages].request_url),
2016
+ buf,
2017
+ len);
2018
+ return 0;
2019
+ }
2020
+
2021
+ int
2022
+ header_field_cb (http_parser *p, const char *buf, size_t len)
2023
+ {
2024
+ assert(p == parser);
2025
+ struct message *m = &messages[num_messages];
2026
+
2027
+ if (m->last_header_element != FIELD)
2028
+ m->num_headers++;
2029
+
2030
+ strlncat(m->headers[m->num_headers-1][0],
2031
+ sizeof(m->headers[m->num_headers-1][0]),
2032
+ buf,
2033
+ len);
2034
+
2035
+ m->last_header_element = FIELD;
2036
+
2037
+ return 0;
2038
+ }
2039
+
2040
+ int
2041
+ header_value_cb (http_parser *p, const char *buf, size_t len)
2042
+ {
2043
+ assert(p == parser);
2044
+ struct message *m = &messages[num_messages];
2045
+
2046
+ strlncat(m->headers[m->num_headers-1][1],
2047
+ sizeof(m->headers[m->num_headers-1][1]),
2048
+ buf,
2049
+ len);
2050
+
2051
+ m->last_header_element = VALUE;
2052
+
2053
+ return 0;
2054
+ }
2055
+
2056
+ void
2057
+ check_body_is_final (const http_parser *p)
2058
+ {
2059
+ if (messages[num_messages].body_is_final) {
2060
+ fprintf(stderr, "\n\n *** Error http_body_is_final() should return 1 "
2061
+ "on last on_body callback call "
2062
+ "but it doesn't! ***\n\n");
2063
+ assert(0);
2064
+ abort();
2065
+ }
2066
+ messages[num_messages].body_is_final = http_body_is_final(p);
2067
+ }
2068
+
2069
+ int
2070
+ body_cb (http_parser *p, const char *buf, size_t len)
2071
+ {
2072
+ assert(p == parser);
2073
+ strlncat(messages[num_messages].body,
2074
+ sizeof(messages[num_messages].body),
2075
+ buf,
2076
+ len);
2077
+ messages[num_messages].body_size += len;
2078
+ check_body_is_final(p);
2079
+ // printf("body_cb: '%s'\n", requests[num_messages].body);
2080
+ return 0;
2081
+ }
2082
+
2083
+ int
2084
+ count_body_cb (http_parser *p, const char *buf, size_t len)
2085
+ {
2086
+ assert(p == parser);
2087
+ assert(buf);
2088
+ messages[num_messages].body_size += len;
2089
+ check_body_is_final(p);
2090
+ return 0;
2091
+ }
2092
+
2093
+ int
2094
+ message_begin_cb (http_parser *p)
2095
+ {
2096
+ assert(p == parser);
2097
+ messages[num_messages].message_begin_cb_called = TRUE;
2098
+ return 0;
2099
+ }
2100
+
2101
+ int
2102
+ headers_complete_cb (http_parser *p)
2103
+ {
2104
+ assert(p == parser);
2105
+ messages[num_messages].method = parser->method;
2106
+ messages[num_messages].status_code = parser->status_code;
2107
+ messages[num_messages].http_major = parser->http_major;
2108
+ messages[num_messages].http_minor = parser->http_minor;
2109
+ messages[num_messages].headers_complete_cb_called = TRUE;
2110
+ messages[num_messages].should_keep_alive = http_should_keep_alive(parser);
2111
+ return 0;
2112
+ }
2113
+
2114
+ int
2115
+ message_complete_cb (http_parser *p)
2116
+ {
2117
+ assert(p == parser);
2118
+ if (messages[num_messages].should_keep_alive != http_should_keep_alive(parser))
2119
+ {
2120
+ fprintf(stderr, "\n\n *** Error http_should_keep_alive() should have same "
2121
+ "value in both on_message_complete and on_headers_complete "
2122
+ "but it doesn't! ***\n\n");
2123
+ assert(0);
2124
+ abort();
2125
+ }
2126
+
2127
+ if (messages[num_messages].body_size &&
2128
+ http_body_is_final(p) &&
2129
+ !messages[num_messages].body_is_final)
2130
+ {
2131
+ fprintf(stderr, "\n\n *** Error http_body_is_final() should return 1 "
2132
+ "on last on_body callback call "
2133
+ "but it doesn't! ***\n\n");
2134
+ assert(0);
2135
+ abort();
2136
+ }
2137
+
2138
+ messages[num_messages].message_complete_cb_called = TRUE;
2139
+
2140
+ messages[num_messages].message_complete_on_eof = currently_parsing_eof;
2141
+
2142
+ num_messages++;
2143
+ return 0;
2144
+ }
2145
+
2146
+ int
2147
+ response_status_cb (http_parser *p, const char *buf, size_t len)
2148
+ {
2149
+ assert(p == parser);
2150
+
2151
+ messages[num_messages].status_cb_called = TRUE;
2152
+
2153
+ strlncat(messages[num_messages].response_status,
2154
+ sizeof(messages[num_messages].response_status),
2155
+ buf,
2156
+ len);
2157
+ return 0;
2158
+ }
2159
+
2160
+ int
2161
+ chunk_header_cb (http_parser *p)
2162
+ {
2163
+ assert(p == parser);
2164
+ int chunk_idx = messages[num_messages].num_chunks;
2165
+ messages[num_messages].num_chunks++;
2166
+ if (chunk_idx < MAX_CHUNKS) {
2167
+ messages[num_messages].chunk_lengths[chunk_idx] = p->content_length;
2168
+ }
2169
+
2170
+ return 0;
2171
+ }
2172
+
2173
+ int
2174
+ chunk_complete_cb (http_parser *p)
2175
+ {
2176
+ assert(p == parser);
2177
+
2178
+ /* Here we want to verify that each chunk_header_cb is matched by a
2179
+ * chunk_complete_cb, so not only should the total number of calls to
2180
+ * both callbacks be the same, but they also should be interleaved
2181
+ * properly */
2182
+ assert(messages[num_messages].num_chunks ==
2183
+ messages[num_messages].num_chunks_complete + 1);
2184
+
2185
+ messages[num_messages].num_chunks_complete++;
2186
+ return 0;
2187
+ }
2188
+
2189
+ /* These dontcall_* callbacks exist so that we can verify that when we're
2190
+ * paused, no additional callbacks are invoked */
2191
+ int
2192
+ dontcall_message_begin_cb (http_parser *p)
2193
+ {
2194
+ if (p) { } // gcc
2195
+ fprintf(stderr, "\n\n*** on_message_begin() called on paused parser ***\n\n");
2196
+ abort();
2197
+ }
2198
+
2199
+ int
2200
+ dontcall_header_field_cb (http_parser *p, const char *buf, size_t len)
2201
+ {
2202
+ if (p || buf || len) { } // gcc
2203
+ fprintf(stderr, "\n\n*** on_header_field() called on paused parser ***\n\n");
2204
+ abort();
2205
+ }
2206
+
2207
+ int
2208
+ dontcall_header_value_cb (http_parser *p, const char *buf, size_t len)
2209
+ {
2210
+ if (p || buf || len) { } // gcc
2211
+ fprintf(stderr, "\n\n*** on_header_value() called on paused parser ***\n\n");
2212
+ abort();
2213
+ }
2214
+
2215
+ int
2216
+ dontcall_request_url_cb (http_parser *p, const char *buf, size_t len)
2217
+ {
2218
+ if (p || buf || len) { } // gcc
2219
+ fprintf(stderr, "\n\n*** on_request_url() called on paused parser ***\n\n");
2220
+ abort();
2221
+ }
2222
+
2223
+ int
2224
+ dontcall_body_cb (http_parser *p, const char *buf, size_t len)
2225
+ {
2226
+ if (p || buf || len) { } // gcc
2227
+ fprintf(stderr, "\n\n*** on_body_cb() called on paused parser ***\n\n");
2228
+ abort();
2229
+ }
2230
+
2231
+ int
2232
+ dontcall_headers_complete_cb (http_parser *p)
2233
+ {
2234
+ if (p) { } // gcc
2235
+ fprintf(stderr, "\n\n*** on_headers_complete() called on paused "
2236
+ "parser ***\n\n");
2237
+ abort();
2238
+ }
2239
+
2240
+ int
2241
+ dontcall_message_complete_cb (http_parser *p)
2242
+ {
2243
+ if (p) { } // gcc
2244
+ fprintf(stderr, "\n\n*** on_message_complete() called on paused "
2245
+ "parser ***\n\n");
2246
+ abort();
2247
+ }
2248
+
2249
+ int
2250
+ dontcall_response_status_cb (http_parser *p, const char *buf, size_t len)
2251
+ {
2252
+ if (p || buf || len) { } // gcc
2253
+ fprintf(stderr, "\n\n*** on_status() called on paused parser ***\n\n");
2254
+ abort();
2255
+ }
2256
+
2257
+ int
2258
+ dontcall_chunk_header_cb (http_parser *p)
2259
+ {
2260
+ if (p) { } // gcc
2261
+ fprintf(stderr, "\n\n*** on_chunk_header() called on paused parser ***\n\n");
2262
+ exit(1);
2263
+ }
2264
+
2265
+ int
2266
+ dontcall_chunk_complete_cb (http_parser *p)
2267
+ {
2268
+ if (p) { } // gcc
2269
+ fprintf(stderr, "\n\n*** on_chunk_complete() "
2270
+ "called on paused parser ***\n\n");
2271
+ exit(1);
2272
+ }
2273
+
2274
+ static http_parser_settings settings_dontcall =
2275
+ {.on_message_begin = dontcall_message_begin_cb
2276
+ ,.on_header_field = dontcall_header_field_cb
2277
+ ,.on_header_value = dontcall_header_value_cb
2278
+ ,.on_url = dontcall_request_url_cb
2279
+ ,.on_status = dontcall_response_status_cb
2280
+ ,.on_body = dontcall_body_cb
2281
+ ,.on_headers_complete = dontcall_headers_complete_cb
2282
+ ,.on_message_complete = dontcall_message_complete_cb
2283
+ ,.on_chunk_header = dontcall_chunk_header_cb
2284
+ ,.on_chunk_complete = dontcall_chunk_complete_cb
2285
+ };
2286
+
2287
+ /* These pause_* callbacks always pause the parser and just invoke the regular
2288
+ * callback that tracks content. Before returning, we overwrite the parser
2289
+ * settings to point to the _dontcall variety so that we can verify that
2290
+ * the pause actually did, you know, pause. */
2291
+ int
2292
+ pause_message_begin_cb (http_parser *p)
2293
+ {
2294
+ http_parser_pause(p, 1);
2295
+ *current_pause_parser = settings_dontcall;
2296
+ return message_begin_cb(p);
2297
+ }
2298
+
2299
+ int
2300
+ pause_header_field_cb (http_parser *p, const char *buf, size_t len)
2301
+ {
2302
+ http_parser_pause(p, 1);
2303
+ *current_pause_parser = settings_dontcall;
2304
+ return header_field_cb(p, buf, len);
2305
+ }
2306
+
2307
+ int
2308
+ pause_header_value_cb (http_parser *p, const char *buf, size_t len)
2309
+ {
2310
+ http_parser_pause(p, 1);
2311
+ *current_pause_parser = settings_dontcall;
2312
+ return header_value_cb(p, buf, len);
2313
+ }
2314
+
2315
+ int
2316
+ pause_request_url_cb (http_parser *p, const char *buf, size_t len)
2317
+ {
2318
+ http_parser_pause(p, 1);
2319
+ *current_pause_parser = settings_dontcall;
2320
+ return request_url_cb(p, buf, len);
2321
+ }
2322
+
2323
+ int
2324
+ pause_body_cb (http_parser *p, const char *buf, size_t len)
2325
+ {
2326
+ http_parser_pause(p, 1);
2327
+ *current_pause_parser = settings_dontcall;
2328
+ return body_cb(p, buf, len);
2329
+ }
2330
+
2331
+ int
2332
+ pause_headers_complete_cb (http_parser *p)
2333
+ {
2334
+ http_parser_pause(p, 1);
2335
+ *current_pause_parser = settings_dontcall;
2336
+ return headers_complete_cb(p);
2337
+ }
2338
+
2339
+ int
2340
+ pause_message_complete_cb (http_parser *p)
2341
+ {
2342
+ http_parser_pause(p, 1);
2343
+ *current_pause_parser = settings_dontcall;
2344
+ return message_complete_cb(p);
2345
+ }
2346
+
2347
+ int
2348
+ pause_response_status_cb (http_parser *p, const char *buf, size_t len)
2349
+ {
2350
+ http_parser_pause(p, 1);
2351
+ *current_pause_parser = settings_dontcall;
2352
+ return response_status_cb(p, buf, len);
2353
+ }
2354
+
2355
+ int
2356
+ pause_chunk_header_cb (http_parser *p)
2357
+ {
2358
+ http_parser_pause(p, 1);
2359
+ *current_pause_parser = settings_dontcall;
2360
+ return chunk_header_cb(p);
2361
+ }
2362
+
2363
+ int
2364
+ pause_chunk_complete_cb (http_parser *p)
2365
+ {
2366
+ http_parser_pause(p, 1);
2367
+ *current_pause_parser = settings_dontcall;
2368
+ return chunk_complete_cb(p);
2369
+ }
2370
+
2371
+ int
2372
+ connect_headers_complete_cb (http_parser *p)
2373
+ {
2374
+ headers_complete_cb(p);
2375
+ return 1;
2376
+ }
2377
+
2378
+ int
2379
+ connect_message_complete_cb (http_parser *p)
2380
+ {
2381
+ messages[num_messages].should_keep_alive = http_should_keep_alive(parser);
2382
+ return message_complete_cb(p);
2383
+ }
2384
+
2385
+ static http_parser_settings settings_pause =
2386
+ {.on_message_begin = pause_message_begin_cb
2387
+ ,.on_header_field = pause_header_field_cb
2388
+ ,.on_header_value = pause_header_value_cb
2389
+ ,.on_url = pause_request_url_cb
2390
+ ,.on_status = pause_response_status_cb
2391
+ ,.on_body = pause_body_cb
2392
+ ,.on_headers_complete = pause_headers_complete_cb
2393
+ ,.on_message_complete = pause_message_complete_cb
2394
+ ,.on_chunk_header = pause_chunk_header_cb
2395
+ ,.on_chunk_complete = pause_chunk_complete_cb
2396
+ };
2397
+
2398
+ static http_parser_settings settings =
2399
+ {.on_message_begin = message_begin_cb
2400
+ ,.on_header_field = header_field_cb
2401
+ ,.on_header_value = header_value_cb
2402
+ ,.on_url = request_url_cb
2403
+ ,.on_status = response_status_cb
2404
+ ,.on_body = body_cb
2405
+ ,.on_headers_complete = headers_complete_cb
2406
+ ,.on_message_complete = message_complete_cb
2407
+ ,.on_chunk_header = chunk_header_cb
2408
+ ,.on_chunk_complete = chunk_complete_cb
2409
+ };
2410
+
2411
+ static http_parser_settings settings_count_body =
2412
+ {.on_message_begin = message_begin_cb
2413
+ ,.on_header_field = header_field_cb
2414
+ ,.on_header_value = header_value_cb
2415
+ ,.on_url = request_url_cb
2416
+ ,.on_status = response_status_cb
2417
+ ,.on_body = count_body_cb
2418
+ ,.on_headers_complete = headers_complete_cb
2419
+ ,.on_message_complete = message_complete_cb
2420
+ ,.on_chunk_header = chunk_header_cb
2421
+ ,.on_chunk_complete = chunk_complete_cb
2422
+ };
2423
+
2424
+ static http_parser_settings settings_connect =
2425
+ {.on_message_begin = message_begin_cb
2426
+ ,.on_header_field = header_field_cb
2427
+ ,.on_header_value = header_value_cb
2428
+ ,.on_url = request_url_cb
2429
+ ,.on_status = response_status_cb
2430
+ ,.on_body = dontcall_body_cb
2431
+ ,.on_headers_complete = connect_headers_complete_cb
2432
+ ,.on_message_complete = connect_message_complete_cb
2433
+ ,.on_chunk_header = chunk_header_cb
2434
+ ,.on_chunk_complete = chunk_complete_cb
2435
+ };
2436
+
2437
+ static http_parser_settings settings_null =
2438
+ {.on_message_begin = 0
2439
+ ,.on_header_field = 0
2440
+ ,.on_header_value = 0
2441
+ ,.on_url = 0
2442
+ ,.on_status = 0
2443
+ ,.on_body = 0
2444
+ ,.on_headers_complete = 0
2445
+ ,.on_message_complete = 0
2446
+ ,.on_chunk_header = 0
2447
+ ,.on_chunk_complete = 0
2448
+ };
2449
+
2450
+ void
2451
+ parser_init (enum http_parser_type type)
2452
+ {
2453
+ num_messages = 0;
2454
+
2455
+ assert(parser == NULL);
2456
+
2457
+ parser = malloc(sizeof(http_parser));
2458
+
2459
+ http_parser_init(parser, type);
2460
+
2461
+ memset(&messages, 0, sizeof messages);
2462
+
2463
+ }
2464
+
2465
+ void
2466
+ parser_free ()
2467
+ {
2468
+ assert(parser);
2469
+ free(parser);
2470
+ parser = NULL;
2471
+ }
2472
+
2473
+ size_t parse (const char *buf, size_t len)
2474
+ {
2475
+ size_t nparsed;
2476
+ currently_parsing_eof = (len == 0);
2477
+ nparsed = http_parser_execute(parser, &settings, buf, len);
2478
+ return nparsed;
2479
+ }
2480
+
2481
+ size_t parse_count_body (const char *buf, size_t len)
2482
+ {
2483
+ size_t nparsed;
2484
+ currently_parsing_eof = (len == 0);
2485
+ nparsed = http_parser_execute(parser, &settings_count_body, buf, len);
2486
+ return nparsed;
2487
+ }
2488
+
2489
+ size_t parse_pause (const char *buf, size_t len)
2490
+ {
2491
+ size_t nparsed;
2492
+ http_parser_settings s = settings_pause;
2493
+
2494
+ currently_parsing_eof = (len == 0);
2495
+ current_pause_parser = &s;
2496
+ nparsed = http_parser_execute(parser, current_pause_parser, buf, len);
2497
+ return nparsed;
2498
+ }
2499
+
2500
+ size_t parse_connect (const char *buf, size_t len)
2501
+ {
2502
+ size_t nparsed;
2503
+ currently_parsing_eof = (len == 0);
2504
+ nparsed = http_parser_execute(parser, &settings_connect, buf, len);
2505
+ return nparsed;
2506
+ }
2507
+
2508
+ static inline int
2509
+ check_str_eq (const struct message *m,
2510
+ const char *prop,
2511
+ const char *expected,
2512
+ const char *found) {
2513
+ if ((expected == NULL) != (found == NULL)) {
2514
+ printf("\n*** Error: %s in '%s' ***\n\n", prop, m->name);
2515
+ printf("expected %s\n", (expected == NULL) ? "NULL" : expected);
2516
+ printf(" found %s\n", (found == NULL) ? "NULL" : found);
2517
+ return 0;
2518
+ }
2519
+ if (expected != NULL && 0 != strcmp(expected, found)) {
2520
+ printf("\n*** Error: %s in '%s' ***\n\n", prop, m->name);
2521
+ printf("expected '%s'\n", expected);
2522
+ printf(" found '%s'\n", found);
2523
+ return 0;
2524
+ }
2525
+ return 1;
2526
+ }
2527
+
2528
+ static inline int
2529
+ check_num_eq (const struct message *m,
2530
+ const char *prop,
2531
+ int expected,
2532
+ int found) {
2533
+ if (expected != found) {
2534
+ printf("\n*** Error: %s in '%s' ***\n\n", prop, m->name);
2535
+ printf("expected %d\n", expected);
2536
+ printf(" found %d\n", found);
2537
+ return 0;
2538
+ }
2539
+ return 1;
2540
+ }
2541
+
2542
+ #define MESSAGE_CHECK_STR_EQ(expected, found, prop) \
2543
+ if (!check_str_eq(expected, #prop, expected->prop, found->prop)) return 0
2544
+
2545
+ #define MESSAGE_CHECK_NUM_EQ(expected, found, prop) \
2546
+ if (!check_num_eq(expected, #prop, expected->prop, found->prop)) return 0
2547
+
2548
+ #define MESSAGE_CHECK_URL_EQ(u, expected, found, prop, fn) \
2549
+ do { \
2550
+ char ubuf[256]; \
2551
+ \
2552
+ if ((u)->field_set & (1 << (fn))) { \
2553
+ memcpy(ubuf, (found)->request_url + (u)->field_data[(fn)].off, \
2554
+ (u)->field_data[(fn)].len); \
2555
+ ubuf[(u)->field_data[(fn)].len] = '\0'; \
2556
+ } else { \
2557
+ ubuf[0] = '\0'; \
2558
+ } \
2559
+ \
2560
+ check_str_eq(expected, #prop, expected->prop, ubuf); \
2561
+ } while(0)
2562
+
2563
+ int
2564
+ message_eq (int index, int connect, const struct message *expected)
2565
+ {
2566
+ int i;
2567
+ struct message *m = &messages[index];
2568
+
2569
+ MESSAGE_CHECK_NUM_EQ(expected, m, http_major);
2570
+ MESSAGE_CHECK_NUM_EQ(expected, m, http_minor);
2571
+
2572
+ if (expected->type == HTTP_REQUEST) {
2573
+ MESSAGE_CHECK_NUM_EQ(expected, m, method);
2574
+ } else {
2575
+ MESSAGE_CHECK_NUM_EQ(expected, m, status_code);
2576
+ MESSAGE_CHECK_STR_EQ(expected, m, response_status);
2577
+ assert(m->status_cb_called);
2578
+ }
2579
+
2580
+ if (!connect) {
2581
+ MESSAGE_CHECK_NUM_EQ(expected, m, should_keep_alive);
2582
+ MESSAGE_CHECK_NUM_EQ(expected, m, message_complete_on_eof);
2583
+ }
2584
+
2585
+ assert(m->message_begin_cb_called);
2586
+ assert(m->headers_complete_cb_called);
2587
+ assert(m->message_complete_cb_called);
2588
+
2589
+
2590
+ MESSAGE_CHECK_STR_EQ(expected, m, request_url);
2591
+
2592
+ /* Check URL components; we can't do this w/ CONNECT since it doesn't
2593
+ * send us a well-formed URL.
2594
+ */
2595
+ if (*m->request_url && m->method != HTTP_CONNECT) {
2596
+ struct http_parser_url u;
2597
+
2598
+ if (http_parser_parse_url(m->request_url, strlen(m->request_url), 0, &u)) {
2599
+ fprintf(stderr, "\n\n*** failed to parse URL %s ***\n\n",
2600
+ m->request_url);
2601
+ abort();
2602
+ }
2603
+
2604
+ if (expected->host) {
2605
+ MESSAGE_CHECK_URL_EQ(&u, expected, m, host, UF_HOST);
2606
+ }
2607
+
2608
+ if (expected->userinfo) {
2609
+ MESSAGE_CHECK_URL_EQ(&u, expected, m, userinfo, UF_USERINFO);
2610
+ }
2611
+
2612
+ m->port = (u.field_set & (1 << UF_PORT)) ?
2613
+ u.port : 0;
2614
+
2615
+ MESSAGE_CHECK_URL_EQ(&u, expected, m, query_string, UF_QUERY);
2616
+ MESSAGE_CHECK_URL_EQ(&u, expected, m, fragment, UF_FRAGMENT);
2617
+ MESSAGE_CHECK_URL_EQ(&u, expected, m, request_path, UF_PATH);
2618
+ MESSAGE_CHECK_NUM_EQ(expected, m, port);
2619
+ }
2620
+
2621
+ if (connect) {
2622
+ check_num_eq(m, "body_size", 0, m->body_size);
2623
+ } else if (expected->body_size) {
2624
+ MESSAGE_CHECK_NUM_EQ(expected, m, body_size);
2625
+ } else {
2626
+ MESSAGE_CHECK_STR_EQ(expected, m, body);
2627
+ }
2628
+
2629
+ if (connect) {
2630
+ check_num_eq(m, "num_chunks_complete", 0, m->num_chunks_complete);
2631
+ } else {
2632
+ assert(m->num_chunks == m->num_chunks_complete);
2633
+ MESSAGE_CHECK_NUM_EQ(expected, m, num_chunks_complete);
2634
+ for (i = 0; i < m->num_chunks && i < MAX_CHUNKS; i++) {
2635
+ MESSAGE_CHECK_NUM_EQ(expected, m, chunk_lengths[i]);
2636
+ }
2637
+ }
2638
+
2639
+ MESSAGE_CHECK_NUM_EQ(expected, m, num_headers);
2640
+
2641
+ int r;
2642
+ for (i = 0; i < m->num_headers; i++) {
2643
+ r = check_str_eq(expected, "header field", expected->headers[i][0], m->headers[i][0]);
2644
+ if (!r) return 0;
2645
+ r = check_str_eq(expected, "header value", expected->headers[i][1], m->headers[i][1]);
2646
+ if (!r) return 0;
2647
+ }
2648
+
2649
+ if (!connect) {
2650
+ MESSAGE_CHECK_STR_EQ(expected, m, upgrade);
2651
+ }
2652
+
2653
+ return 1;
2654
+ }
2655
+
2656
+ /* Given a sequence of varargs messages, return the number of them that the
2657
+ * parser should successfully parse, taking into account that upgraded
2658
+ * messages prevent all subsequent messages from being parsed.
2659
+ */
2660
+ size_t
2661
+ count_parsed_messages(const size_t nmsgs, ...) {
2662
+ size_t i;
2663
+ va_list ap;
2664
+
2665
+ va_start(ap, nmsgs);
2666
+
2667
+ for (i = 0; i < nmsgs; i++) {
2668
+ struct message *m = va_arg(ap, struct message *);
2669
+
2670
+ if (m->upgrade) {
2671
+ va_end(ap);
2672
+ return i + 1;
2673
+ }
2674
+ }
2675
+
2676
+ va_end(ap);
2677
+ return nmsgs;
2678
+ }
2679
+
2680
+ /* Given a sequence of bytes and the number of these that we were able to
2681
+ * parse, verify that upgrade bodies are correct.
2682
+ */
2683
+ void
2684
+ upgrade_message_fix(char *body, const size_t nread, const size_t nmsgs, ...) {
2685
+ va_list ap;
2686
+ size_t i;
2687
+ size_t off = 0;
2688
+
2689
+ va_start(ap, nmsgs);
2690
+
2691
+ for (i = 0; i < nmsgs; i++) {
2692
+ struct message *m = va_arg(ap, struct message *);
2693
+
2694
+ off += strlen(m->raw);
2695
+
2696
+ if (m->upgrade) {
2697
+ off -= strlen(m->upgrade);
2698
+
2699
+ /* Check the portion of the response after its specified upgrade */
2700
+ if (!check_str_eq(m, "upgrade", body + off, body + nread)) {
2701
+ abort();
2702
+ }
2703
+
2704
+ /* Fix up the response so that message_eq() will verify the beginning
2705
+ * of the upgrade */
2706
+ *(body + nread + strlen(m->upgrade)) = '\0';
2707
+ messages[num_messages -1 ].upgrade = body + nread;
2708
+
2709
+ va_end(ap);
2710
+ return;
2711
+ }
2712
+ }
2713
+
2714
+ va_end(ap);
2715
+ printf("\n\n*** Error: expected a message with upgrade ***\n");
2716
+
2717
+ abort();
2718
+ }
2719
+
2720
+ static void
2721
+ print_error (const char *raw, size_t error_location)
2722
+ {
2723
+ fprintf(stderr, "\n*** %s ***\n\n",
2724
+ http_errno_description(HTTP_PARSER_ERRNO(parser)));
2725
+
2726
+ int this_line = 0, char_len = 0;
2727
+ size_t i, j, len = strlen(raw), error_location_line = 0;
2728
+ for (i = 0; i < len; i++) {
2729
+ if (i == error_location) this_line = 1;
2730
+ switch (raw[i]) {
2731
+ case '\r':
2732
+ char_len = 2;
2733
+ fprintf(stderr, "\\r");
2734
+ break;
2735
+
2736
+ case '\n':
2737
+ fprintf(stderr, "\\n\n");
2738
+
2739
+ if (this_line) goto print;
2740
+
2741
+ error_location_line = 0;
2742
+ continue;
2743
+
2744
+ default:
2745
+ char_len = 1;
2746
+ fputc(raw[i], stderr);
2747
+ break;
2748
+ }
2749
+ if (!this_line) error_location_line += char_len;
2750
+ }
2751
+
2752
+ fprintf(stderr, "[eof]\n");
2753
+
2754
+ print:
2755
+ for (j = 0; j < error_location_line; j++) {
2756
+ fputc(' ', stderr);
2757
+ }
2758
+ fprintf(stderr, "^\n\nerror location: %u\n", (unsigned int)error_location);
2759
+ }
2760
+
2761
+ void
2762
+ test_preserve_data (void)
2763
+ {
2764
+ char my_data[] = "application-specific data";
2765
+ http_parser parser;
2766
+ parser.data = my_data;
2767
+ http_parser_init(&parser, HTTP_REQUEST);
2768
+ if (parser.data != my_data) {
2769
+ printf("\n*** parser.data not preserved accross http_parser_init ***\n\n");
2770
+ abort();
2771
+ }
2772
+ }
2773
+
2774
+ struct url_test {
2775
+ const char *name;
2776
+ const char *url;
2777
+ int is_connect;
2778
+ struct http_parser_url u;
2779
+ int rv;
2780
+ };
2781
+
2782
+ const struct url_test url_tests[] =
2783
+ { {.name="proxy request"
2784
+ ,.url="http://hostname/"
2785
+ ,.is_connect=0
2786
+ ,.u=
2787
+ {.field_set=(1 << UF_SCHEMA) | (1 << UF_HOST) | (1 << UF_PATH)
2788
+ ,.port=0
2789
+ ,.field_data=
2790
+ {{ 0, 4 } /* UF_SCHEMA */
2791
+ ,{ 7, 8 } /* UF_HOST */
2792
+ ,{ 0, 0 } /* UF_PORT */
2793
+ ,{ 15, 1 } /* UF_PATH */
2794
+ ,{ 0, 0 } /* UF_QUERY */
2795
+ ,{ 0, 0 } /* UF_FRAGMENT */
2796
+ ,{ 0, 0 } /* UF_USERINFO */
2797
+ }
2798
+ }
2799
+ ,.rv=0
2800
+ }
2801
+
2802
+ , {.name="proxy request with port"
2803
+ ,.url="http://hostname:444/"
2804
+ ,.is_connect=0
2805
+ ,.u=
2806
+ {.field_set=(1 << UF_SCHEMA) | (1 << UF_HOST) | (1 << UF_PORT) | (1 << UF_PATH)
2807
+ ,.port=444
2808
+ ,.field_data=
2809
+ {{ 0, 4 } /* UF_SCHEMA */
2810
+ ,{ 7, 8 } /* UF_HOST */
2811
+ ,{ 16, 3 } /* UF_PORT */
2812
+ ,{ 19, 1 } /* UF_PATH */
2813
+ ,{ 0, 0 } /* UF_QUERY */
2814
+ ,{ 0, 0 } /* UF_FRAGMENT */
2815
+ ,{ 0, 0 } /* UF_USERINFO */
2816
+ }
2817
+ }
2818
+ ,.rv=0
2819
+ }
2820
+
2821
+ , {.name="CONNECT request"
2822
+ ,.url="hostname:443"
2823
+ ,.is_connect=1
2824
+ ,.u=
2825
+ {.field_set=(1 << UF_HOST) | (1 << UF_PORT)
2826
+ ,.port=443
2827
+ ,.field_data=
2828
+ {{ 0, 0 } /* UF_SCHEMA */
2829
+ ,{ 0, 8 } /* UF_HOST */
2830
+ ,{ 9, 3 } /* UF_PORT */
2831
+ ,{ 0, 0 } /* UF_PATH */
2832
+ ,{ 0, 0 } /* UF_QUERY */
2833
+ ,{ 0, 0 } /* UF_FRAGMENT */
2834
+ ,{ 0, 0 } /* UF_USERINFO */
2835
+ }
2836
+ }
2837
+ ,.rv=0
2838
+ }
2839
+
2840
+ , {.name="CONNECT request but not connect"
2841
+ ,.url="hostname:443"
2842
+ ,.is_connect=0
2843
+ ,.rv=1
2844
+ }
2845
+
2846
+ , {.name="proxy ipv6 request"
2847
+ ,.url="http://[1:2::3:4]/"
2848
+ ,.is_connect=0
2849
+ ,.u=
2850
+ {.field_set=(1 << UF_SCHEMA) | (1 << UF_HOST) | (1 << UF_PATH)
2851
+ ,.port=0
2852
+ ,.field_data=
2853
+ {{ 0, 4 } /* UF_SCHEMA */
2854
+ ,{ 8, 8 } /* UF_HOST */
2855
+ ,{ 0, 0 } /* UF_PORT */
2856
+ ,{ 17, 1 } /* UF_PATH */
2857
+ ,{ 0, 0 } /* UF_QUERY */
2858
+ ,{ 0, 0 } /* UF_FRAGMENT */
2859
+ ,{ 0, 0 } /* UF_USERINFO */
2860
+ }
2861
+ }
2862
+ ,.rv=0
2863
+ }
2864
+
2865
+ , {.name="proxy ipv6 request with port"
2866
+ ,.url="http://[1:2::3:4]:67/"
2867
+ ,.is_connect=0
2868
+ ,.u=
2869
+ {.field_set=(1 << UF_SCHEMA) | (1 << UF_HOST) | (1 << UF_PORT) | (1 << UF_PATH)
2870
+ ,.port=67
2871
+ ,.field_data=
2872
+ {{ 0, 4 } /* UF_SCHEMA */
2873
+ ,{ 8, 8 } /* UF_HOST */
2874
+ ,{ 18, 2 } /* UF_PORT */
2875
+ ,{ 20, 1 } /* UF_PATH */
2876
+ ,{ 0, 0 } /* UF_QUERY */
2877
+ ,{ 0, 0 } /* UF_FRAGMENT */
2878
+ ,{ 0, 0 } /* UF_USERINFO */
2879
+ }
2880
+ }
2881
+ ,.rv=0
2882
+ }
2883
+
2884
+ , {.name="CONNECT ipv6 address"
2885
+ ,.url="[1:2::3:4]:443"
2886
+ ,.is_connect=1
2887
+ ,.u=
2888
+ {.field_set=(1 << UF_HOST) | (1 << UF_PORT)
2889
+ ,.port=443
2890
+ ,.field_data=
2891
+ {{ 0, 0 } /* UF_SCHEMA */
2892
+ ,{ 1, 8 } /* UF_HOST */
2893
+ ,{ 11, 3 } /* UF_PORT */
2894
+ ,{ 0, 0 } /* UF_PATH */
2895
+ ,{ 0, 0 } /* UF_QUERY */
2896
+ ,{ 0, 0 } /* UF_FRAGMENT */
2897
+ ,{ 0, 0 } /* UF_USERINFO */
2898
+ }
2899
+ }
2900
+ ,.rv=0
2901
+ }
2902
+
2903
+ , {.name="ipv4 in ipv6 address"
2904
+ ,.url="http://[2001:0000:0000:0000:0000:0000:1.9.1.1]/"
2905
+ ,.is_connect=0
2906
+ ,.u=
2907
+ {.field_set=(1 << UF_SCHEMA) | (1 << UF_HOST) | (1 << UF_PATH)
2908
+ ,.port=0
2909
+ ,.field_data=
2910
+ {{ 0, 4 } /* UF_SCHEMA */
2911
+ ,{ 8, 37 } /* UF_HOST */
2912
+ ,{ 0, 0 } /* UF_PORT */
2913
+ ,{ 46, 1 } /* UF_PATH */
2914
+ ,{ 0, 0 } /* UF_QUERY */
2915
+ ,{ 0, 0 } /* UF_FRAGMENT */
2916
+ ,{ 0, 0 } /* UF_USERINFO */
2917
+ }
2918
+ }
2919
+ ,.rv=0
2920
+ }
2921
+
2922
+ , {.name="extra ? in query string"
2923
+ ,.url="http://a.tbcdn.cn/p/fp/2010c/??fp-header-min.css,fp-base-min.css,"
2924
+ "fp-channel-min.css,fp-product-min.css,fp-mall-min.css,fp-category-min.css,"
2925
+ "fp-sub-min.css,fp-gdp4p-min.css,fp-css3-min.css,fp-misc-min.css?t=20101022.css"
2926
+ ,.is_connect=0
2927
+ ,.u=
2928
+ {.field_set=(1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH) | (1<<UF_QUERY)
2929
+ ,.port=0
2930
+ ,.field_data=
2931
+ {{ 0, 4 } /* UF_SCHEMA */
2932
+ ,{ 7, 10 } /* UF_HOST */
2933
+ ,{ 0, 0 } /* UF_PORT */
2934
+ ,{ 17, 12 } /* UF_PATH */
2935
+ ,{ 30,187 } /* UF_QUERY */
2936
+ ,{ 0, 0 } /* UF_FRAGMENT */
2937
+ ,{ 0, 0 } /* UF_USERINFO */
2938
+ }
2939
+ }
2940
+ ,.rv=0
2941
+ }
2942
+
2943
+ , {.name="space URL encoded"
2944
+ ,.url="/toto.html?toto=a%20b"
2945
+ ,.is_connect=0
2946
+ ,.u=
2947
+ {.field_set= (1<<UF_PATH) | (1<<UF_QUERY)
2948
+ ,.port=0
2949
+ ,.field_data=
2950
+ {{ 0, 0 } /* UF_SCHEMA */
2951
+ ,{ 0, 0 } /* UF_HOST */
2952
+ ,{ 0, 0 } /* UF_PORT */
2953
+ ,{ 0, 10 } /* UF_PATH */
2954
+ ,{ 11, 10 } /* UF_QUERY */
2955
+ ,{ 0, 0 } /* UF_FRAGMENT */
2956
+ ,{ 0, 0 } /* UF_USERINFO */
2957
+ }
2958
+ }
2959
+ ,.rv=0
2960
+ }
2961
+
2962
+
2963
+ , {.name="URL fragment"
2964
+ ,.url="/toto.html#titi"
2965
+ ,.is_connect=0
2966
+ ,.u=
2967
+ {.field_set= (1<<UF_PATH) | (1<<UF_FRAGMENT)
2968
+ ,.port=0
2969
+ ,.field_data=
2970
+ {{ 0, 0 } /* UF_SCHEMA */
2971
+ ,{ 0, 0 } /* UF_HOST */
2972
+ ,{ 0, 0 } /* UF_PORT */
2973
+ ,{ 0, 10 } /* UF_PATH */
2974
+ ,{ 0, 0 } /* UF_QUERY */
2975
+ ,{ 11, 4 } /* UF_FRAGMENT */
2976
+ ,{ 0, 0 } /* UF_USERINFO */
2977
+ }
2978
+ }
2979
+ ,.rv=0
2980
+ }
2981
+
2982
+ , {.name="complex URL fragment"
2983
+ ,.url="http://www.webmasterworld.com/r.cgi?f=21&d=8405&url="
2984
+ "http://www.example.com/index.html?foo=bar&hello=world#midpage"
2985
+ ,.is_connect=0
2986
+ ,.u=
2987
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH) | (1<<UF_QUERY) |\
2988
+ (1<<UF_FRAGMENT)
2989
+ ,.port=0
2990
+ ,.field_data=
2991
+ {{ 0, 4 } /* UF_SCHEMA */
2992
+ ,{ 7, 22 } /* UF_HOST */
2993
+ ,{ 0, 0 } /* UF_PORT */
2994
+ ,{ 29, 6 } /* UF_PATH */
2995
+ ,{ 36, 69 } /* UF_QUERY */
2996
+ ,{106, 7 } /* UF_FRAGMENT */
2997
+ ,{ 0, 0 } /* UF_USERINFO */
2998
+ }
2999
+ }
3000
+ ,.rv=0
3001
+ }
3002
+
3003
+ , {.name="complex URL from node js url parser doc"
3004
+ ,.url="http://host.com:8080/p/a/t/h?query=string#hash"
3005
+ ,.is_connect=0
3006
+ ,.u=
3007
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PORT) | (1<<UF_PATH) |\
3008
+ (1<<UF_QUERY) | (1<<UF_FRAGMENT)
3009
+ ,.port=8080
3010
+ ,.field_data=
3011
+ {{ 0, 4 } /* UF_SCHEMA */
3012
+ ,{ 7, 8 } /* UF_HOST */
3013
+ ,{ 16, 4 } /* UF_PORT */
3014
+ ,{ 20, 8 } /* UF_PATH */
3015
+ ,{ 29, 12 } /* UF_QUERY */
3016
+ ,{ 42, 4 } /* UF_FRAGMENT */
3017
+ ,{ 0, 0 } /* UF_USERINFO */
3018
+ }
3019
+ }
3020
+ ,.rv=0
3021
+ }
3022
+
3023
+ , {.name="complex URL with basic auth from node js url parser doc"
3024
+ ,.url="http://a:b@host.com:8080/p/a/t/h?query=string#hash"
3025
+ ,.is_connect=0
3026
+ ,.u=
3027
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PORT) | (1<<UF_PATH) |\
3028
+ (1<<UF_QUERY) | (1<<UF_FRAGMENT) | (1<<UF_USERINFO)
3029
+ ,.port=8080
3030
+ ,.field_data=
3031
+ {{ 0, 4 } /* UF_SCHEMA */
3032
+ ,{ 11, 8 } /* UF_HOST */
3033
+ ,{ 20, 4 } /* UF_PORT */
3034
+ ,{ 24, 8 } /* UF_PATH */
3035
+ ,{ 33, 12 } /* UF_QUERY */
3036
+ ,{ 46, 4 } /* UF_FRAGMENT */
3037
+ ,{ 7, 3 } /* UF_USERINFO */
3038
+ }
3039
+ }
3040
+ ,.rv=0
3041
+ }
3042
+
3043
+ , {.name="double @"
3044
+ ,.url="http://a:b@@hostname:443/"
3045
+ ,.is_connect=0
3046
+ ,.rv=1
3047
+ }
3048
+
3049
+ , {.name="proxy empty host"
3050
+ ,.url="http://:443/"
3051
+ ,.is_connect=0
3052
+ ,.rv=1
3053
+ }
3054
+
3055
+ , {.name="proxy empty port"
3056
+ ,.url="http://hostname:/"
3057
+ ,.is_connect=0
3058
+ ,.rv=1
3059
+ }
3060
+
3061
+ , {.name="CONNECT with basic auth"
3062
+ ,.url="a:b@hostname:443"
3063
+ ,.is_connect=1
3064
+ ,.rv=1
3065
+ }
3066
+
3067
+ , {.name="CONNECT empty host"
3068
+ ,.url=":443"
3069
+ ,.is_connect=1
3070
+ ,.rv=1
3071
+ }
3072
+
3073
+ , {.name="CONNECT empty port"
3074
+ ,.url="hostname:"
3075
+ ,.is_connect=1
3076
+ ,.rv=1
3077
+ }
3078
+
3079
+ , {.name="CONNECT with extra bits"
3080
+ ,.url="hostname:443/"
3081
+ ,.is_connect=1
3082
+ ,.rv=1
3083
+ }
3084
+
3085
+ , {.name="space in URL"
3086
+ ,.url="/foo bar/"
3087
+ ,.rv=1 /* s_dead */
3088
+ }
3089
+
3090
+ , {.name="proxy basic auth with space url encoded"
3091
+ ,.url="http://a%20:b@host.com/"
3092
+ ,.is_connect=0
3093
+ ,.u=
3094
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH) | (1<<UF_USERINFO)
3095
+ ,.port=0
3096
+ ,.field_data=
3097
+ {{ 0, 4 } /* UF_SCHEMA */
3098
+ ,{ 14, 8 } /* UF_HOST */
3099
+ ,{ 0, 0 } /* UF_PORT */
3100
+ ,{ 22, 1 } /* UF_PATH */
3101
+ ,{ 0, 0 } /* UF_QUERY */
3102
+ ,{ 0, 0 } /* UF_FRAGMENT */
3103
+ ,{ 7, 6 } /* UF_USERINFO */
3104
+ }
3105
+ }
3106
+ ,.rv=0
3107
+ }
3108
+
3109
+ , {.name="carriage return in URL"
3110
+ ,.url="/foo\rbar/"
3111
+ ,.rv=1 /* s_dead */
3112
+ }
3113
+
3114
+ , {.name="proxy double : in URL"
3115
+ ,.url="http://hostname::443/"
3116
+ ,.rv=1 /* s_dead */
3117
+ }
3118
+
3119
+ , {.name="proxy basic auth with double :"
3120
+ ,.url="http://a::b@host.com/"
3121
+ ,.is_connect=0
3122
+ ,.u=
3123
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH) | (1<<UF_USERINFO)
3124
+ ,.port=0
3125
+ ,.field_data=
3126
+ {{ 0, 4 } /* UF_SCHEMA */
3127
+ ,{ 12, 8 } /* UF_HOST */
3128
+ ,{ 0, 0 } /* UF_PORT */
3129
+ ,{ 20, 1 } /* UF_PATH */
3130
+ ,{ 0, 0 } /* UF_QUERY */
3131
+ ,{ 0, 0 } /* UF_FRAGMENT */
3132
+ ,{ 7, 4 } /* UF_USERINFO */
3133
+ }
3134
+ }
3135
+ ,.rv=0
3136
+ }
3137
+
3138
+ , {.name="line feed in URL"
3139
+ ,.url="/foo\nbar/"
3140
+ ,.rv=1 /* s_dead */
3141
+ }
3142
+
3143
+ , {.name="proxy empty basic auth"
3144
+ ,.url="http://@hostname/fo"
3145
+ ,.u=
3146
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH)
3147
+ ,.port=0
3148
+ ,.field_data=
3149
+ {{ 0, 4 } /* UF_SCHEMA */
3150
+ ,{ 8, 8 } /* UF_HOST */
3151
+ ,{ 0, 0 } /* UF_PORT */
3152
+ ,{ 16, 3 } /* UF_PATH */
3153
+ ,{ 0, 0 } /* UF_QUERY */
3154
+ ,{ 0, 0 } /* UF_FRAGMENT */
3155
+ ,{ 0, 0 } /* UF_USERINFO */
3156
+ }
3157
+ }
3158
+ ,.rv=0
3159
+ }
3160
+ , {.name="proxy line feed in hostname"
3161
+ ,.url="http://host\name/fo"
3162
+ ,.rv=1 /* s_dead */
3163
+ }
3164
+
3165
+ , {.name="proxy % in hostname"
3166
+ ,.url="http://host%name/fo"
3167
+ ,.rv=1 /* s_dead */
3168
+ }
3169
+
3170
+ , {.name="proxy ; in hostname"
3171
+ ,.url="http://host;ame/fo"
3172
+ ,.rv=1 /* s_dead */
3173
+ }
3174
+
3175
+ , {.name="proxy basic auth with unreservedchars"
3176
+ ,.url="http://a!;-_!=+$@host.com/"
3177
+ ,.is_connect=0
3178
+ ,.u=
3179
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH) | (1<<UF_USERINFO)
3180
+ ,.port=0
3181
+ ,.field_data=
3182
+ {{ 0, 4 } /* UF_SCHEMA */
3183
+ ,{ 17, 8 } /* UF_HOST */
3184
+ ,{ 0, 0 } /* UF_PORT */
3185
+ ,{ 25, 1 } /* UF_PATH */
3186
+ ,{ 0, 0 } /* UF_QUERY */
3187
+ ,{ 0, 0 } /* UF_FRAGMENT */
3188
+ ,{ 7, 9 } /* UF_USERINFO */
3189
+ }
3190
+ }
3191
+ ,.rv=0
3192
+ }
3193
+
3194
+ , {.name="proxy only empty basic auth"
3195
+ ,.url="http://@/fo"
3196
+ ,.rv=1 /* s_dead */
3197
+ }
3198
+
3199
+ , {.name="proxy only basic auth"
3200
+ ,.url="http://toto@/fo"
3201
+ ,.rv=1 /* s_dead */
3202
+ }
3203
+
3204
+ , {.name="proxy emtpy hostname"
3205
+ ,.url="http:///fo"
3206
+ ,.rv=1 /* s_dead */
3207
+ }
3208
+
3209
+ , {.name="proxy = in URL"
3210
+ ,.url="http://host=ame/fo"
3211
+ ,.rv=1 /* s_dead */
3212
+ }
3213
+
3214
+ , {.name="ipv6 address with Zone ID"
3215
+ ,.url="http://[fe80::a%25eth0]/"
3216
+ ,.is_connect=0
3217
+ ,.u=
3218
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH)
3219
+ ,.port=0
3220
+ ,.field_data=
3221
+ {{ 0, 4 } /* UF_SCHEMA */
3222
+ ,{ 8, 14 } /* UF_HOST */
3223
+ ,{ 0, 0 } /* UF_PORT */
3224
+ ,{ 23, 1 } /* UF_PATH */
3225
+ ,{ 0, 0 } /* UF_QUERY */
3226
+ ,{ 0, 0 } /* UF_FRAGMENT */
3227
+ ,{ 0, 0 } /* UF_USERINFO */
3228
+ }
3229
+ }
3230
+ ,.rv=0
3231
+ }
3232
+
3233
+ , {.name="ipv6 address with Zone ID, but '%' is not percent-encoded"
3234
+ ,.url="http://[fe80::a%eth0]/"
3235
+ ,.is_connect=0
3236
+ ,.u=
3237
+ {.field_set= (1<<UF_SCHEMA) | (1<<UF_HOST) | (1<<UF_PATH)
3238
+ ,.port=0
3239
+ ,.field_data=
3240
+ {{ 0, 4 } /* UF_SCHEMA */
3241
+ ,{ 8, 12 } /* UF_HOST */
3242
+ ,{ 0, 0 } /* UF_PORT */
3243
+ ,{ 21, 1 } /* UF_PATH */
3244
+ ,{ 0, 0 } /* UF_QUERY */
3245
+ ,{ 0, 0 } /* UF_FRAGMENT */
3246
+ ,{ 0, 0 } /* UF_USERINFO */
3247
+ }
3248
+ }
3249
+ ,.rv=0
3250
+ }
3251
+
3252
+ , {.name="ipv6 address ending with '%'"
3253
+ ,.url="http://[fe80::a%]/"
3254
+ ,.rv=1 /* s_dead */
3255
+ }
3256
+
3257
+ , {.name="ipv6 address with Zone ID including bad character"
3258
+ ,.url="http://[fe80::a%$HOME]/"
3259
+ ,.rv=1 /* s_dead */
3260
+ }
3261
+
3262
+ , {.name="just ipv6 Zone ID"
3263
+ ,.url="http://[%eth0]/"
3264
+ ,.rv=1 /* s_dead */
3265
+ }
3266
+
3267
+ #if HTTP_PARSER_STRICT
3268
+
3269
+ , {.name="tab in URL"
3270
+ ,.url="/foo\tbar/"
3271
+ ,.rv=1 /* s_dead */
3272
+ }
3273
+
3274
+ , {.name="form feed in URL"
3275
+ ,.url="/foo\fbar/"
3276
+ ,.rv=1 /* s_dead */
3277
+ }
3278
+
3279
+ #else /* !HTTP_PARSER_STRICT */
3280
+
3281
+ , {.name="tab in URL"
3282
+ ,.url="/foo\tbar/"
3283
+ ,.u=
3284
+ {.field_set=(1 << UF_PATH)
3285
+ ,.field_data=
3286
+ {{ 0, 0 } /* UF_SCHEMA */
3287
+ ,{ 0, 0 } /* UF_HOST */
3288
+ ,{ 0, 0 } /* UF_PORT */
3289
+ ,{ 0, 9 } /* UF_PATH */
3290
+ ,{ 0, 0 } /* UF_QUERY */
3291
+ ,{ 0, 0 } /* UF_FRAGMENT */
3292
+ ,{ 0, 0 } /* UF_USERINFO */
3293
+ }
3294
+ }
3295
+ ,.rv=0
3296
+ }
3297
+
3298
+ , {.name="form feed in URL"
3299
+ ,.url="/foo\fbar/"
3300
+ ,.u=
3301
+ {.field_set=(1 << UF_PATH)
3302
+ ,.field_data=
3303
+ {{ 0, 0 } /* UF_SCHEMA */
3304
+ ,{ 0, 0 } /* UF_HOST */
3305
+ ,{ 0, 0 } /* UF_PORT */
3306
+ ,{ 0, 9 } /* UF_PATH */
3307
+ ,{ 0, 0 } /* UF_QUERY */
3308
+ ,{ 0, 0 } /* UF_FRAGMENT */
3309
+ ,{ 0, 0 } /* UF_USERINFO */
3310
+ }
3311
+ }
3312
+ ,.rv=0
3313
+ }
3314
+ #endif
3315
+ };
3316
+
3317
+ void
3318
+ dump_url (const char *url, const struct http_parser_url *u)
3319
+ {
3320
+ unsigned int i;
3321
+
3322
+ printf("\tfield_set: 0x%x, port: %u\n", u->field_set, u->port);
3323
+ for (i = 0; i < UF_MAX; i++) {
3324
+ if ((u->field_set & (1 << i)) == 0) {
3325
+ printf("\tfield_data[%u]: unset\n", i);
3326
+ continue;
3327
+ }
3328
+
3329
+ printf("\tfield_data[%u]: off: %u len: %u part: \"%.*s\n\"",
3330
+ i,
3331
+ u->field_data[i].off,
3332
+ u->field_data[i].len,
3333
+ u->field_data[i].len,
3334
+ url + u->field_data[i].off);
3335
+ }
3336
+ }
3337
+
3338
+ void
3339
+ test_parse_url (void)
3340
+ {
3341
+ struct http_parser_url u;
3342
+ const struct url_test *test;
3343
+ unsigned int i;
3344
+ int rv;
3345
+
3346
+ for (i = 0; i < (sizeof(url_tests) / sizeof(url_tests[0])); i++) {
3347
+ test = &url_tests[i];
3348
+ memset(&u, 0, sizeof(u));
3349
+
3350
+ rv = http_parser_parse_url(test->url,
3351
+ strlen(test->url),
3352
+ test->is_connect,
3353
+ &u);
3354
+
3355
+ if (test->rv == 0) {
3356
+ if (rv != 0) {
3357
+ printf("\n*** http_parser_parse_url(\"%s\") \"%s\" test failed, "
3358
+ "unexpected rv %d ***\n\n", test->url, test->name, rv);
3359
+ abort();
3360
+ }
3361
+
3362
+ if (memcmp(&u, &test->u, sizeof(u)) != 0) {
3363
+ printf("\n*** http_parser_parse_url(\"%s\") \"%s\" failed ***\n",
3364
+ test->url, test->name);
3365
+
3366
+ printf("target http_parser_url:\n");
3367
+ dump_url(test->url, &test->u);
3368
+ printf("result http_parser_url:\n");
3369
+ dump_url(test->url, &u);
3370
+
3371
+ abort();
3372
+ }
3373
+ } else {
3374
+ /* test->rv != 0 */
3375
+ if (rv == 0) {
3376
+ printf("\n*** http_parser_parse_url(\"%s\") \"%s\" test failed, "
3377
+ "unexpected rv %d ***\n\n", test->url, test->name, rv);
3378
+ abort();
3379
+ }
3380
+ }
3381
+ }
3382
+ }
3383
+
3384
+ void
3385
+ test_method_str (void)
3386
+ {
3387
+ assert(0 == strcmp("GET", http_method_str(HTTP_GET)));
3388
+ assert(0 == strcmp("<unknown>", http_method_str(1337)));
3389
+ }
3390
+
3391
+ void
3392
+ test_message (const struct message *message)
3393
+ {
3394
+ size_t raw_len = strlen(message->raw);
3395
+ size_t msg1len;
3396
+ for (msg1len = 0; msg1len < raw_len; msg1len++) {
3397
+ parser_init(message->type);
3398
+
3399
+ size_t read;
3400
+ const char *msg1 = message->raw;
3401
+ const char *msg2 = msg1 + msg1len;
3402
+ size_t msg2len = raw_len - msg1len;
3403
+
3404
+ if (msg1len) {
3405
+ read = parse(msg1, msg1len);
3406
+
3407
+ if (message->upgrade && parser->upgrade && num_messages > 0) {
3408
+ messages[num_messages - 1].upgrade = msg1 + read;
3409
+ goto test;
3410
+ }
3411
+
3412
+ if (read != msg1len) {
3413
+ print_error(msg1, read);
3414
+ abort();
3415
+ }
3416
+ }
3417
+
3418
+
3419
+ read = parse(msg2, msg2len);
3420
+
3421
+ if (message->upgrade && parser->upgrade) {
3422
+ messages[num_messages - 1].upgrade = msg2 + read;
3423
+ goto test;
3424
+ }
3425
+
3426
+ if (read != msg2len) {
3427
+ print_error(msg2, read);
3428
+ abort();
3429
+ }
3430
+
3431
+ read = parse(NULL, 0);
3432
+
3433
+ if (read != 0) {
3434
+ print_error(message->raw, read);
3435
+ abort();
3436
+ }
3437
+
3438
+ test:
3439
+
3440
+ if (num_messages != 1) {
3441
+ printf("\n*** num_messages != 1 after testing '%s' ***\n\n", message->name);
3442
+ abort();
3443
+ }
3444
+
3445
+ if(!message_eq(0, 0, message)) abort();
3446
+
3447
+ parser_free();
3448
+ }
3449
+ }
3450
+
3451
+ void
3452
+ test_message_count_body (const struct message *message)
3453
+ {
3454
+ parser_init(message->type);
3455
+
3456
+ size_t read;
3457
+ size_t l = strlen(message->raw);
3458
+ size_t i, toread;
3459
+ size_t chunk = 4024;
3460
+
3461
+ for (i = 0; i < l; i+= chunk) {
3462
+ toread = MIN(l-i, chunk);
3463
+ read = parse_count_body(message->raw + i, toread);
3464
+ if (read != toread) {
3465
+ print_error(message->raw, read);
3466
+ abort();
3467
+ }
3468
+ }
3469
+
3470
+
3471
+ read = parse_count_body(NULL, 0);
3472
+ if (read != 0) {
3473
+ print_error(message->raw, read);
3474
+ abort();
3475
+ }
3476
+
3477
+ if (num_messages != 1) {
3478
+ printf("\n*** num_messages != 1 after testing '%s' ***\n\n", message->name);
3479
+ abort();
3480
+ }
3481
+
3482
+ if(!message_eq(0, 0, message)) abort();
3483
+
3484
+ parser_free();
3485
+ }
3486
+
3487
+ void
3488
+ test_simple_type (const char *buf,
3489
+ enum http_errno err_expected,
3490
+ enum http_parser_type type)
3491
+ {
3492
+ parser_init(type);
3493
+
3494
+ enum http_errno err;
3495
+
3496
+ parse(buf, strlen(buf));
3497
+ err = HTTP_PARSER_ERRNO(parser);
3498
+ parse(NULL, 0);
3499
+
3500
+ parser_free();
3501
+
3502
+ /* In strict mode, allow us to pass with an unexpected HPE_STRICT as
3503
+ * long as the caller isn't expecting success.
3504
+ */
3505
+ #if HTTP_PARSER_STRICT
3506
+ if (err_expected != err && err_expected != HPE_OK && err != HPE_STRICT) {
3507
+ #else
3508
+ if (err_expected != err) {
3509
+ #endif
3510
+ fprintf(stderr, "\n*** test_simple expected %s, but saw %s ***\n\n%s\n",
3511
+ http_errno_name(err_expected), http_errno_name(err), buf);
3512
+ abort();
3513
+ }
3514
+ }
3515
+
3516
+ void
3517
+ test_simple (const char *buf, enum http_errno err_expected)
3518
+ {
3519
+ test_simple_type(buf, err_expected, HTTP_REQUEST);
3520
+ }
3521
+
3522
+ void
3523
+ test_invalid_header_content (int req, const char* str)
3524
+ {
3525
+ http_parser parser;
3526
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3527
+ size_t parsed;
3528
+ const char *buf;
3529
+ buf = req ?
3530
+ "GET / HTTP/1.1\r\n" :
3531
+ "HTTP/1.1 200 OK\r\n";
3532
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3533
+ assert(parsed == strlen(buf));
3534
+
3535
+ buf = str;
3536
+ size_t buflen = strlen(buf);
3537
+
3538
+ parsed = http_parser_execute(&parser, &settings_null, buf, buflen);
3539
+ if (parsed != buflen) {
3540
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_INVALID_HEADER_TOKEN);
3541
+ return;
3542
+ }
3543
+
3544
+ fprintf(stderr,
3545
+ "\n*** Error expected but none in invalid header content test ***\n");
3546
+ abort();
3547
+ }
3548
+
3549
+ void
3550
+ test_invalid_header_field_content_error (int req)
3551
+ {
3552
+ test_invalid_header_content(req, "Foo: F\01ailure");
3553
+ test_invalid_header_content(req, "Foo: B\02ar");
3554
+ }
3555
+
3556
+ void
3557
+ test_invalid_header_field (int req, const char* str)
3558
+ {
3559
+ http_parser parser;
3560
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3561
+ size_t parsed;
3562
+ const char *buf;
3563
+ buf = req ?
3564
+ "GET / HTTP/1.1\r\n" :
3565
+ "HTTP/1.1 200 OK\r\n";
3566
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3567
+ assert(parsed == strlen(buf));
3568
+
3569
+ buf = str;
3570
+ size_t buflen = strlen(buf);
3571
+
3572
+ parsed = http_parser_execute(&parser, &settings_null, buf, buflen);
3573
+ if (parsed != buflen) {
3574
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_INVALID_HEADER_TOKEN);
3575
+ return;
3576
+ }
3577
+
3578
+ fprintf(stderr,
3579
+ "\n*** Error expected but none in invalid header token test ***\n");
3580
+ abort();
3581
+ }
3582
+
3583
+ void
3584
+ test_invalid_header_field_token_error (int req)
3585
+ {
3586
+ test_invalid_header_field(req, "Fo@: Failure");
3587
+ test_invalid_header_field(req, "Foo\01\test: Bar");
3588
+ }
3589
+
3590
+ void
3591
+ test_double_content_length_error (int req)
3592
+ {
3593
+ http_parser parser;
3594
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3595
+ size_t parsed;
3596
+ const char *buf;
3597
+ buf = req ?
3598
+ "GET / HTTP/1.1\r\n" :
3599
+ "HTTP/1.1 200 OK\r\n";
3600
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3601
+ assert(parsed == strlen(buf));
3602
+
3603
+ buf = "Content-Length: 0\r\nContent-Length: 1\r\n\r\n";
3604
+ size_t buflen = strlen(buf);
3605
+
3606
+ parsed = http_parser_execute(&parser, &settings_null, buf, buflen);
3607
+ if (parsed != buflen) {
3608
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_UNEXPECTED_CONTENT_LENGTH);
3609
+ return;
3610
+ }
3611
+
3612
+ fprintf(stderr,
3613
+ "\n*** Error expected but none in double content-length test ***\n");
3614
+ abort();
3615
+ }
3616
+
3617
+ void
3618
+ test_chunked_content_length_error (int req)
3619
+ {
3620
+ http_parser parser;
3621
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3622
+ size_t parsed;
3623
+ const char *buf;
3624
+ buf = req ?
3625
+ "GET / HTTP/1.1\r\n" :
3626
+ "HTTP/1.1 200 OK\r\n";
3627
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3628
+ assert(parsed == strlen(buf));
3629
+
3630
+ buf = "Transfer-Encoding: chunked\r\nContent-Length: 1\r\n\r\n";
3631
+ size_t buflen = strlen(buf);
3632
+
3633
+ parsed = http_parser_execute(&parser, &settings_null, buf, buflen);
3634
+ if (parsed != buflen) {
3635
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_UNEXPECTED_CONTENT_LENGTH);
3636
+ return;
3637
+ }
3638
+
3639
+ fprintf(stderr,
3640
+ "\n*** Error expected but none in chunked content-length test ***\n");
3641
+ abort();
3642
+ }
3643
+
3644
+ void
3645
+ test_header_cr_no_lf_error (int req)
3646
+ {
3647
+ http_parser parser;
3648
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3649
+ size_t parsed;
3650
+ const char *buf;
3651
+ buf = req ?
3652
+ "GET / HTTP/1.1\r\n" :
3653
+ "HTTP/1.1 200 OK\r\n";
3654
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3655
+ assert(parsed == strlen(buf));
3656
+
3657
+ buf = "Foo: 1\rBar: 1\r\n\r\n";
3658
+ size_t buflen = strlen(buf);
3659
+
3660
+ parsed = http_parser_execute(&parser, &settings_null, buf, buflen);
3661
+ if (parsed != buflen) {
3662
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_LF_EXPECTED);
3663
+ return;
3664
+ }
3665
+
3666
+ fprintf(stderr,
3667
+ "\n*** Error expected but none in header whitespace test ***\n");
3668
+ abort();
3669
+ }
3670
+
3671
+ void
3672
+ test_no_overflow_parse_url (void)
3673
+ {
3674
+ int rv;
3675
+ struct http_parser_url u;
3676
+
3677
+ http_parser_url_init(&u);
3678
+ rv = http_parser_parse_url("http://example.com:8001", 22, 0, &u);
3679
+
3680
+ if (rv != 0) {
3681
+ fprintf(stderr,
3682
+ "\n*** test_no_overflow_parse_url invalid return value=%d\n",
3683
+ rv);
3684
+ abort();
3685
+ }
3686
+
3687
+ if (u.port != 800) {
3688
+ fprintf(stderr,
3689
+ "\n*** test_no_overflow_parse_url invalid port number=%d\n",
3690
+ u.port);
3691
+ abort();
3692
+ }
3693
+ }
3694
+
3695
+ void
3696
+ test_header_overflow_error (int req)
3697
+ {
3698
+ http_parser parser;
3699
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3700
+ size_t parsed;
3701
+ const char *buf;
3702
+ buf = req ? "GET / HTTP/1.1\r\n" : "HTTP/1.0 200 OK\r\n";
3703
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3704
+ assert(parsed == strlen(buf));
3705
+
3706
+ buf = "header-key: header-value\r\n";
3707
+ size_t buflen = strlen(buf);
3708
+
3709
+ int i;
3710
+ for (i = 0; i < 10000; i++) {
3711
+ parsed = http_parser_execute(&parser, &settings_null, buf, buflen);
3712
+ if (parsed != buflen) {
3713
+ //fprintf(stderr, "error found on iter %d\n", i);
3714
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_HEADER_OVERFLOW);
3715
+ return;
3716
+ }
3717
+ }
3718
+
3719
+ fprintf(stderr, "\n*** Error expected but none in header overflow test ***\n");
3720
+ abort();
3721
+ }
3722
+
3723
+
3724
+ void
3725
+ test_header_nread_value ()
3726
+ {
3727
+ http_parser parser;
3728
+ http_parser_init(&parser, HTTP_REQUEST);
3729
+ size_t parsed;
3730
+ const char *buf;
3731
+ buf = "GET / HTTP/1.1\r\nheader: value\nhdr: value\r\n";
3732
+ parsed = http_parser_execute(&parser, &settings_null, buf, strlen(buf));
3733
+ assert(parsed == strlen(buf));
3734
+
3735
+ assert(parser.nread == strlen(buf));
3736
+ }
3737
+
3738
+
3739
+ static void
3740
+ test_content_length_overflow (const char *buf, size_t buflen, int expect_ok)
3741
+ {
3742
+ http_parser parser;
3743
+ http_parser_init(&parser, HTTP_RESPONSE);
3744
+ http_parser_execute(&parser, &settings_null, buf, buflen);
3745
+
3746
+ if (expect_ok)
3747
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_OK);
3748
+ else
3749
+ assert(HTTP_PARSER_ERRNO(&parser) == HPE_INVALID_CONTENT_LENGTH);
3750
+ }
3751
+
3752
+ void
3753
+ test_header_content_length_overflow_error (void)
3754
+ {
3755
+ #define X(size) \
3756
+ "HTTP/1.1 200 OK\r\n" \
3757
+ "Content-Length: " #size "\r\n" \
3758
+ "\r\n"
3759
+ const char a[] = X(1844674407370955160); /* 2^64 / 10 - 1 */
3760
+ const char b[] = X(18446744073709551615); /* 2^64-1 */
3761
+ const char c[] = X(18446744073709551616); /* 2^64 */
3762
+ #undef X
3763
+ test_content_length_overflow(a, sizeof(a) - 1, 1); /* expect ok */
3764
+ test_content_length_overflow(b, sizeof(b) - 1, 0); /* expect failure */
3765
+ test_content_length_overflow(c, sizeof(c) - 1, 0); /* expect failure */
3766
+ }
3767
+
3768
+ void
3769
+ test_chunk_content_length_overflow_error (void)
3770
+ {
3771
+ #define X(size) \
3772
+ "HTTP/1.1 200 OK\r\n" \
3773
+ "Transfer-Encoding: chunked\r\n" \
3774
+ "\r\n" \
3775
+ #size "\r\n" \
3776
+ "..."
3777
+ const char a[] = X(FFFFFFFFFFFFFFE); /* 2^64 / 16 - 1 */
3778
+ const char b[] = X(FFFFFFFFFFFFFFFF); /* 2^64-1 */
3779
+ const char c[] = X(10000000000000000); /* 2^64 */
3780
+ #undef X
3781
+ test_content_length_overflow(a, sizeof(a) - 1, 1); /* expect ok */
3782
+ test_content_length_overflow(b, sizeof(b) - 1, 0); /* expect failure */
3783
+ test_content_length_overflow(c, sizeof(c) - 1, 0); /* expect failure */
3784
+ }
3785
+
3786
+ void
3787
+ test_no_overflow_long_body (int req, size_t length)
3788
+ {
3789
+ http_parser parser;
3790
+ http_parser_init(&parser, req ? HTTP_REQUEST : HTTP_RESPONSE);
3791
+ size_t parsed;
3792
+ size_t i;
3793
+ char buf1[3000];
3794
+ size_t buf1len = sprintf(buf1, "%s\r\nConnection: Keep-Alive\r\nContent-Length: %lu\r\n\r\n",
3795
+ req ? "POST / HTTP/1.0" : "HTTP/1.0 200 OK", (unsigned long)length);
3796
+ parsed = http_parser_execute(&parser, &settings_null, buf1, buf1len);
3797
+ if (parsed != buf1len)
3798
+ goto err;
3799
+
3800
+ for (i = 0; i < length; i++) {
3801
+ char foo = 'a';
3802
+ parsed = http_parser_execute(&parser, &settings_null, &foo, 1);
3803
+ if (parsed != 1)
3804
+ goto err;
3805
+ }
3806
+
3807
+ parsed = http_parser_execute(&parser, &settings_null, buf1, buf1len);
3808
+ if (parsed != buf1len) goto err;
3809
+ return;
3810
+
3811
+ err:
3812
+ fprintf(stderr,
3813
+ "\n*** error in test_no_overflow_long_body %s of length %lu ***\n",
3814
+ req ? "REQUEST" : "RESPONSE",
3815
+ (unsigned long)length);
3816
+ abort();
3817
+ }
3818
+
3819
+ void
3820
+ test_multiple3 (const struct message *r1, const struct message *r2, const struct message *r3)
3821
+ {
3822
+ int message_count = count_parsed_messages(3, r1, r2, r3);
3823
+
3824
+ char total[ strlen(r1->raw)
3825
+ + strlen(r2->raw)
3826
+ + strlen(r3->raw)
3827
+ + 1
3828
+ ];
3829
+ total[0] = '\0';
3830
+
3831
+ strcat(total, r1->raw);
3832
+ strcat(total, r2->raw);
3833
+ strcat(total, r3->raw);
3834
+
3835
+ parser_init(r1->type);
3836
+
3837
+ size_t read;
3838
+
3839
+ read = parse(total, strlen(total));
3840
+
3841
+ if (parser->upgrade) {
3842
+ upgrade_message_fix(total, read, 3, r1, r2, r3);
3843
+ goto test;
3844
+ }
3845
+
3846
+ if (read != strlen(total)) {
3847
+ print_error(total, read);
3848
+ abort();
3849
+ }
3850
+
3851
+ read = parse(NULL, 0);
3852
+
3853
+ if (read != 0) {
3854
+ print_error(total, read);
3855
+ abort();
3856
+ }
3857
+
3858
+ test:
3859
+
3860
+ if (message_count != num_messages) {
3861
+ fprintf(stderr, "\n\n*** Parser didn't see 3 messages only %d *** \n", num_messages);
3862
+ abort();
3863
+ }
3864
+
3865
+ if (!message_eq(0, 0, r1)) abort();
3866
+ if (message_count > 1 && !message_eq(1, 0, r2)) abort();
3867
+ if (message_count > 2 && !message_eq(2, 0, r3)) abort();
3868
+
3869
+ parser_free();
3870
+ }
3871
+
3872
+ /* SCAN through every possible breaking to make sure the
3873
+ * parser can handle getting the content in any chunks that
3874
+ * might come from the socket
3875
+ */
3876
+ void
3877
+ test_scan (const struct message *r1, const struct message *r2, const struct message *r3)
3878
+ {
3879
+ char total[80*1024] = "\0";
3880
+ char buf1[80*1024] = "\0";
3881
+ char buf2[80*1024] = "\0";
3882
+ char buf3[80*1024] = "\0";
3883
+
3884
+ strcat(total, r1->raw);
3885
+ strcat(total, r2->raw);
3886
+ strcat(total, r3->raw);
3887
+
3888
+ size_t read;
3889
+
3890
+ int total_len = strlen(total);
3891
+
3892
+ int total_ops = 2 * (total_len - 1) * (total_len - 2) / 2;
3893
+ int ops = 0 ;
3894
+
3895
+ size_t buf1_len, buf2_len, buf3_len;
3896
+ int message_count = count_parsed_messages(3, r1, r2, r3);
3897
+
3898
+ int i,j,type_both;
3899
+ for (type_both = 0; type_both < 2; type_both ++ ) {
3900
+ for (j = 2; j < total_len; j ++ ) {
3901
+ for (i = 1; i < j; i ++ ) {
3902
+
3903
+ if (ops % 1000 == 0) {
3904
+ printf("\b\b\b\b%3.0f%%", 100 * (float)ops /(float)total_ops);
3905
+ fflush(stdout);
3906
+ }
3907
+ ops += 1;
3908
+
3909
+ parser_init(type_both ? HTTP_BOTH : r1->type);
3910
+
3911
+ buf1_len = i;
3912
+ strlncpy(buf1, sizeof(buf1), total, buf1_len);
3913
+ buf1[buf1_len] = 0;
3914
+
3915
+ buf2_len = j - i;
3916
+ strlncpy(buf2, sizeof(buf1), total+i, buf2_len);
3917
+ buf2[buf2_len] = 0;
3918
+
3919
+ buf3_len = total_len - j;
3920
+ strlncpy(buf3, sizeof(buf1), total+j, buf3_len);
3921
+ buf3[buf3_len] = 0;
3922
+
3923
+ read = parse(buf1, buf1_len);
3924
+
3925
+ if (parser->upgrade) goto test;
3926
+
3927
+ if (read != buf1_len) {
3928
+ print_error(buf1, read);
3929
+ goto error;
3930
+ }
3931
+
3932
+ read += parse(buf2, buf2_len);
3933
+
3934
+ if (parser->upgrade) goto test;
3935
+
3936
+ if (read != buf1_len + buf2_len) {
3937
+ print_error(buf2, read);
3938
+ goto error;
3939
+ }
3940
+
3941
+ read += parse(buf3, buf3_len);
3942
+
3943
+ if (parser->upgrade) goto test;
3944
+
3945
+ if (read != buf1_len + buf2_len + buf3_len) {
3946
+ print_error(buf3, read);
3947
+ goto error;
3948
+ }
3949
+
3950
+ parse(NULL, 0);
3951
+
3952
+ test:
3953
+ if (parser->upgrade) {
3954
+ upgrade_message_fix(total, read, 3, r1, r2, r3);
3955
+ }
3956
+
3957
+ if (message_count != num_messages) {
3958
+ fprintf(stderr, "\n\nParser didn't see %d messages only %d\n",
3959
+ message_count, num_messages);
3960
+ goto error;
3961
+ }
3962
+
3963
+ if (!message_eq(0, 0, r1)) {
3964
+ fprintf(stderr, "\n\nError matching messages[0] in test_scan.\n");
3965
+ goto error;
3966
+ }
3967
+
3968
+ if (message_count > 1 && !message_eq(1, 0, r2)) {
3969
+ fprintf(stderr, "\n\nError matching messages[1] in test_scan.\n");
3970
+ goto error;
3971
+ }
3972
+
3973
+ if (message_count > 2 && !message_eq(2, 0, r3)) {
3974
+ fprintf(stderr, "\n\nError matching messages[2] in test_scan.\n");
3975
+ goto error;
3976
+ }
3977
+
3978
+ parser_free();
3979
+ }
3980
+ }
3981
+ }
3982
+ puts("\b\b\b\b100%");
3983
+ return;
3984
+
3985
+ error:
3986
+ fprintf(stderr, "i=%d j=%d\n", i, j);
3987
+ fprintf(stderr, "buf1 (%u) %s\n\n", (unsigned int)buf1_len, buf1);
3988
+ fprintf(stderr, "buf2 (%u) %s\n\n", (unsigned int)buf2_len , buf2);
3989
+ fprintf(stderr, "buf3 (%u) %s\n", (unsigned int)buf3_len, buf3);
3990
+ abort();
3991
+ }
3992
+
3993
+ // user required to free the result
3994
+ // string terminated by \0
3995
+ char *
3996
+ create_large_chunked_message (int body_size_in_kb, const char* headers)
3997
+ {
3998
+ int i;
3999
+ size_t wrote = 0;
4000
+ size_t headers_len = strlen(headers);
4001
+ size_t bufsize = headers_len + (5+1024+2)*body_size_in_kb + 6;
4002
+ char * buf = malloc(bufsize);
4003
+
4004
+ memcpy(buf, headers, headers_len);
4005
+ wrote += headers_len;
4006
+
4007
+ for (i = 0; i < body_size_in_kb; i++) {
4008
+ // write 1kb chunk into the body.
4009
+ memcpy(buf + wrote, "400\r\n", 5);
4010
+ wrote += 5;
4011
+ memset(buf + wrote, 'C', 1024);
4012
+ wrote += 1024;
4013
+ strcpy(buf + wrote, "\r\n");
4014
+ wrote += 2;
4015
+ }
4016
+
4017
+ memcpy(buf + wrote, "0\r\n\r\n", 6);
4018
+ wrote += 6;
4019
+ assert(wrote == bufsize);
4020
+
4021
+ return buf;
4022
+ }
4023
+
4024
+ /* Verify that we can pause parsing at any of the bytes in the
4025
+ * message and still get the result that we're expecting. */
4026
+ void
4027
+ test_message_pause (const struct message *msg)
4028
+ {
4029
+ char *buf = (char*) msg->raw;
4030
+ size_t buflen = strlen(msg->raw);
4031
+ size_t nread;
4032
+
4033
+ parser_init(msg->type);
4034
+
4035
+ do {
4036
+ nread = parse_pause(buf, buflen);
4037
+
4038
+ // We can only set the upgrade buffer once we've gotten our message
4039
+ // completion callback.
4040
+ if (messages[0].message_complete_cb_called &&
4041
+ msg->upgrade &&
4042
+ parser->upgrade) {
4043
+ messages[0].upgrade = buf + nread;
4044
+ goto test;
4045
+ }
4046
+
4047
+ if (nread < buflen) {
4048
+
4049
+ // Not much do to if we failed a strict-mode check
4050
+ if (HTTP_PARSER_ERRNO(parser) == HPE_STRICT) {
4051
+ parser_free();
4052
+ return;
4053
+ }
4054
+
4055
+ assert (HTTP_PARSER_ERRNO(parser) == HPE_PAUSED);
4056
+ }
4057
+
4058
+ buf += nread;
4059
+ buflen -= nread;
4060
+ http_parser_pause(parser, 0);
4061
+ } while (buflen > 0);
4062
+
4063
+ nread = parse_pause(NULL, 0);
4064
+ assert (nread == 0);
4065
+
4066
+ test:
4067
+ if (num_messages != 1) {
4068
+ printf("\n*** num_messages != 1 after testing '%s' ***\n\n", msg->name);
4069
+ abort();
4070
+ }
4071
+
4072
+ if(!message_eq(0, 0, msg)) abort();
4073
+
4074
+ parser_free();
4075
+ }
4076
+
4077
+ /* Verify that body and next message won't be parsed in responses to CONNECT */
4078
+ void
4079
+ test_message_connect (const struct message *msg)
4080
+ {
4081
+ char *buf = (char*) msg->raw;
4082
+ size_t buflen = strlen(msg->raw);
4083
+
4084
+ parser_init(msg->type);
4085
+
4086
+ parse_connect(buf, buflen);
4087
+
4088
+ if (num_messages != 1) {
4089
+ printf("\n*** num_messages != 1 after testing '%s' ***\n\n", msg->name);
4090
+ abort();
4091
+ }
4092
+
4093
+ if(!message_eq(0, 1, msg)) abort();
4094
+
4095
+ parser_free();
4096
+ }
4097
+
4098
+ int
4099
+ main (void)
4100
+ {
4101
+ parser = NULL;
4102
+ unsigned i, j, k;
4103
+ unsigned long version;
4104
+ unsigned major;
4105
+ unsigned minor;
4106
+ unsigned patch;
4107
+
4108
+ version = http_parser_version();
4109
+ major = (version >> 16) & 255;
4110
+ minor = (version >> 8) & 255;
4111
+ patch = version & 255;
4112
+ printf("http_parser v%u.%u.%u (0x%06lx)\n", major, minor, patch, version);
4113
+
4114
+ printf("sizeof(http_parser) = %u\n", (unsigned int)sizeof(http_parser));
4115
+
4116
+ //// API
4117
+ test_preserve_data();
4118
+ test_parse_url();
4119
+ test_method_str();
4120
+
4121
+ //// NREAD
4122
+ test_header_nread_value();
4123
+
4124
+ //// OVERFLOW CONDITIONS
4125
+ test_no_overflow_parse_url();
4126
+
4127
+ test_header_overflow_error(HTTP_REQUEST);
4128
+ test_no_overflow_long_body(HTTP_REQUEST, 1000);
4129
+ test_no_overflow_long_body(HTTP_REQUEST, 100000);
4130
+
4131
+ test_header_overflow_error(HTTP_RESPONSE);
4132
+ test_no_overflow_long_body(HTTP_RESPONSE, 1000);
4133
+ test_no_overflow_long_body(HTTP_RESPONSE, 100000);
4134
+
4135
+ test_header_content_length_overflow_error();
4136
+ test_chunk_content_length_overflow_error();
4137
+
4138
+ //// HEADER FIELD CONDITIONS
4139
+ test_double_content_length_error(HTTP_REQUEST);
4140
+ test_chunked_content_length_error(HTTP_REQUEST);
4141
+ test_header_cr_no_lf_error(HTTP_REQUEST);
4142
+ test_invalid_header_field_token_error(HTTP_REQUEST);
4143
+ test_invalid_header_field_content_error(HTTP_REQUEST);
4144
+ test_double_content_length_error(HTTP_RESPONSE);
4145
+ test_chunked_content_length_error(HTTP_RESPONSE);
4146
+ test_header_cr_no_lf_error(HTTP_RESPONSE);
4147
+ test_invalid_header_field_token_error(HTTP_RESPONSE);
4148
+ test_invalid_header_field_content_error(HTTP_RESPONSE);
4149
+
4150
+ test_simple_type(
4151
+ "POST / HTTP/1.1\r\n"
4152
+ "Content-Length: 42 \r\n" // Note the surrounding whitespace.
4153
+ "\r\n",
4154
+ HPE_OK,
4155
+ HTTP_REQUEST);
4156
+
4157
+ test_simple_type(
4158
+ "POST / HTTP/1.1\r\n"
4159
+ "Content-Length: 4 2\r\n"
4160
+ "\r\n",
4161
+ HPE_INVALID_CONTENT_LENGTH,
4162
+ HTTP_REQUEST);
4163
+
4164
+ test_simple_type(
4165
+ "POST / HTTP/1.1\r\n"
4166
+ "Content-Length: 13 37\r\n"
4167
+ "\r\n",
4168
+ HPE_INVALID_CONTENT_LENGTH,
4169
+ HTTP_REQUEST);
4170
+
4171
+ //// RESPONSES
4172
+
4173
+ test_simple_type("HTP/1.1 200 OK\r\n\r\n", HPE_INVALID_VERSION, HTTP_RESPONSE);
4174
+ test_simple_type("HTTP/01.1 200 OK\r\n\r\n", HPE_INVALID_VERSION, HTTP_RESPONSE);
4175
+ test_simple_type("HTTP/11.1 200 OK\r\n\r\n", HPE_INVALID_VERSION, HTTP_RESPONSE);
4176
+ test_simple_type("HTTP/1.01 200 OK\r\n\r\n", HPE_INVALID_VERSION, HTTP_RESPONSE);
4177
+ test_simple_type("HTTP/1.1\t200 OK\r\n\r\n", HPE_INVALID_VERSION, HTTP_RESPONSE);
4178
+
4179
+ for (i = 0; i < ARRAY_SIZE(responses); i++) {
4180
+ test_message(&responses[i]);
4181
+ }
4182
+
4183
+ for (i = 0; i < ARRAY_SIZE(responses); i++) {
4184
+ test_message_pause(&responses[i]);
4185
+ }
4186
+
4187
+ for (i = 0; i < ARRAY_SIZE(responses); i++) {
4188
+ test_message_connect(&responses[i]);
4189
+ }
4190
+
4191
+ for (i = 0; i < ARRAY_SIZE(responses); i++) {
4192
+ if (!responses[i].should_keep_alive) continue;
4193
+ for (j = 0; j < ARRAY_SIZE(responses); j++) {
4194
+ if (!responses[j].should_keep_alive) continue;
4195
+ for (k = 0; k < ARRAY_SIZE(responses); k++) {
4196
+ test_multiple3(&responses[i], &responses[j], &responses[k]);
4197
+ }
4198
+ }
4199
+ }
4200
+
4201
+ test_message_count_body(&responses[NO_HEADERS_NO_BODY_404]);
4202
+ test_message_count_body(&responses[TRAILING_SPACE_ON_CHUNKED_BODY]);
4203
+
4204
+ // test very large chunked response
4205
+ {
4206
+ char * msg = create_large_chunked_message(31337,
4207
+ "HTTP/1.0 200 OK\r\n"
4208
+ "Transfer-Encoding: chunked\r\n"
4209
+ "Content-Type: text/plain\r\n"
4210
+ "\r\n");
4211
+ struct message large_chunked =
4212
+ {.name= "large chunked"
4213
+ ,.type= HTTP_RESPONSE
4214
+ ,.raw= msg
4215
+ ,.should_keep_alive= FALSE
4216
+ ,.message_complete_on_eof= FALSE
4217
+ ,.http_major= 1
4218
+ ,.http_minor= 0
4219
+ ,.status_code= 200
4220
+ ,.response_status= "OK"
4221
+ ,.num_headers= 2
4222
+ ,.headers=
4223
+ { { "Transfer-Encoding", "chunked" }
4224
+ , { "Content-Type", "text/plain" }
4225
+ }
4226
+ ,.body_size= 31337*1024
4227
+ ,.num_chunks_complete= 31338
4228
+ };
4229
+ for (i = 0; i < MAX_CHUNKS; i++) {
4230
+ large_chunked.chunk_lengths[i] = 1024;
4231
+ }
4232
+ test_message_count_body(&large_chunked);
4233
+ free(msg);
4234
+ }
4235
+
4236
+
4237
+
4238
+ printf("response scan 1/2 ");
4239
+ test_scan( &responses[TRAILING_SPACE_ON_CHUNKED_BODY]
4240
+ , &responses[NO_BODY_HTTP10_KA_204]
4241
+ , &responses[NO_REASON_PHRASE]
4242
+ );
4243
+
4244
+ printf("response scan 2/2 ");
4245
+ test_scan( &responses[BONJOUR_MADAME_FR]
4246
+ , &responses[UNDERSTORE_HEADER_KEY]
4247
+ , &responses[NO_CARRIAGE_RET]
4248
+ );
4249
+
4250
+ puts("responses okay");
4251
+
4252
+
4253
+ /// REQUESTS
4254
+
4255
+ test_simple("GET / HTP/1.1\r\n\r\n", HPE_INVALID_VERSION);
4256
+ test_simple("GET / HTTP/01.1\r\n\r\n", HPE_INVALID_VERSION);
4257
+ test_simple("GET / HTTP/11.1\r\n\r\n", HPE_INVALID_VERSION);
4258
+ test_simple("GET / HTTP/1.01\r\n\r\n", HPE_INVALID_VERSION);
4259
+
4260
+ // Extended characters - see nodejs/test/parallel/test-http-headers-obstext.js
4261
+ test_simple("GET / HTTP/1.1\r\n"
4262
+ "Test: Düsseldorf\r\n",
4263
+ HPE_OK);
4264
+
4265
+ // Well-formed but incomplete
4266
+ test_simple("GET / HTTP/1.1\r\n"
4267
+ "Content-Type: text/plain\r\n"
4268
+ "Content-Length: 6\r\n"
4269
+ "\r\n"
4270
+ "fooba",
4271
+ HPE_OK);
4272
+
4273
+ static const char *all_methods[] = {
4274
+ "DELETE",
4275
+ "GET",
4276
+ "HEAD",
4277
+ "POST",
4278
+ "PUT",
4279
+ //"CONNECT", //CONNECT can't be tested like other methods, it's a tunnel
4280
+ "OPTIONS",
4281
+ "TRACE",
4282
+ "COPY",
4283
+ "LOCK",
4284
+ "MKCOL",
4285
+ "MOVE",
4286
+ "PROPFIND",
4287
+ "PROPPATCH",
4288
+ "SEARCH",
4289
+ "UNLOCK",
4290
+ "BIND",
4291
+ "REBIND",
4292
+ "UNBIND",
4293
+ "ACL",
4294
+ "REPORT",
4295
+ "MKACTIVITY",
4296
+ "CHECKOUT",
4297
+ "MERGE",
4298
+ "M-SEARCH",
4299
+ "NOTIFY",
4300
+ "SUBSCRIBE",
4301
+ "UNSUBSCRIBE",
4302
+ "PATCH",
4303
+ "PURGE",
4304
+ "MKCALENDAR",
4305
+ "LINK",
4306
+ "UNLINK",
4307
+ 0 };
4308
+ const char **this_method;
4309
+ for (this_method = all_methods; *this_method; this_method++) {
4310
+ char buf[200];
4311
+ sprintf(buf, "%s / HTTP/1.1\r\n\r\n", *this_method);
4312
+ test_simple(buf, HPE_OK);
4313
+ }
4314
+
4315
+ static const char *bad_methods[] = {
4316
+ "ASDF",
4317
+ "C******",
4318
+ "COLA",
4319
+ "GEM",
4320
+ "GETA",
4321
+ "M****",
4322
+ "MKCOLA",
4323
+ "PROPPATCHA",
4324
+ "PUN",
4325
+ "PX",
4326
+ "SA",
4327
+ "hello world",
4328
+ 0 };
4329
+ for (this_method = bad_methods; *this_method; this_method++) {
4330
+ char buf[200];
4331
+ sprintf(buf, "%s / HTTP/1.1\r\n\r\n", *this_method);
4332
+ test_simple(buf, HPE_INVALID_METHOD);
4333
+ }
4334
+
4335
+ // illegal header field name line folding
4336
+ test_simple("GET / HTTP/1.1\r\n"
4337
+ "name\r\n"
4338
+ " : value\r\n"
4339
+ "\r\n",
4340
+ HPE_INVALID_HEADER_TOKEN);
4341
+
4342
+ const char *dumbfuck2 =
4343
+ "GET / HTTP/1.1\r\n"
4344
+ "X-SSL-Bullshit: -----BEGIN CERTIFICATE-----\r\n"
4345
+ "\tMIIFbTCCBFWgAwIBAgICH4cwDQYJKoZIhvcNAQEFBQAwcDELMAkGA1UEBhMCVUsx\r\n"
4346
+ "\tETAPBgNVBAoTCGVTY2llbmNlMRIwEAYDVQQLEwlBdXRob3JpdHkxCzAJBgNVBAMT\r\n"
4347
+ "\tAkNBMS0wKwYJKoZIhvcNAQkBFh5jYS1vcGVyYXRvckBncmlkLXN1cHBvcnQuYWMu\r\n"
4348
+ "\tdWswHhcNMDYwNzI3MTQxMzI4WhcNMDcwNzI3MTQxMzI4WjBbMQswCQYDVQQGEwJV\r\n"
4349
+ "\tSzERMA8GA1UEChMIZVNjaWVuY2UxEzARBgNVBAsTCk1hbmNoZXN0ZXIxCzAJBgNV\r\n"
4350
+ "\tBAcTmrsogriqMWLAk1DMRcwFQYDVQQDEw5taWNoYWVsIHBhcmQYJKoZIhvcNAQEB\r\n"
4351
+ "\tBQADggEPADCCAQoCggEBANPEQBgl1IaKdSS1TbhF3hEXSl72G9J+WC/1R64fAcEF\r\n"
4352
+ "\tW51rEyFYiIeZGx/BVzwXbeBoNUK41OK65sxGuflMo5gLflbwJtHBRIEKAfVVp3YR\r\n"
4353
+ "\tgW7cMA/s/XKgL1GEC7rQw8lIZT8RApukCGqOVHSi/F1SiFlPDxuDfmdiNzL31+sL\r\n"
4354
+ "\t0iwHDdNkGjy5pyBSB8Y79dsSJtCW/iaLB0/n8Sj7HgvvZJ7x0fr+RQjYOUUfrePP\r\n"
4355
+ "\tu2MSpFyf+9BbC/aXgaZuiCvSR+8Snv3xApQY+fULK/xY8h8Ua51iXoQ5jrgu2SqR\r\n"
4356
+ "\twgA7BUi3G8LFzMBl8FRCDYGUDy7M6QaHXx1ZWIPWNKsCAwEAAaOCAiQwggIgMAwG\r\n"
4357
+ "\tA1UdEwEB/wQCMAAwEQYJYIZIAYb4QgHTTPAQDAgWgMA4GA1UdDwEB/wQEAwID6DAs\r\n"
4358
+ "\tBglghkgBhvhCAQ0EHxYdVUsgZS1TY2llbmNlIFVzZXIgQ2VydGlmaWNhdGUwHQYD\r\n"
4359
+ "\tVR0OBBYEFDTt/sf9PeMaZDHkUIldrDYMNTBZMIGaBgNVHSMEgZIwgY+AFAI4qxGj\r\n"
4360
+ "\tloCLDdMVKwiljjDastqooXSkcjBwMQswCQYDVQQGEwJVSzERMA8GA1UEChMIZVNj\r\n"
4361
+ "\taWVuY2UxEjAQBgNVBAsTCUF1dGhvcml0eTELMAkGA1UEAxMCQ0ExLTArBgkqhkiG\r\n"
4362
+ "\t9w0BCQEWHmNhLW9wZXJhdG9yQGdyaWQtc3VwcG9ydC5hYy51a4IBADApBgNVHRIE\r\n"
4363
+ "\tIjAggR5jYS1vcGVyYXRvckBncmlkLXN1cHBvcnQuYWMudWswGQYDVR0gBBIwEDAO\r\n"
4364
+ "\tBgwrBgEEAdkvAQEBAQYwPQYJYIZIAYb4QgEEBDAWLmh0dHA6Ly9jYS5ncmlkLXN1\r\n"
4365
+ "\tcHBvcnQuYWMudmT4sopwqlBWsvcHViL2NybC9jYWNybC5jcmwwPQYJYIZIAYb4QgEDBDAWLmh0\r\n"
4366
+ "\tdHA6Ly9jYS5ncmlkLXN1cHBvcnQuYWMudWsvcHViL2NybC9jYWNybC5jcmwwPwYD\r\n"
4367
+ "\tVR0fBDgwNjA0oDKgMIYuaHR0cDovL2NhLmdyaWQt5hYy51ay9wdWIv\r\n"
4368
+ "\tY3JsL2NhY3JsLmNybDANBgkqhkiG9w0BAQUFAAOCAQEAS/U4iiooBENGW/Hwmmd3\r\n"
4369
+ "\tXCy6Zrt08YjKCzGNjorT98g8uGsqYjSxv/hmi0qlnlHs+k/3Iobc3LjS5AMYr5L8\r\n"
4370
+ "\tUO7OSkgFFlLHQyC9JzPfmLCAugvzEbyv4Olnsr8hbxF1MbKZoQxUZtMVu29wjfXk\r\n"
4371
+ "\thTeApBv7eaKCWpSp7MCbvgzm74izKhu3vlDk9w6qVrxePfGgpKPqfHiOoGhFnbTK\r\n"
4372
+ "\twTC6o2xq5y0qZ03JonF7OJspEd3I5zKY3E+ov7/ZhW6DqT8UFvsAdjvQbXyhV8Eu\r\n"
4373
+ "\tYhixw1aKEPzNjNowuIseVogKOLXxWI5vAi5HgXdS0/ES5gDGsABo4fqovUKlgop3\r\n"
4374
+ "\tRA==\r\n"
4375
+ "\t-----END CERTIFICATE-----\r\n"
4376
+ "\r\n";
4377
+ test_simple(dumbfuck2, HPE_OK);
4378
+
4379
+ const char *corrupted_connection =
4380
+ "GET / HTTP/1.1\r\n"
4381
+ "Host: www.example.com\r\n"
4382
+ "Connection\r\033\065\325eep-Alive\r\n"
4383
+ "Accept-Encoding: gzip\r\n"
4384
+ "\r\n";
4385
+ test_simple(corrupted_connection, HPE_INVALID_HEADER_TOKEN);
4386
+
4387
+ const char *corrupted_header_name =
4388
+ "GET / HTTP/1.1\r\n"
4389
+ "Host: www.example.com\r\n"
4390
+ "X-Some-Header\r\033\065\325eep-Alive\r\n"
4391
+ "Accept-Encoding: gzip\r\n"
4392
+ "\r\n";
4393
+ test_simple(corrupted_header_name, HPE_INVALID_HEADER_TOKEN);
4394
+
4395
+ #if 0
4396
+ // NOTE(Wed Nov 18 11:57:27 CET 2009) this seems okay. we just read body
4397
+ // until EOF.
4398
+ //
4399
+ // no content-length
4400
+ // error if there is a body without content length
4401
+ const char *bad_get_no_headers_no_body = "GET /bad_get_no_headers_no_body/world HTTP/1.1\r\n"
4402
+ "Accept: */*\r\n"
4403
+ "\r\n"
4404
+ "HELLO";
4405
+ test_simple(bad_get_no_headers_no_body, 0);
4406
+ #endif
4407
+ /* TODO sending junk and large headers gets rejected */
4408
+
4409
+
4410
+ /* check to make sure our predefined requests are okay */
4411
+ for (i = 0; i < ARRAY_SIZE(requests); i++) {
4412
+ test_message(&requests[i]);
4413
+ }
4414
+
4415
+ for (i = 0; i < ARRAY_SIZE(requests); i++) {
4416
+ test_message_pause(&requests[i]);
4417
+ }
4418
+
4419
+ for (i = 0; i < ARRAY_SIZE(requests); i++) {
4420
+ if (!requests[i].should_keep_alive) continue;
4421
+ for (j = 0; j < ARRAY_SIZE(requests); j++) {
4422
+ if (!requests[j].should_keep_alive) continue;
4423
+ for (k = 0; k < ARRAY_SIZE(requests); k++) {
4424
+ test_multiple3(&requests[i], &requests[j], &requests[k]);
4425
+ }
4426
+ }
4427
+ }
4428
+
4429
+ printf("request scan 1/4 ");
4430
+ test_scan( &requests[GET_NO_HEADERS_NO_BODY]
4431
+ , &requests[GET_ONE_HEADER_NO_BODY]
4432
+ , &requests[GET_NO_HEADERS_NO_BODY]
4433
+ );
4434
+
4435
+ printf("request scan 2/4 ");
4436
+ test_scan( &requests[POST_CHUNKED_ALL_YOUR_BASE]
4437
+ , &requests[POST_IDENTITY_BODY_WORLD]
4438
+ , &requests[GET_FUNKY_CONTENT_LENGTH]
4439
+ );
4440
+
4441
+ printf("request scan 3/4 ");
4442
+ test_scan( &requests[TWO_CHUNKS_MULT_ZERO_END]
4443
+ , &requests[CHUNKED_W_TRAILING_HEADERS]
4444
+ , &requests[CHUNKED_W_BULLSHIT_AFTER_LENGTH]
4445
+ );
4446
+
4447
+ printf("request scan 4/4 ");
4448
+ test_scan( &requests[QUERY_URL_WITH_QUESTION_MARK_GET]
4449
+ , &requests[PREFIX_NEWLINE_GET ]
4450
+ , &requests[CONNECT_REQUEST]
4451
+ );
4452
+
4453
+ puts("requests okay");
4454
+
4455
+ return 0;
4456
+ }