dtomasgu-fluentd 1.14.7.pre.dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (564) hide show
  1. checksums.yaml +7 -0
  2. data/.deepsource.toml +13 -0
  3. data/.drone.yml +35 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.yaml +70 -0
  5. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  6. data/.github/ISSUE_TEMPLATE/feature_request.yaml +38 -0
  7. data/.github/ISSUE_TEMPLATE.md +17 -0
  8. data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  9. data/.github/workflows/issue-auto-closer.yml +12 -0
  10. data/.github/workflows/linux-test.yaml +36 -0
  11. data/.github/workflows/macos-test.yaml +34 -0
  12. data/.github/workflows/stale-actions.yml +22 -0
  13. data/.github/workflows/windows-test.yaml +49 -0
  14. data/.gitignore +30 -0
  15. data/.gitlab-ci.yml +103 -0
  16. data/ADOPTERS.md +5 -0
  17. data/AUTHORS +2 -0
  18. data/CHANGELOG.md +2453 -0
  19. data/CONTRIBUTING.md +45 -0
  20. data/GOVERNANCE.md +55 -0
  21. data/Gemfile +9 -0
  22. data/GithubWorkflow.md +78 -0
  23. data/LICENSE +202 -0
  24. data/MAINTAINERS.md +11 -0
  25. data/README.md +76 -0
  26. data/Rakefile +79 -0
  27. data/SECURITY.md +18 -0
  28. data/bin/fluent-binlog-reader +7 -0
  29. data/bin/fluent-ca-generate +6 -0
  30. data/bin/fluent-cap-ctl +7 -0
  31. data/bin/fluent-cat +5 -0
  32. data/bin/fluent-ctl +7 -0
  33. data/bin/fluent-debug +5 -0
  34. data/bin/fluent-gem +9 -0
  35. data/bin/fluent-plugin-config-format +5 -0
  36. data/bin/fluent-plugin-generate +5 -0
  37. data/bin/fluentd +15 -0
  38. data/code-of-conduct.md +3 -0
  39. data/docs/SECURITY_AUDIT.pdf +0 -0
  40. data/example/copy_roundrobin.conf +39 -0
  41. data/example/counter.conf +18 -0
  42. data/example/filter_stdout.conf +22 -0
  43. data/example/in_forward.conf +14 -0
  44. data/example/in_forward_client.conf +37 -0
  45. data/example/in_forward_shared_key.conf +15 -0
  46. data/example/in_forward_tls.conf +14 -0
  47. data/example/in_forward_users.conf +24 -0
  48. data/example/in_forward_workers.conf +21 -0
  49. data/example/in_http.conf +16 -0
  50. data/example/in_out_forward.conf +17 -0
  51. data/example/in_sample_blocks.conf +17 -0
  52. data/example/in_sample_with_compression.conf +23 -0
  53. data/example/in_syslog.conf +15 -0
  54. data/example/in_tail.conf +14 -0
  55. data/example/in_tcp.conf +13 -0
  56. data/example/in_udp.conf +13 -0
  57. data/example/logevents.conf +25 -0
  58. data/example/multi_filters.conf +61 -0
  59. data/example/out_copy.conf +20 -0
  60. data/example/out_exec_filter.conf +42 -0
  61. data/example/out_file.conf +13 -0
  62. data/example/out_forward.conf +35 -0
  63. data/example/out_forward_buf_file.conf +23 -0
  64. data/example/out_forward_client.conf +109 -0
  65. data/example/out_forward_heartbeat_none.conf +16 -0
  66. data/example/out_forward_sd.conf +17 -0
  67. data/example/out_forward_shared_key.conf +36 -0
  68. data/example/out_forward_tls.conf +18 -0
  69. data/example/out_forward_users.conf +65 -0
  70. data/example/out_null.conf +36 -0
  71. data/example/sd.yaml +8 -0
  72. data/example/secondary_file.conf +42 -0
  73. data/example/suppress_config_dump.conf +7 -0
  74. data/example/v0_12_filter.conf +78 -0
  75. data/example/v1_literal_example.conf +36 -0
  76. data/example/worker_section.conf +36 -0
  77. data/fluent.conf +139 -0
  78. data/fluentd.gemspec +57 -0
  79. data/lib/fluent/agent.rb +168 -0
  80. data/lib/fluent/capability.rb +87 -0
  81. data/lib/fluent/clock.rb +66 -0
  82. data/lib/fluent/command/binlog_reader.rb +244 -0
  83. data/lib/fluent/command/bundler_injection.rb +45 -0
  84. data/lib/fluent/command/ca_generate.rb +184 -0
  85. data/lib/fluent/command/cap_ctl.rb +174 -0
  86. data/lib/fluent/command/cat.rb +365 -0
  87. data/lib/fluent/command/ctl.rb +180 -0
  88. data/lib/fluent/command/debug.rb +103 -0
  89. data/lib/fluent/command/fluentd.rb +388 -0
  90. data/lib/fluent/command/plugin_config_formatter.rb +308 -0
  91. data/lib/fluent/command/plugin_generator.rb +365 -0
  92. data/lib/fluent/compat/call_super_mixin.rb +76 -0
  93. data/lib/fluent/compat/detach_process_mixin.rb +33 -0
  94. data/lib/fluent/compat/exec_util.rb +129 -0
  95. data/lib/fluent/compat/file_util.rb +54 -0
  96. data/lib/fluent/compat/filter.rb +68 -0
  97. data/lib/fluent/compat/formatter.rb +111 -0
  98. data/lib/fluent/compat/formatter_utils.rb +85 -0
  99. data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
  100. data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
  101. data/lib/fluent/compat/input.rb +49 -0
  102. data/lib/fluent/compat/output.rb +721 -0
  103. data/lib/fluent/compat/output_chain.rb +60 -0
  104. data/lib/fluent/compat/parser.rb +310 -0
  105. data/lib/fluent/compat/parser_utils.rb +40 -0
  106. data/lib/fluent/compat/propagate_default.rb +62 -0
  107. data/lib/fluent/compat/record_filter_mixin.rb +34 -0
  108. data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
  109. data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
  110. data/lib/fluent/compat/socket_util.rb +165 -0
  111. data/lib/fluent/compat/string_util.rb +34 -0
  112. data/lib/fluent/compat/structured_format_mixin.rb +26 -0
  113. data/lib/fluent/compat/type_converter.rb +90 -0
  114. data/lib/fluent/config/basic_parser.rb +123 -0
  115. data/lib/fluent/config/configure_proxy.rb +424 -0
  116. data/lib/fluent/config/dsl.rb +152 -0
  117. data/lib/fluent/config/element.rb +265 -0
  118. data/lib/fluent/config/error.rb +44 -0
  119. data/lib/fluent/config/literal_parser.rb +286 -0
  120. data/lib/fluent/config/parser.rb +107 -0
  121. data/lib/fluent/config/section.rb +272 -0
  122. data/lib/fluent/config/types.rb +249 -0
  123. data/lib/fluent/config/v1_parser.rb +192 -0
  124. data/lib/fluent/config/yaml_parser/fluent_value.rb +47 -0
  125. data/lib/fluent/config/yaml_parser/loader.rb +91 -0
  126. data/lib/fluent/config/yaml_parser/parser.rb +166 -0
  127. data/lib/fluent/config/yaml_parser/section_builder.rb +107 -0
  128. data/lib/fluent/config/yaml_parser.rb +56 -0
  129. data/lib/fluent/config.rb +89 -0
  130. data/lib/fluent/configurable.rb +201 -0
  131. data/lib/fluent/counter/base_socket.rb +44 -0
  132. data/lib/fluent/counter/client.rb +297 -0
  133. data/lib/fluent/counter/error.rb +86 -0
  134. data/lib/fluent/counter/mutex_hash.rb +163 -0
  135. data/lib/fluent/counter/server.rb +273 -0
  136. data/lib/fluent/counter/store.rb +205 -0
  137. data/lib/fluent/counter/validator.rb +145 -0
  138. data/lib/fluent/counter.rb +23 -0
  139. data/lib/fluent/daemon.rb +15 -0
  140. data/lib/fluent/daemonizer.rb +88 -0
  141. data/lib/fluent/engine.rb +253 -0
  142. data/lib/fluent/env.rb +40 -0
  143. data/lib/fluent/error.rb +34 -0
  144. data/lib/fluent/event.rb +326 -0
  145. data/lib/fluent/event_router.rb +315 -0
  146. data/lib/fluent/ext_monitor_require.rb +28 -0
  147. data/lib/fluent/filter.rb +21 -0
  148. data/lib/fluent/fluent_log_event_router.rb +141 -0
  149. data/lib/fluent/formatter.rb +23 -0
  150. data/lib/fluent/input.rb +21 -0
  151. data/lib/fluent/label.rb +46 -0
  152. data/lib/fluent/load.rb +34 -0
  153. data/lib/fluent/log.rb +713 -0
  154. data/lib/fluent/match.rb +187 -0
  155. data/lib/fluent/mixin.rb +31 -0
  156. data/lib/fluent/msgpack_factory.rb +106 -0
  157. data/lib/fluent/oj_options.rb +62 -0
  158. data/lib/fluent/output.rb +29 -0
  159. data/lib/fluent/output_chain.rb +23 -0
  160. data/lib/fluent/parser.rb +23 -0
  161. data/lib/fluent/plugin/bare_output.rb +104 -0
  162. data/lib/fluent/plugin/base.rb +197 -0
  163. data/lib/fluent/plugin/buf_file.rb +213 -0
  164. data/lib/fluent/plugin/buf_file_single.rb +225 -0
  165. data/lib/fluent/plugin/buf_memory.rb +34 -0
  166. data/lib/fluent/plugin/buffer/chunk.rb +240 -0
  167. data/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
  168. data/lib/fluent/plugin/buffer/file_single_chunk.rb +311 -0
  169. data/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
  170. data/lib/fluent/plugin/buffer.rb +918 -0
  171. data/lib/fluent/plugin/compressable.rb +96 -0
  172. data/lib/fluent/plugin/exec_util.rb +22 -0
  173. data/lib/fluent/plugin/file_util.rb +22 -0
  174. data/lib/fluent/plugin/file_wrapper.rb +132 -0
  175. data/lib/fluent/plugin/filter.rb +127 -0
  176. data/lib/fluent/plugin/filter_grep.rb +189 -0
  177. data/lib/fluent/plugin/filter_parser.rb +130 -0
  178. data/lib/fluent/plugin/filter_record_transformer.rb +324 -0
  179. data/lib/fluent/plugin/filter_stdout.rb +53 -0
  180. data/lib/fluent/plugin/formatter.rb +75 -0
  181. data/lib/fluent/plugin/formatter_csv.rb +78 -0
  182. data/lib/fluent/plugin/formatter_hash.rb +35 -0
  183. data/lib/fluent/plugin/formatter_json.rb +59 -0
  184. data/lib/fluent/plugin/formatter_ltsv.rb +44 -0
  185. data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
  186. data/lib/fluent/plugin/formatter_out_file.rb +53 -0
  187. data/lib/fluent/plugin/formatter_single_value.rb +36 -0
  188. data/lib/fluent/plugin/formatter_stdout.rb +76 -0
  189. data/lib/fluent/plugin/formatter_tsv.rb +40 -0
  190. data/lib/fluent/plugin/in_debug_agent.rb +71 -0
  191. data/lib/fluent/plugin/in_dummy.rb +18 -0
  192. data/lib/fluent/plugin/in_exec.rb +110 -0
  193. data/lib/fluent/plugin/in_forward.rb +473 -0
  194. data/lib/fluent/plugin/in_gc_stat.rb +72 -0
  195. data/lib/fluent/plugin/in_http.rb +677 -0
  196. data/lib/fluent/plugin/in_monitor_agent.rb +412 -0
  197. data/lib/fluent/plugin/in_object_space.rb +93 -0
  198. data/lib/fluent/plugin/in_sample.rb +141 -0
  199. data/lib/fluent/plugin/in_syslog.rb +276 -0
  200. data/lib/fluent/plugin/in_tail/group_watch.rb +204 -0
  201. data/lib/fluent/plugin/in_tail/position_file.rb +255 -0
  202. data/lib/fluent/plugin/in_tail.rb +1247 -0
  203. data/lib/fluent/plugin/in_tcp.rb +181 -0
  204. data/lib/fluent/plugin/in_udp.rb +92 -0
  205. data/lib/fluent/plugin/in_unix.rb +195 -0
  206. data/lib/fluent/plugin/input.rb +75 -0
  207. data/lib/fluent/plugin/metrics.rb +119 -0
  208. data/lib/fluent/plugin/metrics_local.rb +96 -0
  209. data/lib/fluent/plugin/multi_output.rb +195 -0
  210. data/lib/fluent/plugin/out_copy.rb +120 -0
  211. data/lib/fluent/plugin/out_exec.rb +105 -0
  212. data/lib/fluent/plugin/out_exec_filter.rb +319 -0
  213. data/lib/fluent/plugin/out_file.rb +334 -0
  214. data/lib/fluent/plugin/out_forward/ack_handler.rb +161 -0
  215. data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
  216. data/lib/fluent/plugin/out_forward/error.rb +28 -0
  217. data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
  218. data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
  219. data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
  220. data/lib/fluent/plugin/out_forward/socket_cache.rb +142 -0
  221. data/lib/fluent/plugin/out_forward.rb +826 -0
  222. data/lib/fluent/plugin/out_http.rb +280 -0
  223. data/lib/fluent/plugin/out_null.rb +74 -0
  224. data/lib/fluent/plugin/out_relabel.rb +32 -0
  225. data/lib/fluent/plugin/out_roundrobin.rb +84 -0
  226. data/lib/fluent/plugin/out_secondary_file.rb +131 -0
  227. data/lib/fluent/plugin/out_stdout.rb +74 -0
  228. data/lib/fluent/plugin/out_stream.rb +130 -0
  229. data/lib/fluent/plugin/output.rb +1566 -0
  230. data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
  231. data/lib/fluent/plugin/parser.rb +274 -0
  232. data/lib/fluent/plugin/parser_apache.rb +28 -0
  233. data/lib/fluent/plugin/parser_apache2.rb +88 -0
  234. data/lib/fluent/plugin/parser_apache_error.rb +26 -0
  235. data/lib/fluent/plugin/parser_csv.rb +114 -0
  236. data/lib/fluent/plugin/parser_json.rb +96 -0
  237. data/lib/fluent/plugin/parser_ltsv.rb +51 -0
  238. data/lib/fluent/plugin/parser_msgpack.rb +50 -0
  239. data/lib/fluent/plugin/parser_multiline.rb +152 -0
  240. data/lib/fluent/plugin/parser_nginx.rb +28 -0
  241. data/lib/fluent/plugin/parser_none.rb +36 -0
  242. data/lib/fluent/plugin/parser_regexp.rb +68 -0
  243. data/lib/fluent/plugin/parser_syslog.rb +496 -0
  244. data/lib/fluent/plugin/parser_tsv.rb +42 -0
  245. data/lib/fluent/plugin/sd_file.rb +156 -0
  246. data/lib/fluent/plugin/sd_srv.rb +135 -0
  247. data/lib/fluent/plugin/sd_static.rb +58 -0
  248. data/lib/fluent/plugin/service_discovery.rb +65 -0
  249. data/lib/fluent/plugin/socket_util.rb +22 -0
  250. data/lib/fluent/plugin/storage.rb +84 -0
  251. data/lib/fluent/plugin/storage_local.rb +162 -0
  252. data/lib/fluent/plugin/string_util.rb +22 -0
  253. data/lib/fluent/plugin.rb +206 -0
  254. data/lib/fluent/plugin_helper/cert_option.rb +191 -0
  255. data/lib/fluent/plugin_helper/child_process.rb +366 -0
  256. data/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
  257. data/lib/fluent/plugin_helper/counter.rb +51 -0
  258. data/lib/fluent/plugin_helper/event_emitter.rb +100 -0
  259. data/lib/fluent/plugin_helper/event_loop.rb +170 -0
  260. data/lib/fluent/plugin_helper/extract.rb +104 -0
  261. data/lib/fluent/plugin_helper/formatter.rb +147 -0
  262. data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
  263. data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
  264. data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
  265. data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
  266. data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
  267. data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
  268. data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
  269. data/lib/fluent/plugin_helper/http_server/server.rb +93 -0
  270. data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
  271. data/lib/fluent/plugin_helper/http_server.rb +135 -0
  272. data/lib/fluent/plugin_helper/inject.rb +154 -0
  273. data/lib/fluent/plugin_helper/metrics.rb +129 -0
  274. data/lib/fluent/plugin_helper/parser.rb +147 -0
  275. data/lib/fluent/plugin_helper/record_accessor.rb +207 -0
  276. data/lib/fluent/plugin_helper/retry_state.rb +219 -0
  277. data/lib/fluent/plugin_helper/server.rb +820 -0
  278. data/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
  279. data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
  280. data/lib/fluent/plugin_helper/service_discovery.rb +125 -0
  281. data/lib/fluent/plugin_helper/socket.rb +288 -0
  282. data/lib/fluent/plugin_helper/socket_option.rb +98 -0
  283. data/lib/fluent/plugin_helper/storage.rb +349 -0
  284. data/lib/fluent/plugin_helper/thread.rb +180 -0
  285. data/lib/fluent/plugin_helper/timer.rb +92 -0
  286. data/lib/fluent/plugin_helper.rb +75 -0
  287. data/lib/fluent/plugin_id.rb +93 -0
  288. data/lib/fluent/process.rb +22 -0
  289. data/lib/fluent/registry.rb +117 -0
  290. data/lib/fluent/root_agent.rb +372 -0
  291. data/lib/fluent/rpc.rb +95 -0
  292. data/lib/fluent/static_config_analysis.rb +194 -0
  293. data/lib/fluent/supervisor.rb +1141 -0
  294. data/lib/fluent/system_config.rb +188 -0
  295. data/lib/fluent/test/base.rb +78 -0
  296. data/lib/fluent/test/driver/base.rb +225 -0
  297. data/lib/fluent/test/driver/base_owned.rb +83 -0
  298. data/lib/fluent/test/driver/base_owner.rb +135 -0
  299. data/lib/fluent/test/driver/event_feeder.rb +98 -0
  300. data/lib/fluent/test/driver/filter.rb +57 -0
  301. data/lib/fluent/test/driver/formatter.rb +30 -0
  302. data/lib/fluent/test/driver/input.rb +31 -0
  303. data/lib/fluent/test/driver/multi_output.rb +53 -0
  304. data/lib/fluent/test/driver/output.rb +102 -0
  305. data/lib/fluent/test/driver/parser.rb +30 -0
  306. data/lib/fluent/test/driver/storage.rb +30 -0
  307. data/lib/fluent/test/driver/test_event_router.rb +45 -0
  308. data/lib/fluent/test/filter_test.rb +77 -0
  309. data/lib/fluent/test/formatter_test.rb +65 -0
  310. data/lib/fluent/test/helpers.rb +134 -0
  311. data/lib/fluent/test/input_test.rb +174 -0
  312. data/lib/fluent/test/log.rb +79 -0
  313. data/lib/fluent/test/output_test.rb +156 -0
  314. data/lib/fluent/test/parser_test.rb +70 -0
  315. data/lib/fluent/test/startup_shutdown.rb +46 -0
  316. data/lib/fluent/test.rb +58 -0
  317. data/lib/fluent/time.rb +512 -0
  318. data/lib/fluent/timezone.rb +171 -0
  319. data/lib/fluent/tls.rb +81 -0
  320. data/lib/fluent/unique_id.rb +39 -0
  321. data/lib/fluent/variable_store.rb +40 -0
  322. data/lib/fluent/version.rb +21 -0
  323. data/lib/fluent/winsvc.rb +105 -0
  324. data/templates/new_gem/Gemfile +3 -0
  325. data/templates/new_gem/README.md.erb +43 -0
  326. data/templates/new_gem/Rakefile +13 -0
  327. data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
  328. data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
  329. data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
  330. data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
  331. data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
  332. data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
  333. data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
  334. data/templates/new_gem/test/helper.rb.erb +8 -0
  335. data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
  336. data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
  337. data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
  338. data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
  339. data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
  340. data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
  341. data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
  342. data/templates/plugin_config_formatter/param.md-table.erb +10 -0
  343. data/templates/plugin_config_formatter/param.md.erb +34 -0
  344. data/templates/plugin_config_formatter/section.md.erb +12 -0
  345. data/test/command/test_binlog_reader.rb +362 -0
  346. data/test/command/test_ca_generate.rb +70 -0
  347. data/test/command/test_cap_ctl.rb +100 -0
  348. data/test/command/test_cat.rb +128 -0
  349. data/test/command/test_ctl.rb +56 -0
  350. data/test/command/test_fluentd.rb +1139 -0
  351. data/test/command/test_plugin_config_formatter.rb +398 -0
  352. data/test/command/test_plugin_generator.rb +109 -0
  353. data/test/compat/test_calls_super.rb +166 -0
  354. data/test/compat/test_parser.rb +92 -0
  355. data/test/config/assertions.rb +42 -0
  356. data/test/config/test_config_parser.rb +551 -0
  357. data/test/config/test_configurable.rb +1784 -0
  358. data/test/config/test_configure_proxy.rb +604 -0
  359. data/test/config/test_dsl.rb +415 -0
  360. data/test/config/test_element.rb +518 -0
  361. data/test/config/test_literal_parser.rb +309 -0
  362. data/test/config/test_plugin_configuration.rb +56 -0
  363. data/test/config/test_section.rb +191 -0
  364. data/test/config/test_system_config.rb +201 -0
  365. data/test/config/test_types.rb +408 -0
  366. data/test/counter/test_client.rb +563 -0
  367. data/test/counter/test_error.rb +44 -0
  368. data/test/counter/test_mutex_hash.rb +179 -0
  369. data/test/counter/test_server.rb +589 -0
  370. data/test/counter/test_store.rb +258 -0
  371. data/test/counter/test_validator.rb +137 -0
  372. data/test/helper.rb +155 -0
  373. data/test/helpers/fuzzy_assert.rb +89 -0
  374. data/test/helpers/process_extenstion.rb +33 -0
  375. data/test/plugin/data/2010/01/20100102-030405.log +0 -0
  376. data/test/plugin/data/2010/01/20100102-030406.log +0 -0
  377. data/test/plugin/data/2010/01/20100102.log +0 -0
  378. data/test/plugin/data/log/bar +0 -0
  379. data/test/plugin/data/log/foo/bar.log +0 -0
  380. data/test/plugin/data/log/foo/bar2 +0 -0
  381. data/test/plugin/data/log/test.log +0 -0
  382. data/test/plugin/data/sd_file/config +11 -0
  383. data/test/plugin/data/sd_file/config.json +17 -0
  384. data/test/plugin/data/sd_file/config.yaml +11 -0
  385. data/test/plugin/data/sd_file/config.yml +11 -0
  386. data/test/plugin/data/sd_file/invalid_config.yml +7 -0
  387. data/test/plugin/in_tail/test_fifo.rb +121 -0
  388. data/test/plugin/in_tail/test_io_handler.rb +150 -0
  389. data/test/plugin/in_tail/test_position_file.rb +316 -0
  390. data/test/plugin/out_forward/test_ack_handler.rb +101 -0
  391. data/test/plugin/out_forward/test_connection_manager.rb +145 -0
  392. data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
  393. data/test/plugin/out_forward/test_load_balancer.rb +106 -0
  394. data/test/plugin/out_forward/test_socket_cache.rb +174 -0
  395. data/test/plugin/test_bare_output.rb +131 -0
  396. data/test/plugin/test_base.rb +115 -0
  397. data/test/plugin/test_buf_file.rb +1275 -0
  398. data/test/plugin/test_buf_file_single.rb +833 -0
  399. data/test/plugin/test_buf_memory.rb +42 -0
  400. data/test/plugin/test_buffer.rb +1383 -0
  401. data/test/plugin/test_buffer_chunk.rb +198 -0
  402. data/test/plugin/test_buffer_file_chunk.rb +871 -0
  403. data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
  404. data/test/plugin/test_buffer_memory_chunk.rb +339 -0
  405. data/test/plugin/test_compressable.rb +87 -0
  406. data/test/plugin/test_file_util.rb +96 -0
  407. data/test/plugin/test_file_wrapper.rb +58 -0
  408. data/test/plugin/test_filter.rb +368 -0
  409. data/test/plugin/test_filter_grep.rb +697 -0
  410. data/test/plugin/test_filter_parser.rb +731 -0
  411. data/test/plugin/test_filter_record_transformer.rb +577 -0
  412. data/test/plugin/test_filter_stdout.rb +207 -0
  413. data/test/plugin/test_formatter_csv.rb +136 -0
  414. data/test/plugin/test_formatter_hash.rb +38 -0
  415. data/test/plugin/test_formatter_json.rb +61 -0
  416. data/test/plugin/test_formatter_ltsv.rb +70 -0
  417. data/test/plugin/test_formatter_msgpack.rb +28 -0
  418. data/test/plugin/test_formatter_out_file.rb +116 -0
  419. data/test/plugin/test_formatter_single_value.rb +44 -0
  420. data/test/plugin/test_formatter_tsv.rb +76 -0
  421. data/test/plugin/test_in_debug_agent.rb +49 -0
  422. data/test/plugin/test_in_exec.rb +261 -0
  423. data/test/plugin/test_in_forward.rb +1178 -0
  424. data/test/plugin/test_in_gc_stat.rb +62 -0
  425. data/test/plugin/test_in_http.rb +1103 -0
  426. data/test/plugin/test_in_monitor_agent.rb +923 -0
  427. data/test/plugin/test_in_object_space.rb +66 -0
  428. data/test/plugin/test_in_sample.rb +190 -0
  429. data/test/plugin/test_in_syslog.rb +505 -0
  430. data/test/plugin/test_in_tail.rb +2639 -0
  431. data/test/plugin/test_in_tcp.rb +243 -0
  432. data/test/plugin/test_in_udp.rb +268 -0
  433. data/test/plugin/test_in_unix.rb +181 -0
  434. data/test/plugin/test_input.rb +137 -0
  435. data/test/plugin/test_metadata.rb +89 -0
  436. data/test/plugin/test_metrics.rb +294 -0
  437. data/test/plugin/test_metrics_local.rb +96 -0
  438. data/test/plugin/test_multi_output.rb +204 -0
  439. data/test/plugin/test_out_copy.rb +308 -0
  440. data/test/plugin/test_out_exec.rb +312 -0
  441. data/test/plugin/test_out_exec_filter.rb +606 -0
  442. data/test/plugin/test_out_file.rb +1037 -0
  443. data/test/plugin/test_out_forward.rb +1358 -0
  444. data/test/plugin/test_out_http.rb +428 -0
  445. data/test/plugin/test_out_null.rb +105 -0
  446. data/test/plugin/test_out_relabel.rb +28 -0
  447. data/test/plugin/test_out_roundrobin.rb +146 -0
  448. data/test/plugin/test_out_secondary_file.rb +458 -0
  449. data/test/plugin/test_out_stdout.rb +205 -0
  450. data/test/plugin/test_out_stream.rb +103 -0
  451. data/test/plugin/test_output.rb +1065 -0
  452. data/test/plugin/test_output_as_buffered.rb +2024 -0
  453. data/test/plugin/test_output_as_buffered_backup.rb +363 -0
  454. data/test/plugin/test_output_as_buffered_compress.rb +165 -0
  455. data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
  456. data/test/plugin/test_output_as_buffered_retries.rb +966 -0
  457. data/test/plugin/test_output_as_buffered_secondary.rb +882 -0
  458. data/test/plugin/test_output_as_standard.rb +374 -0
  459. data/test/plugin/test_owned_by.rb +35 -0
  460. data/test/plugin/test_parser.rb +399 -0
  461. data/test/plugin/test_parser_apache.rb +42 -0
  462. data/test/plugin/test_parser_apache2.rb +47 -0
  463. data/test/plugin/test_parser_apache_error.rb +45 -0
  464. data/test/plugin/test_parser_csv.rb +200 -0
  465. data/test/plugin/test_parser_json.rb +138 -0
  466. data/test/plugin/test_parser_labeled_tsv.rb +160 -0
  467. data/test/plugin/test_parser_multiline.rb +111 -0
  468. data/test/plugin/test_parser_nginx.rb +88 -0
  469. data/test/plugin/test_parser_none.rb +52 -0
  470. data/test/plugin/test_parser_regexp.rb +289 -0
  471. data/test/plugin/test_parser_syslog.rb +650 -0
  472. data/test/plugin/test_parser_tsv.rb +122 -0
  473. data/test/plugin/test_sd_file.rb +228 -0
  474. data/test/plugin/test_sd_srv.rb +230 -0
  475. data/test/plugin/test_storage.rb +167 -0
  476. data/test/plugin/test_storage_local.rb +335 -0
  477. data/test/plugin/test_string_util.rb +26 -0
  478. data/test/plugin_helper/data/cert/cert-key.pem +27 -0
  479. data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
  480. data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
  481. data/test/plugin_helper/data/cert/cert.pem +19 -0
  482. data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
  483. data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
  484. data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
  485. data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
  486. data/test/plugin_helper/data/cert/empty.pem +0 -0
  487. data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
  488. data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
  489. data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
  490. data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
  491. data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
  492. data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
  493. data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
  494. data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
  495. data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
  496. data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
  497. data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
  498. data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
  499. data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
  500. data/test/plugin_helper/http_server/test_app.rb +65 -0
  501. data/test/plugin_helper/http_server/test_route.rb +32 -0
  502. data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
  503. data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
  504. data/test/plugin_helper/test_cert_option.rb +25 -0
  505. data/test/plugin_helper/test_child_process.rb +852 -0
  506. data/test/plugin_helper/test_compat_parameters.rb +358 -0
  507. data/test/plugin_helper/test_event_emitter.rb +80 -0
  508. data/test/plugin_helper/test_event_loop.rb +52 -0
  509. data/test/plugin_helper/test_extract.rb +194 -0
  510. data/test/plugin_helper/test_formatter.rb +255 -0
  511. data/test/plugin_helper/test_http_server_helper.rb +372 -0
  512. data/test/plugin_helper/test_inject.rb +561 -0
  513. data/test/plugin_helper/test_metrics.rb +137 -0
  514. data/test/plugin_helper/test_parser.rb +264 -0
  515. data/test/plugin_helper/test_record_accessor.rb +238 -0
  516. data/test/plugin_helper/test_retry_state.rb +1006 -0
  517. data/test/plugin_helper/test_server.rb +1841 -0
  518. data/test/plugin_helper/test_service_discovery.rb +165 -0
  519. data/test/plugin_helper/test_socket.rb +146 -0
  520. data/test/plugin_helper/test_storage.rb +542 -0
  521. data/test/plugin_helper/test_thread.rb +164 -0
  522. data/test/plugin_helper/test_timer.rb +130 -0
  523. data/test/scripts/exec_script.rb +32 -0
  524. data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
  525. data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
  526. data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
  527. data/test/scripts/fluent/plugin/out_test.rb +81 -0
  528. data/test/scripts/fluent/plugin/out_test2.rb +80 -0
  529. data/test/scripts/fluent/plugin/parser_known.rb +4 -0
  530. data/test/test_capability.rb +74 -0
  531. data/test/test_clock.rb +164 -0
  532. data/test/test_config.rb +333 -0
  533. data/test/test_configdsl.rb +148 -0
  534. data/test/test_daemonizer.rb +91 -0
  535. data/test/test_engine.rb +203 -0
  536. data/test/test_event.rb +531 -0
  537. data/test/test_event_router.rb +348 -0
  538. data/test/test_event_time.rb +199 -0
  539. data/test/test_filter.rb +121 -0
  540. data/test/test_fluent_log_event_router.rb +99 -0
  541. data/test/test_formatter.rb +366 -0
  542. data/test/test_input.rb +31 -0
  543. data/test/test_log.rb +994 -0
  544. data/test/test_logger_initializer.rb +46 -0
  545. data/test/test_match.rb +148 -0
  546. data/test/test_mixin.rb +351 -0
  547. data/test/test_msgpack_factory.rb +18 -0
  548. data/test/test_oj_options.rb +55 -0
  549. data/test/test_output.rb +278 -0
  550. data/test/test_plugin.rb +251 -0
  551. data/test/test_plugin_classes.rb +370 -0
  552. data/test/test_plugin_helper.rb +81 -0
  553. data/test/test_plugin_id.rb +119 -0
  554. data/test/test_process.rb +14 -0
  555. data/test/test_root_agent.rb +951 -0
  556. data/test/test_static_config_analysis.rb +177 -0
  557. data/test/test_supervisor.rb +791 -0
  558. data/test/test_test_drivers.rb +136 -0
  559. data/test/test_time_formatter.rb +301 -0
  560. data/test/test_time_parser.rb +362 -0
  561. data/test/test_tls.rb +65 -0
  562. data/test/test_unique_id.rb +47 -0
  563. data/test/test_variable_store.rb +65 -0
  564. metadata +1191 -0
@@ -0,0 +1,1178 @@
1
+ require_relative '../helper'
2
+
3
+ require 'fluent/test/driver/input'
4
+ require 'fluent/test/startup_shutdown'
5
+ require 'base64'
6
+
7
+ require 'fluent/env'
8
+ require 'fluent/event'
9
+ require 'fluent/plugin/in_forward'
10
+ require 'fluent/plugin/compressable'
11
+
12
+ require 'timecop'
13
+
14
+ class ForwardInputTest < Test::Unit::TestCase
15
+ include Fluent::Plugin::Compressable
16
+
17
+ def setup
18
+ Fluent::Test.setup
19
+ @responses = [] # for testing responses after sending data
20
+ @d = nil
21
+ @port = unused_port
22
+ end
23
+
24
+ def teardown
25
+ @d.instance_shutdown if @d
26
+ @port = nil
27
+ end
28
+
29
+ SHARED_KEY = 'foobar1'
30
+ USER_NAME = 'tagomoris'
31
+ USER_PASSWORD = 'fluentd'
32
+
33
+ def base_config
34
+ %[
35
+ port #{@port}
36
+ bind 127.0.0.1
37
+ ]
38
+ end
39
+ LOCALHOST_HOSTNAME_GETTER = ->(){sock = UDPSocket.new(::Socket::AF_INET); sock.do_not_reverse_lookup = false; sock.connect("127.0.0.1", 2048); sock.peeraddr[2] }
40
+ LOCALHOST_HOSTNAME = LOCALHOST_HOSTNAME_GETTER.call
41
+ DUMMY_SOCK = Struct.new(:remote_host, :remote_addr, :remote_port).new(LOCALHOST_HOSTNAME, "127.0.0.1", 0)
42
+
43
+ def config_auth
44
+ base_config + %[
45
+ <security>
46
+ self_hostname localhost
47
+ shared_key foobar1
48
+ user_auth true
49
+ <user>
50
+ username #{USER_NAME}
51
+ password #{USER_PASSWORD}
52
+ </user>
53
+ <client>
54
+ network 127.0.0.0/8
55
+ shared_key #{SHARED_KEY}
56
+ users ["#{USER_NAME}"]
57
+ </client>
58
+ </security>
59
+ ]
60
+ end
61
+
62
+ def create_driver(conf=base_config)
63
+ Fluent::Test::Driver::Input.new(Fluent::Plugin::ForwardInput).configure(conf)
64
+ end
65
+
66
+ sub_test_case '#configure' do
67
+ test 'simple' do
68
+ @d = d = create_driver
69
+ assert_equal @port, d.instance.port
70
+ assert_equal '127.0.0.1', d.instance.bind
71
+ assert_equal 0.5, d.instance.blocking_timeout
72
+ assert !d.instance.backlog
73
+ end
74
+
75
+ test 'auth' do
76
+ @d = d = create_driver(config_auth)
77
+ assert_equal @port, d.instance.port
78
+ assert_equal '127.0.0.1', d.instance.bind
79
+ assert !d.instance.backlog
80
+
81
+ assert d.instance.security
82
+ assert_equal 1, d.instance.security.users.size
83
+ assert_equal 1, d.instance.security.clients.size
84
+ end
85
+
86
+ data(tag: "tag",
87
+ add_tag_prefix: "add_tag_prefix")
88
+ test 'tag parameters' do |data|
89
+ assert_raise(Fluent::ConfigError.new("'#{data}' parameter must not be empty")) {
90
+ create_driver(base_config + "#{data} ''")
91
+ }
92
+ end
93
+
94
+ test 'send_keepalive_packet is disabled by default' do
95
+ @d = d = create_driver(config_auth)
96
+ assert_false d.instance.send_keepalive_packet
97
+ end
98
+
99
+ test 'send_keepalive_packet can be enabled' do
100
+ @d = d = create_driver(config_auth + %[
101
+ send_keepalive_packet true
102
+ ])
103
+ assert_true d.instance.send_keepalive_packet
104
+ end
105
+
106
+ test 'both send_keepalive_packet and deny_keepalive cannot be enabled' do
107
+ assert_raise(Fluent::ConfigError.new("both 'send_keepalive_packet' and 'deny_keepalive' cannot be set to true")) do
108
+ create_driver(config_auth + %[
109
+ send_keepalive_packet true
110
+ deny_keepalive true
111
+ ])
112
+ end
113
+ end
114
+ end
115
+
116
+ sub_test_case 'message' do
117
+ test 'time' do
118
+ time = event_time("2011-01-02 13:14:15 UTC")
119
+ begin
120
+ Timecop.freeze(Time.at(time))
121
+ @d = d = create_driver
122
+
123
+ records = [
124
+ ["tag1", time, {"a"=>1}],
125
+ ["tag2", time, {"a"=>2}],
126
+ ]
127
+
128
+ d.run(expect_records: records.length, timeout: 5) do
129
+ records.each {|tag, _time, record|
130
+ send_data packer.write([tag, 0, record]).to_s
131
+ }
132
+ end
133
+ assert_equal(records, d.events.sort_by {|a| a[0] })
134
+ ensure
135
+ Timecop.return
136
+ end
137
+ end
138
+
139
+ test 'plain' do
140
+ @d = d = create_driver
141
+
142
+ time = event_time("2011-01-02 13:14:15 UTC")
143
+
144
+ records = [
145
+ ["tag1", time, {"a"=>1}],
146
+ ["tag2", time, {"a"=>2}],
147
+ ]
148
+
149
+ d.run(expect_records: records.length, timeout: 5) do
150
+ records.each {|tag, _time, record|
151
+ send_data packer.write([tag, _time, record]).to_s
152
+ }
153
+ end
154
+ assert_equal(records, d.events)
155
+ end
156
+
157
+ test 'time_as_integer' do
158
+ @d = d = create_driver
159
+
160
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
161
+
162
+ records = [
163
+ ["tag1", time_i, {"a"=>1}],
164
+ ["tag2", time_i, {"a"=>2}],
165
+ ]
166
+
167
+ d.run(expect_records: records.length, timeout: 5) do
168
+ records.each {|tag, _time, record|
169
+ send_data packer.write([tag, _time, record]).to_s
170
+ }
171
+ end
172
+
173
+ assert_equal(records, d.events)
174
+ end
175
+
176
+ test 'skip_invalid_event' do
177
+ @d = d = create_driver(base_config + "skip_invalid_event true")
178
+
179
+ time = event_time("2011-01-02 13:14:15 UTC")
180
+
181
+ records = [
182
+ ["tag1", time, {"a" => 1}],
183
+ ["tag2", time, {"a" => 2}],
184
+ ]
185
+
186
+ d.run(shutdown: false, expect_records: 2, timeout: 10) do
187
+ entries = []
188
+ # These entries are skipped
189
+ entries << ['tag1', true, {'a' => 3}] << ['tag2', time, 'invalid record']
190
+ entries += records.map { |tag, _time, record| [tag, _time, record] }
191
+
192
+ entries.each {|tag, _time, record|
193
+ # Without ack, logs are sometimes not saved to logs during test.
194
+ send_data packer.write([tag, _time, record]).to_s #, try_to_receive_response: true
195
+ }
196
+ end
197
+
198
+ logs = d.instance.log.logs
199
+ assert_equal 2, logs.count { |line| line =~ /got invalid event and drop it/ }
200
+ assert_equal records[0], d.events[0]
201
+ assert_equal records[1], d.events[1]
202
+
203
+ d.instance_shutdown
204
+ end
205
+
206
+ test 'json_using_integer_time' do
207
+ @d = d = create_driver
208
+
209
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
210
+
211
+ records = [
212
+ ["tag1", time_i, {"a"=>1}],
213
+ ["tag2", time_i, {"a"=>2}],
214
+ ]
215
+
216
+ d.run(expect_records: records.length, timeout: 20) do
217
+ records.each {|tag, _time, record|
218
+ send_data [tag, _time, record].to_json
219
+ }
220
+ end
221
+
222
+ assert_equal(records, d.events.sort_by {|a| a[0] })
223
+ end
224
+
225
+ test 'json_with_newline' do
226
+ @d = d = create_driver
227
+
228
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
229
+
230
+ records = [
231
+ ["tag1", time_i, {"a"=>1}],
232
+ ["tag2", time_i, {"a"=>2}],
233
+ ]
234
+
235
+ d.run(expect_records: records.length, timeout: 20, shutdown: true) do
236
+ records.each {|tag, _time, record|
237
+ send_data [tag, _time, record].to_json + "\n"
238
+ }
239
+ end
240
+
241
+ assert_equal(records, d.events.sort_by {|a| a[0] })
242
+ end
243
+ end
244
+
245
+ sub_test_case 'forward' do
246
+ data(tcp: {
247
+ options: {
248
+ auth: false
249
+ }
250
+ },
251
+ auth: {
252
+ options: {
253
+ auth: true
254
+ }
255
+ })
256
+ test 'plain' do |data|
257
+ options = data[:options]
258
+ config = options[:auth] ? config_auth : base_config
259
+ @d = d = create_driver(config)
260
+
261
+ time = event_time("2011-01-02 13:14:15 UTC")
262
+
263
+ records = [
264
+ ["tag1", time, {"a"=>1}],
265
+ ["tag1", time, {"a"=>2}]
266
+ ]
267
+
268
+ d.run(expect_records: records.length, timeout: 20) do
269
+ entries = []
270
+ records.each {|tag, _time, record|
271
+ entries << [_time, record]
272
+ }
273
+ send_data packer.write(["tag1", entries]).to_s, **options
274
+ end
275
+ assert_equal(records, d.events)
276
+ end
277
+
278
+ data(tag: {
279
+ param: "tag new_tag",
280
+ result: "new_tag"
281
+ },
282
+ add_tag_prefix: {
283
+ param: "add_tag_prefix new_prefix",
284
+ result: "new_prefix.tag1"
285
+ })
286
+ test 'tag parameters' do |data|
287
+ @d = create_driver(base_config + data[:param])
288
+ time = event_time("2011-01-02 13:14:15 UTC")
289
+ options = {auth: false}
290
+
291
+ records = [
292
+ ["tag1", time, {"a"=>1}],
293
+ ["tag1", time, {"a"=>2}],
294
+ ]
295
+
296
+ @d.run(expect_records: records.length, timeout: 20) do
297
+ entries = []
298
+ records.each {|tag, _time, record|
299
+ entries << [_time, record]
300
+ }
301
+ send_data packer.write(["tag1", entries]).to_s, **options
302
+ end
303
+ assert_equal(data[:result], @d.events[0][0])
304
+ end
305
+
306
+ data(tcp: {
307
+ options: {
308
+ auth: false
309
+ }
310
+ },
311
+ auth: {
312
+ options: {
313
+ auth: true
314
+ }
315
+ })
316
+ test 'time_as_integer' do |data|
317
+ options = data[:options]
318
+ config = options[:auth] ? config_auth : base_config
319
+ @d = d = create_driver(config)
320
+
321
+ time_i = event_time("2011-01-02 13:14:15 UTC")
322
+
323
+ records = [
324
+ ["tag1", time_i, {"a"=>1}],
325
+ ["tag1", time_i, {"a"=>2}]
326
+ ]
327
+
328
+ d.run(expect_records: records.length, timeout: 20) do
329
+ entries = []
330
+ records.each {|tag, _time, record|
331
+ entries << [_time, record]
332
+ }
333
+ send_data packer.write(["tag1", entries]).to_s, **options
334
+ end
335
+
336
+ assert_equal(records, d.events)
337
+ end
338
+
339
+ data(tcp: {
340
+ options: {
341
+ auth: false
342
+ }
343
+ },
344
+ auth: {
345
+ options: {
346
+ auth: true
347
+ }
348
+ })
349
+ test 'skip_invalid_event' do |data|
350
+ options = data[:options]
351
+ config = options[:auth] ? config_auth : base_config
352
+ @d = d = create_driver(config + "skip_invalid_event true")
353
+
354
+ time = event_time("2011-01-02 13:14:15 UTC")
355
+
356
+ records = [
357
+ ["tag1", time, {"a" => 1}],
358
+ ["tag1", time, {"a" => 2}],
359
+ ]
360
+
361
+ d.run(shutdown: false, expect_records: records.length, timeout: 20) do
362
+ entries = records.map { |tag, _time, record| [_time, record] }
363
+ # These entries are skipped
364
+ entries << ['invalid time', {'a' => 3}] << [time, 'invalid record']
365
+
366
+ send_data packer.write(["tag1", entries]).to_s, **options
367
+ end
368
+
369
+ logs = d.instance.log.out.logs
370
+ assert{ logs.select{|line| line =~ /skip invalid event/ }.size == 2 }
371
+
372
+ d.instance_shutdown
373
+ end
374
+ end
375
+
376
+ sub_test_case 'packed forward' do
377
+ data(tcp: {
378
+ options: {
379
+ auth: false
380
+ }
381
+ },
382
+ auth: {
383
+ options: {
384
+ auth: true
385
+ }
386
+ })
387
+ test 'plain' do |data|
388
+ options = data[:options]
389
+ config = options[:auth] ? config_auth : base_config
390
+ @d = d = create_driver(config)
391
+
392
+ time = event_time("2011-01-02 13:14:15 UTC")
393
+
394
+ records = [
395
+ ["tag1", time, {"a"=>1}],
396
+ ["tag1", time, {"a"=>2}],
397
+ ]
398
+
399
+ d.run(expect_records: records.length, timeout: 20) do
400
+ entries = ''
401
+ records.each {|_tag, _time, record|
402
+ packer(entries).write([_time, record]).flush
403
+ }
404
+ send_data packer.write(["tag1", entries]).to_s, **options
405
+ end
406
+ assert_equal(records, d.events)
407
+ end
408
+
409
+ data(tag: {
410
+ param: "tag new_tag",
411
+ result: "new_tag"
412
+ },
413
+ add_tag_prefix: {
414
+ param: "add_tag_prefix new_prefix",
415
+ result: "new_prefix.tag1"
416
+ })
417
+ test 'tag parameters' do |data|
418
+ @d = create_driver(base_config + data[:param])
419
+ time = event_time("2011-01-02 13:14:15 UTC")
420
+ options = {auth: false}
421
+
422
+ records = [
423
+ ["tag1", time, {"a"=>1}],
424
+ ["tag1", time, {"a"=>2}],
425
+ ]
426
+
427
+ @d.run(expect_records: records.length, timeout: 20) do
428
+ entries = ''
429
+ records.each {|_tag, _time, record|
430
+ packer(entries).write([_time, record]).flush
431
+ }
432
+ send_data packer.write(["tag1", entries]).to_s, **options
433
+ end
434
+ assert_equal(data[:result], @d.events[0][0])
435
+ end
436
+
437
+ data(tcp: {
438
+ options: {
439
+ auth: false
440
+ }
441
+ },
442
+ auth: {
443
+ options: {
444
+ auth: true
445
+ }
446
+ })
447
+ test 'time_as_integer' do |data|
448
+ options = data[:options]
449
+ config = options[:auth] ? config_auth : base_config
450
+ @d = d = create_driver(config)
451
+
452
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
453
+
454
+ records = [
455
+ ["tag1", time_i, {"a"=>1}],
456
+ ["tag1", time_i, {"a"=>2}],
457
+ ]
458
+
459
+ d.run(expect_records: records.length, timeout: 20) do
460
+ entries = ''
461
+ records.each {|tag, _time, record|
462
+ packer(entries).write([_time, record]).flush
463
+ }
464
+ send_data packer.write(["tag1", entries]).to_s, **options
465
+ end
466
+ assert_equal(records, d.events)
467
+ end
468
+
469
+ data(tcp: {
470
+ options: {
471
+ auth: false
472
+ }
473
+ },
474
+ auth: {
475
+ options: {
476
+ auth: true
477
+ }
478
+ })
479
+ test 'skip_invalid_event' do |data|
480
+ options = data[:options]
481
+ config = options[:auth] ? config_auth : base_config
482
+ @d = d = create_driver(config + "skip_invalid_event true")
483
+
484
+ time = event_time("2011-01-02 13:14:15 UTC")
485
+
486
+ records = [
487
+ ["tag1", time, {"a" => 1}],
488
+ ["tag1", time, {"a" => 2}],
489
+ ]
490
+
491
+ d.run(shutdown: false, expect_records: records.length, timeout: 20) do
492
+ entries = records.map { |tag, _time, record| [_time, record] }
493
+ # These entries are skipped
494
+ entries << ['invalid time', {'a' => 3}] << [time, 'invalid record']
495
+
496
+ packed_entries = ''
497
+ entries.each { |_time, record|
498
+ packer(packed_entries).write([_time, record]).flush
499
+ }
500
+ send_data packer.write(["tag1", packed_entries]).to_s, **options
501
+ end
502
+
503
+ logs = d.instance.log.logs
504
+ assert_equal 2, logs.count { |line| line =~ /skip invalid event/ }
505
+
506
+ d.instance_shutdown
507
+ end
508
+ end
509
+
510
+ sub_test_case 'compressed packed forward' do
511
+ test 'set_compress_to_option' do
512
+ @d = d = create_driver
513
+
514
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
515
+ events = [
516
+ ["tag1", time_i, {"a"=>1}],
517
+ ["tag1", time_i, {"a"=>2}]
518
+ ]
519
+
520
+ # create compressed entries
521
+ entries = ''
522
+ events.each do |_tag, _time, record|
523
+ v = [_time, record].to_msgpack
524
+ entries << compress(v)
525
+ end
526
+ chunk = ["tag1", entries, { 'compressed' => 'gzip' }].to_msgpack
527
+
528
+ d.run do
529
+ Fluent::MessagePackFactory.msgpack_unpacker.feed_each(chunk) do |obj|
530
+ option = d.instance.send(:on_message, obj, chunk.size, DUMMY_SOCK)
531
+ assert_equal 'gzip', option['compressed']
532
+ end
533
+ end
534
+
535
+ assert_equal events, d.events
536
+ end
537
+
538
+ test 'create_CompressedMessagePackEventStream_with_gzip_compress_option' do
539
+ @d = d = create_driver
540
+
541
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
542
+ events = [
543
+ ["tag1", time_i, {"a"=>1}],
544
+ ["tag1", time_i, {"a"=>2}]
545
+ ]
546
+
547
+ # create compressed entries
548
+ entries = ''
549
+ events.each do |_tag, _time, record|
550
+ v = [_time, record].to_msgpack
551
+ entries << compress(v)
552
+ end
553
+ chunk = ["tag1", entries, { 'compressed' => 'gzip' }].to_msgpack
554
+
555
+ # check CompressedMessagePackEventStream is created
556
+ mock(Fluent::CompressedMessagePackEventStream).new(entries, nil, 0)
557
+
558
+ d.run do
559
+ Fluent::MessagePackFactory.msgpack_unpacker.feed_each(chunk) do |obj|
560
+ option = d.instance.send(:on_message, obj, chunk.size, DUMMY_SOCK)
561
+ assert_equal 'gzip', option['compressed']
562
+ end
563
+ end
564
+ end
565
+ end
566
+
567
+ sub_test_case 'warning' do
568
+ test 'send_large_chunk_warning' do
569
+ @d = d = create_driver(base_config + %[
570
+ chunk_size_warn_limit 16M
571
+ chunk_size_limit 32M
572
+ ])
573
+
574
+ time = event_time("2014-04-25 13:14:15 UTC")
575
+
576
+ # generate over 16M chunk
577
+ str = "X" * 1024 * 1024
578
+ chunk = [ "test.tag", (0...16).map{|i| [time + i, {"data" => str}] } ].to_msgpack
579
+ assert chunk.size > (16 * 1024 * 1024)
580
+ assert chunk.size < (32 * 1024 * 1024)
581
+
582
+ d.run(shutdown: false) do
583
+ Fluent::MessagePackFactory.msgpack_unpacker.feed_each(chunk) do |obj|
584
+ d.instance.send(:on_message, obj, chunk.size, DUMMY_SOCK)
585
+ end
586
+ end
587
+
588
+ # check emitted data
589
+ emits = d.events
590
+ assert_equal 16, emits.size
591
+ assert emits.map(&:first).all?{|t| t == "test.tag" }
592
+ assert_equal (0...16).to_a, emits.map{|_tag, t, _record| t - time }
593
+
594
+ # check log
595
+ logs = d.instance.log.logs
596
+ assert_equal 1, logs.select{|line|
597
+ line =~ / \[warn\]: Input chunk size is larger than 'chunk_size_warn_limit':/ &&
598
+ line =~ / tag="test.tag" host="#{LOCALHOST_HOSTNAME}" limit=16777216 size=16777501/
599
+ }.size, "large chunk warning is not logged"
600
+
601
+ d.instance_shutdown
602
+ end
603
+
604
+ test 'send_large_chunk_only_warning' do
605
+ @d = d = create_driver(base_config + %[
606
+ chunk_size_warn_limit 16M
607
+ ])
608
+ time = event_time("2014-04-25 13:14:15 UTC")
609
+
610
+ # generate over 16M chunk
611
+ str = "X" * 1024 * 1024
612
+ chunk = [ "test.tag", (0...16).map{|i| [time + i, {"data" => str}] } ].to_msgpack
613
+
614
+ d.run(shutdown: false) do
615
+ Fluent::MessagePackFactory.msgpack_unpacker.feed_each(chunk) do |obj|
616
+ d.instance.send(:on_message, obj, chunk.size, DUMMY_SOCK)
617
+ end
618
+ end
619
+
620
+ # check log
621
+ logs = d.instance.log.logs
622
+ assert_equal 1, logs.select{ |line|
623
+ line =~ / \[warn\]: Input chunk size is larger than 'chunk_size_warn_limit':/ &&
624
+ line =~ / tag="test.tag" host="#{LOCALHOST_HOSTNAME}" limit=16777216 size=16777501/
625
+ }.size, "large chunk warning is not logged"
626
+
627
+ d.instance_shutdown
628
+ end
629
+
630
+ test 'send_large_chunk_limit' do
631
+ @d = d = create_driver(base_config + %[
632
+ chunk_size_warn_limit 16M
633
+ chunk_size_limit 32M
634
+ ])
635
+
636
+ time = event_time("2014-04-25 13:14:15 UTC")
637
+
638
+ # generate over 32M chunk
639
+ str = "X" * 1024 * 1024
640
+ chunk = [ "test.tag", (0...32).map{|i| [time + i, {"data" => str}] } ].to_msgpack
641
+ assert chunk.size > (32 * 1024 * 1024)
642
+
643
+ # d.run => send_data
644
+ d.run(shutdown: false) do
645
+ Fluent::MessagePackFactory.msgpack_unpacker.feed_each(chunk) do |obj|
646
+ d.instance.send(:on_message, obj, chunk.size, DUMMY_SOCK)
647
+ end
648
+ end
649
+
650
+ # check emitted data
651
+ emits = d.events
652
+ assert_equal 0, emits.size
653
+
654
+ # check log
655
+ logs = d.instance.log.logs
656
+ assert_equal 1, logs.select{|line|
657
+ line =~ / \[warn\]: Input chunk size is larger than 'chunk_size_limit', dropped:/ &&
658
+ line =~ / tag="test.tag" host="#{LOCALHOST_HOSTNAME}" limit=33554432 size=33554989/
659
+ }.size, "large chunk warning is not logged"
660
+
661
+ d.instance_shutdown
662
+ end
663
+
664
+ data('string chunk' => 'broken string',
665
+ 'integer chunk' => 10)
666
+ test 'send_broken_chunk' do |data|
667
+ @d = d = create_driver
668
+
669
+ # d.run => send_data
670
+ d.run(shutdown: false) do
671
+ d.instance.send(:on_message, data, 1000000000, DUMMY_SOCK)
672
+ end
673
+
674
+ # check emitted data
675
+ assert_equal 0, d.events.size
676
+
677
+ # check log
678
+ logs = d.instance.log.logs
679
+ assert_equal 1, logs.select{|line|
680
+ line =~ / \[warn\]: incoming chunk is broken: host="#{LOCALHOST_HOSTNAME}" msg=#{data.inspect}/
681
+ }.size, "should not accept broken chunk"
682
+
683
+ d.instance_shutdown
684
+ end
685
+ end
686
+
687
+ sub_test_case 'respond to required ack' do
688
+ data(tcp: {
689
+ options: {
690
+ auth: false
691
+ }
692
+ },
693
+ auth: {
694
+ options: {
695
+ auth: true
696
+ }
697
+ })
698
+ test 'message' do |data|
699
+ options = data[:options]
700
+ config = options[:auth] ? config_auth : base_config
701
+ @d = d = create_driver(config)
702
+
703
+ time = event_time("2011-01-02 13:14:15 UTC")
704
+
705
+ events = [
706
+ ["tag1", time, {"a"=>1}],
707
+ ["tag2", time, {"a"=>2}]
708
+ ]
709
+
710
+ expected_acks = []
711
+
712
+ d.run(expect_records: events.size) do
713
+ events.each {|tag, _time, record|
714
+ op = { 'chunk' => Base64.encode64(record.object_id.to_s) }
715
+ expected_acks << op['chunk']
716
+ send_data([tag, _time, record, op].to_msgpack, try_to_receive_response: true, response_timeout: 1, **options)
717
+ }
718
+ end
719
+
720
+ assert_equal events, d.events
721
+ assert_equal expected_acks, @responses.map { |res| MessagePack.unpack(res)['ack'] }
722
+ end
723
+
724
+ # FIX: response is not pushed into @responses because IO.select has been blocked until InputForward shutdowns
725
+ data(tcp: {
726
+ options: {
727
+ auth: false
728
+ }
729
+ },
730
+ auth: {
731
+ options: {
732
+ auth: true
733
+ }
734
+ })
735
+ test 'forward' do |data|
736
+ options = data[:options]
737
+ config = options[:auth] ? config_auth : base_config
738
+ @d = d = create_driver(config)
739
+
740
+ time = event_time("2011-01-02 13:14:15 UTC")
741
+
742
+ events = [
743
+ ["tag1", time, {"a"=>1}],
744
+ ["tag1", time, {"a"=>2}]
745
+ ]
746
+
747
+ expected_acks = []
748
+
749
+ d.run(expect_records: events.size) do
750
+ entries = []
751
+ events.each {|_tag, _time, record|
752
+ entries << [_time, record]
753
+ }
754
+ op = { 'chunk' => Base64.encode64(entries.object_id.to_s) }
755
+ expected_acks << op['chunk']
756
+ send_data(["tag1", entries, op].to_msgpack, try_to_receive_response: true, response_timeout: 1, **options)
757
+ end
758
+
759
+ assert_equal events, d.events
760
+ assert_equal expected_acks, @responses.map { |res| MessagePack.unpack(res)['ack'] }
761
+ end
762
+
763
+ data(tcp: {
764
+ options: {
765
+ auth: false
766
+ }
767
+ },
768
+ auth: {
769
+ options: {
770
+ auth: true
771
+ }
772
+ })
773
+ test 'packed_forward' do |data|
774
+ options = data[:options]
775
+ config = options[:auth] ? config_auth : base_config
776
+ @d = d = create_driver(config)
777
+
778
+ time = event_time("2011-01-02 13:14:15 UTC")
779
+
780
+ events = [
781
+ ["tag1", time, {"a"=>1}],
782
+ ["tag1", time, {"a"=>2}]
783
+ ]
784
+
785
+ expected_acks = []
786
+
787
+ d.run(expect_records: events.size) do
788
+ entries = ''
789
+ events.each {|_tag, _time,record|
790
+ [time, record].to_msgpack(entries)
791
+ }
792
+ op = { 'chunk' => Base64.encode64(entries.object_id.to_s) }
793
+ expected_acks << op['chunk']
794
+ send_data(["tag1", entries, op].to_msgpack, try_to_receive_response: true, response_timeout: 1, **options)
795
+ end
796
+
797
+ assert_equal events, d.events
798
+ assert_equal expected_acks, @responses.map { |res| MessagePack.unpack(res)['ack'] }
799
+ end
800
+
801
+ data(
802
+ tcp: {
803
+ options: {
804
+ auth: false
805
+ }
806
+ },
807
+ ### Auth is not supported with json
808
+ # auth: {
809
+ # options: {
810
+ # auth: true
811
+ # }
812
+ # },
813
+ )
814
+ test 'message_json' do |data|
815
+ options = data[:options]
816
+ config = options[:auth] ? config_auth : base_config
817
+ @d = d = create_driver(config)
818
+
819
+ time_i = event_time("2011-01-02 13:14:15 UTC")
820
+
821
+ events = [
822
+ ["tag1", time_i, {"a"=>1}],
823
+ ["tag2", time_i, {"a"=>2}]
824
+ ]
825
+
826
+ expected_acks = []
827
+
828
+ d.run(expect_records: events.size, timeout: 20) do
829
+ events.each {|tag, _time, record|
830
+ op = { 'chunk' => Base64.encode64(record.object_id.to_s) }
831
+ expected_acks << op['chunk']
832
+ send_data([tag, _time, record, op].to_json, try_to_receive_response: true, response_timeout: 1, **options)
833
+ }
834
+ end
835
+
836
+ assert_equal events, d.events
837
+ assert_equal expected_acks, @responses.map { |res| JSON.parse(res)['ack'] }
838
+ end
839
+ end
840
+
841
+ sub_test_case 'not respond without required ack' do
842
+ data(tcp: {
843
+ options: {
844
+ auth: false
845
+ }
846
+ },
847
+ auth: {
848
+ options: {
849
+ auth: true
850
+ }
851
+ })
852
+ test 'message' do |data|
853
+ options = data[:options]
854
+ config = options[:auth] ? config_auth : base_config
855
+ @d = d = create_driver(config)
856
+
857
+ time = event_time("2011-01-02 13:14:15 UTC")
858
+
859
+ events = [
860
+ ["tag1", time, {"a"=>1}],
861
+ ["tag2", time, {"a"=>2}]
862
+ ]
863
+
864
+ d.run(expect_records: events.size, timeout: 20) do
865
+ events.each {|tag, _time, record|
866
+ send_data([tag, _time, record].to_msgpack, try_to_receive_response: true, response_timeout: 1, **options)
867
+ }
868
+ end
869
+
870
+ assert_equal events, d.events
871
+ assert_equal [nil, nil], @responses
872
+ end
873
+
874
+ data(tcp: {
875
+ options: {
876
+ auth: false
877
+ }
878
+ },
879
+ auth: {
880
+ options: {
881
+ auth: true
882
+ }
883
+ })
884
+ test 'forward' do |data|
885
+ options = data[:options]
886
+ config = options[:auth] ? config_auth : base_config
887
+ @d = d = create_driver(config)
888
+
889
+ time = event_time("2011-01-02 13:14:15 UTC")
890
+
891
+ events = [
892
+ ["tag1", time, {"a"=>1}],
893
+ ["tag1", time, {"a"=>2}]
894
+ ]
895
+
896
+ d.run(expect_records: events.size, timeout: 20) do
897
+ entries = []
898
+ events.each {|tag, _time, record|
899
+ entries << [_time, record]
900
+ }
901
+ send_data(["tag1", entries].to_msgpack, try_to_receive_response: true, response_timeout: 1, **options)
902
+ end
903
+
904
+ assert_equal events, d.events
905
+ assert_equal [nil], @responses
906
+ end
907
+
908
+ data(tcp: {
909
+ options: {
910
+ auth: false
911
+ }
912
+ },
913
+ auth: {
914
+ options: {
915
+ auth: true
916
+ }
917
+ })
918
+ test 'packed_forward' do |data|
919
+ options = data[:options]
920
+ config = options[:auth] ? config_auth : base_config
921
+ @d = d = create_driver(config)
922
+
923
+ time = event_time("2011-01-02 13:14:15 UTC")
924
+
925
+ events = [
926
+ ["tag1", time, {"a"=>1}],
927
+ ["tag1", time, {"a"=>2}]
928
+ ]
929
+
930
+ d.run(expect_records: events.size, timeout: 20) do
931
+ entries = ''
932
+ events.each {|tag, _time, record|
933
+ [_time, record].to_msgpack(entries)
934
+ }
935
+ send_data(["tag1", entries].to_msgpack, try_to_receive_response: true, response_timeout: 1, **options)
936
+ end
937
+
938
+ assert_equal events, d.events
939
+ assert_equal [nil], @responses
940
+ end
941
+
942
+ data(
943
+ tcp: {
944
+ options: {
945
+ auth: false
946
+ }
947
+ },
948
+ ### Auth is not supported with json
949
+ # auth: {
950
+ # config: config_auth,
951
+ # options: {
952
+ # auth: true
953
+ # }
954
+ # },
955
+ )
956
+ test 'message_json' do |data|
957
+ options = data[:options]
958
+ config = options[:auth] ? config_auth : base_config
959
+ @d = d = create_driver(config)
960
+
961
+ time_i = event_time("2011-01-02 13:14:15 UTC").to_i
962
+
963
+ events = [
964
+ ["tag1", time_i, {"a"=>1}],
965
+ ["tag2", time_i, {"a"=>2}]
966
+ ]
967
+
968
+ d.run(expect_records: events.size, timeout: 20) do
969
+ events.each {|tag, _time, record|
970
+ send_data([tag, _time, record].to_json, try_to_receive_response: true, response_timeout: 1, **options)
971
+ }
972
+ end
973
+
974
+ assert_equal events, d.events
975
+ assert_equal [nil, nil], @responses
976
+ end
977
+ end
978
+
979
+ def packer(*args)
980
+ Fluent::MessagePackFactory.msgpack_packer(*args)
981
+ end
982
+
983
+ def unpacker
984
+ Fluent::MessagePackFactory.msgpack_unpacker
985
+ end
986
+
987
+ # res
988
+ # '' : socket is disconnected without any data
989
+ # nil: socket read timeout
990
+ def read_data(io, timeout, &block)
991
+ res = ''
992
+ select_timeout = 0.5
993
+ clock_id = Process::CLOCK_MONOTONIC_RAW rescue Process::CLOCK_MONOTONIC
994
+ timeout_at = Process.clock_gettime(clock_id) + timeout
995
+ begin
996
+ buf = ''
997
+ io_activated = false
998
+ while Process.clock_gettime(clock_id) < timeout_at
999
+ if IO.select([io], nil, nil, select_timeout)
1000
+ io_activated = true
1001
+ buf = io.readpartial(2048)
1002
+ res ||= ''
1003
+ res << buf
1004
+
1005
+ break if block.call(res)
1006
+ end
1007
+ end
1008
+ res = nil unless io_activated # timeout without no data arrival
1009
+ rescue Errno::EAGAIN
1010
+ sleep 0.01
1011
+ retry if res == ''
1012
+ # if res is not empty, all data in socket buffer are read, so do not retry
1013
+ rescue IOError, EOFError, Errno::ECONNRESET
1014
+ # socket disconnected
1015
+ end
1016
+ res
1017
+ end
1018
+
1019
+ def simulate_auth_sequence(io, shared_key=SHARED_KEY, username=USER_NAME, password=USER_PASSWORD)
1020
+ auth_response_timeout = 30
1021
+ shared_key_salt = 'salt'
1022
+
1023
+ # reading helo
1024
+ helo_data = read_data(io, auth_response_timeout){|data| MessagePack.unpack(data) rescue nil }
1025
+ raise "Authentication packet timeout" unless helo_data
1026
+ raise "Authentication connection closed" if helo_data == ''
1027
+ # ['HELO', options(hash)]
1028
+ helo = MessagePack.unpack(helo_data)
1029
+ raise "Invalid HELO header" unless helo[0] == 'HELO'
1030
+ raise "Invalid HELO option object" unless helo[1].is_a?(Hash)
1031
+ @options = helo[1]
1032
+
1033
+ # sending ping
1034
+ ping = [
1035
+ 'PING',
1036
+ 'selfhostname',
1037
+ shared_key_salt,
1038
+ Digest::SHA512.new
1039
+ .update(shared_key_salt)
1040
+ .update('selfhostname')
1041
+ .update(@options['nonce'])
1042
+ .update(shared_key).hexdigest,
1043
+ ]
1044
+ if @options['auth'] # auth enabled -> value is auth salt
1045
+ pass_digest = Digest::SHA512.new.update(@options['auth']).update(username).update(password).hexdigest
1046
+ ping.push(username, pass_digest)
1047
+ else
1048
+ ping.push('', '')
1049
+ end
1050
+ io.write ping.to_msgpack
1051
+ io.flush
1052
+
1053
+ # reading pong
1054
+ pong_data = read_data(io, auth_response_timeout){|data| MessagePack.unpack(data) rescue nil }
1055
+ raise "PONG packet timeout" unless pong_data
1056
+ raise "PONG connection closed" if pong_data == ''
1057
+ # ['PING', bool(auth_result), string(reason_if_failed), self_hostname, shared_key_digest]
1058
+ pong = MessagePack.unpack(pong_data)
1059
+ raise "Invalid PONG header" unless pong[0] == 'PONG'
1060
+ raise "Authentication Failure: #{pong[2]}" unless pong[1]
1061
+ clientside_calculated = Digest::SHA512.new
1062
+ .update(shared_key_salt)
1063
+ .update(pong[3])
1064
+ .update(@options['nonce'])
1065
+ .update(shared_key).hexdigest
1066
+ raise "Shared key digest mismatch" unless clientside_calculated == pong[4]
1067
+
1068
+ # authentication success
1069
+ true
1070
+ end
1071
+
1072
+ def connect
1073
+ TCPSocket.new('127.0.0.1', @port)
1074
+ end
1075
+
1076
+ # Data ordering is not assured:
1077
+ # Records in different sockets are processed on different thread, so its scheduling make effect
1078
+ # on order of emitted records.
1079
+ # So, we MUST sort emitted records in different `send_data` before assertion.
1080
+ def send_data(data, try_to_receive_response: false, response_timeout: 5, auth: false)
1081
+ io = connect
1082
+
1083
+ if auth
1084
+ simulate_auth_sequence(io)
1085
+ end
1086
+
1087
+ io.write data
1088
+ io.flush
1089
+ if try_to_receive_response
1090
+ @responses << read_data(io, response_timeout){|d| MessagePack.unpack(d) rescue nil }
1091
+ end
1092
+ ensure
1093
+ io.close rescue nil # SSL socket requires any writes to close sockets
1094
+ end
1095
+
1096
+ sub_test_case 'source_hostname_key and source_address_key features' do
1097
+ data(
1098
+ both: [:hostname, :address],
1099
+ hostname: [:hostname],
1100
+ address: [:address],
1101
+ )
1102
+ test 'message protocol' do |keys|
1103
+ execute_test_with_source_hostname_key(*keys) { |events|
1104
+ events.each { |tag, time, record|
1105
+ send_data [tag, time, record].to_msgpack
1106
+ }
1107
+ }
1108
+ end
1109
+
1110
+ data(
1111
+ both: [:hostname, :address],
1112
+ hostname: [:hostname],
1113
+ address: [:address],
1114
+ )
1115
+ test 'forward protocol' do |keys|
1116
+ execute_test_with_source_hostname_key(*keys) { |events|
1117
+ entries = []
1118
+ events.each {|tag,time,record|
1119
+ entries << [time, record]
1120
+ }
1121
+ send_data ['tag1', entries].to_msgpack
1122
+ }
1123
+ end
1124
+
1125
+ data(
1126
+ both: [:hostname, :address],
1127
+ hostname: [:hostname],
1128
+ address: [:address],
1129
+ )
1130
+ test 'packed forward protocol' do |keys|
1131
+ execute_test_with_source_hostname_key(*keys) { |events|
1132
+ entries = ''
1133
+ events.each { |tag, time, record|
1134
+ Fluent::MessagePackFactory.msgpack_packer(entries).write([time, record]).flush
1135
+ }
1136
+ send_data Fluent::MessagePackFactory.msgpack_packer.write(["tag1", entries]).to_s
1137
+ }
1138
+ end
1139
+ end
1140
+
1141
+ def execute_test_with_source_hostname_key(*keys, &block)
1142
+ conf = base_config.dup
1143
+ if keys.include?(:hostname)
1144
+ conf << <<EOL
1145
+ source_hostname_key source_hostname
1146
+ EOL
1147
+ end
1148
+ if keys.include?(:address)
1149
+ conf << <<EOL
1150
+ source_address_key source_address
1151
+ EOL
1152
+ end
1153
+ @d = d = create_driver(conf)
1154
+
1155
+ time = event_time("2011-01-02 13:14:15 UTC")
1156
+ events = [
1157
+ ["tag1", time, {"a"=>1}],
1158
+ ["tag1", time, {"a"=>2}]
1159
+ ]
1160
+
1161
+ d.run(expect_records: events.size) do
1162
+ block.call(events)
1163
+ end
1164
+
1165
+ d.events.each { |tag, _time, record|
1166
+ if keys.include?(:hostname)
1167
+ assert_true record.has_key?('source_hostname')
1168
+ assert_equal DUMMY_SOCK.remote_host, record['source_hostname']
1169
+ end
1170
+ if keys.include?(:address)
1171
+ assert_true record.has_key?('source_address')
1172
+ assert_equal DUMMY_SOCK.remote_addr, record['source_address']
1173
+ end
1174
+ }
1175
+ end
1176
+
1177
+ # TODO heartbeat
1178
+ end