fluentd222 1.16.2-x86_64-linux
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.
- checksums.yaml +7 -0
 - data/.deepsource.toml +13 -0
 - data/.github/ISSUE_TEMPLATE/bug_report.yaml +71 -0
 - data/.github/ISSUE_TEMPLATE/config.yml +5 -0
 - data/.github/ISSUE_TEMPLATE/feature_request.yaml +39 -0
 - data/.github/ISSUE_TEMPLATE.md +17 -0
 - data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
 - data/.github/workflows/stale-actions.yml +24 -0
 - data/.github/workflows/test-ruby-head.yaml +31 -0
 - data/.github/workflows/test.yaml +32 -0
 - data/.gitignore +30 -0
 - data/ADOPTERS.md +5 -0
 - data/AUTHORS +2 -0
 - data/CHANGELOG.md +2720 -0
 - data/CONTRIBUTING.md +45 -0
 - data/GOVERNANCE.md +55 -0
 - data/Gemfile +9 -0
 - data/GithubWorkflow.md +78 -0
 - data/LICENSE +202 -0
 - data/MAINTAINERS.md +13 -0
 - data/README.md +75 -0
 - data/Rakefile +79 -0
 - data/SECURITY.md +14 -0
 - data/bin/fluent-binlog-reader +7 -0
 - data/bin/fluent-ca-generate +6 -0
 - data/bin/fluent-cap-ctl +7 -0
 - data/bin/fluent-cat +5 -0
 - data/bin/fluent-ctl +7 -0
 - data/bin/fluent-debug +5 -0
 - data/bin/fluent-gem +9 -0
 - data/bin/fluent-plugin-config-format +5 -0
 - data/bin/fluent-plugin-generate +5 -0
 - data/bin/fluentd +15 -0
 - data/code-of-conduct.md +3 -0
 - data/docs/SECURITY_AUDIT.pdf +0 -0
 - data/example/copy_roundrobin.conf +39 -0
 - data/example/counter.conf +18 -0
 - data/example/filter_stdout.conf +22 -0
 - data/example/in_forward.conf +14 -0
 - data/example/in_forward_client.conf +37 -0
 - data/example/in_forward_shared_key.conf +15 -0
 - data/example/in_forward_tls.conf +14 -0
 - data/example/in_forward_users.conf +24 -0
 - data/example/in_forward_workers.conf +21 -0
 - data/example/in_http.conf +16 -0
 - data/example/in_out_forward.conf +17 -0
 - data/example/in_sample_blocks.conf +17 -0
 - data/example/in_sample_with_compression.conf +23 -0
 - data/example/in_syslog.conf +15 -0
 - data/example/in_tail.conf +14 -0
 - data/example/in_tcp.conf +13 -0
 - data/example/in_udp.conf +13 -0
 - data/example/logevents.conf +25 -0
 - data/example/multi_filters.conf +61 -0
 - data/example/out_copy.conf +20 -0
 - data/example/out_exec_filter.conf +42 -0
 - data/example/out_file.conf +13 -0
 - data/example/out_forward.conf +35 -0
 - data/example/out_forward_buf_file.conf +23 -0
 - data/example/out_forward_client.conf +109 -0
 - data/example/out_forward_heartbeat_none.conf +16 -0
 - data/example/out_forward_sd.conf +17 -0
 - data/example/out_forward_shared_key.conf +36 -0
 - data/example/out_forward_tls.conf +18 -0
 - data/example/out_forward_users.conf +65 -0
 - data/example/out_null.conf +36 -0
 - data/example/sd.yaml +8 -0
 - data/example/secondary_file.conf +42 -0
 - data/example/suppress_config_dump.conf +7 -0
 - data/example/v0_12_filter.conf +78 -0
 - data/example/v1_literal_example.conf +36 -0
 - data/example/worker_section.conf +36 -0
 - data/fluent.conf +139 -0
 - data/fluentd.gemspec +54 -0
 - data/lib/fluent/agent.rb +168 -0
 - data/lib/fluent/capability.rb +87 -0
 - data/lib/fluent/clock.rb +66 -0
 - data/lib/fluent/command/binlog_reader.rb +244 -0
 - data/lib/fluent/command/bundler_injection.rb +45 -0
 - data/lib/fluent/command/ca_generate.rb +184 -0
 - data/lib/fluent/command/cap_ctl.rb +174 -0
 - data/lib/fluent/command/cat.rb +365 -0
 - data/lib/fluent/command/ctl.rb +180 -0
 - data/lib/fluent/command/debug.rb +103 -0
 - data/lib/fluent/command/fluentd.rb +374 -0
 - data/lib/fluent/command/plugin_config_formatter.rb +308 -0
 - data/lib/fluent/command/plugin_generator.rb +365 -0
 - data/lib/fluent/compat/call_super_mixin.rb +76 -0
 - data/lib/fluent/compat/detach_process_mixin.rb +33 -0
 - data/lib/fluent/compat/exec_util.rb +129 -0
 - data/lib/fluent/compat/file_util.rb +54 -0
 - data/lib/fluent/compat/filter.rb +68 -0
 - data/lib/fluent/compat/formatter.rb +111 -0
 - data/lib/fluent/compat/formatter_utils.rb +85 -0
 - data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
 - data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
 - data/lib/fluent/compat/input.rb +49 -0
 - data/lib/fluent/compat/output.rb +721 -0
 - data/lib/fluent/compat/output_chain.rb +60 -0
 - data/lib/fluent/compat/parser.rb +310 -0
 - data/lib/fluent/compat/parser_utils.rb +40 -0
 - data/lib/fluent/compat/propagate_default.rb +62 -0
 - data/lib/fluent/compat/record_filter_mixin.rb +34 -0
 - data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
 - data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
 - data/lib/fluent/compat/socket_util.rb +165 -0
 - data/lib/fluent/compat/string_util.rb +34 -0
 - data/lib/fluent/compat/structured_format_mixin.rb +26 -0
 - data/lib/fluent/compat/type_converter.rb +90 -0
 - data/lib/fluent/config/basic_parser.rb +123 -0
 - data/lib/fluent/config/configure_proxy.rb +424 -0
 - data/lib/fluent/config/dsl.rb +152 -0
 - data/lib/fluent/config/element.rb +265 -0
 - data/lib/fluent/config/error.rb +44 -0
 - data/lib/fluent/config/literal_parser.rb +286 -0
 - data/lib/fluent/config/parser.rb +107 -0
 - data/lib/fluent/config/section.rb +272 -0
 - data/lib/fluent/config/types.rb +249 -0
 - data/lib/fluent/config/v1_parser.rb +192 -0
 - data/lib/fluent/config/yaml_parser/fluent_value.rb +47 -0
 - data/lib/fluent/config/yaml_parser/loader.rb +108 -0
 - data/lib/fluent/config/yaml_parser/parser.rb +166 -0
 - data/lib/fluent/config/yaml_parser/section_builder.rb +107 -0
 - data/lib/fluent/config/yaml_parser.rb +56 -0
 - data/lib/fluent/config.rb +89 -0
 - data/lib/fluent/configurable.rb +201 -0
 - data/lib/fluent/counter/base_socket.rb +44 -0
 - data/lib/fluent/counter/client.rb +297 -0
 - data/lib/fluent/counter/error.rb +86 -0
 - data/lib/fluent/counter/mutex_hash.rb +163 -0
 - data/lib/fluent/counter/server.rb +273 -0
 - data/lib/fluent/counter/store.rb +205 -0
 - data/lib/fluent/counter/validator.rb +145 -0
 - data/lib/fluent/counter.rb +23 -0
 - data/lib/fluent/daemon.rb +13 -0
 - data/lib/fluent/daemonizer.rb +88 -0
 - data/lib/fluent/engine.rb +253 -0
 - data/lib/fluent/env.rb +40 -0
 - data/lib/fluent/error.rb +37 -0
 - data/lib/fluent/event.rb +330 -0
 - data/lib/fluent/event_router.rb +315 -0
 - data/lib/fluent/ext_monitor_require.rb +28 -0
 - data/lib/fluent/file_wrapper.rb +137 -0
 - data/lib/fluent/filter.rb +21 -0
 - data/lib/fluent/fluent_log_event_router.rb +139 -0
 - data/lib/fluent/formatter.rb +23 -0
 - data/lib/fluent/input.rb +21 -0
 - data/lib/fluent/label.rb +46 -0
 - data/lib/fluent/load.rb +34 -0
 - data/lib/fluent/log/console_adapter.rb +66 -0
 - data/lib/fluent/log.rb +752 -0
 - data/lib/fluent/match.rb +187 -0
 - data/lib/fluent/mixin.rb +31 -0
 - data/lib/fluent/msgpack_factory.rb +111 -0
 - data/lib/fluent/oj_options.rb +61 -0
 - data/lib/fluent/output.rb +29 -0
 - data/lib/fluent/output_chain.rb +23 -0
 - data/lib/fluent/parser.rb +23 -0
 - data/lib/fluent/plugin/bare_output.rb +104 -0
 - data/lib/fluent/plugin/base.rb +214 -0
 - data/lib/fluent/plugin/buf_file.rb +242 -0
 - data/lib/fluent/plugin/buf_file_single.rb +254 -0
 - data/lib/fluent/plugin/buf_memory.rb +34 -0
 - data/lib/fluent/plugin/buffer/chunk.rb +240 -0
 - data/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
 - data/lib/fluent/plugin/buffer/file_single_chunk.rb +310 -0
 - data/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
 - data/lib/fluent/plugin/buffer.rb +941 -0
 - data/lib/fluent/plugin/compressable.rb +96 -0
 - data/lib/fluent/plugin/exec_util.rb +22 -0
 - data/lib/fluent/plugin/file_util.rb +22 -0
 - data/lib/fluent/plugin/filter.rb +127 -0
 - data/lib/fluent/plugin/filter_grep.rb +189 -0
 - data/lib/fluent/plugin/filter_parser.rb +130 -0
 - data/lib/fluent/plugin/filter_record_transformer.rb +324 -0
 - data/lib/fluent/plugin/filter_stdout.rb +53 -0
 - data/lib/fluent/plugin/formatter.rb +75 -0
 - data/lib/fluent/plugin/formatter_csv.rb +78 -0
 - data/lib/fluent/plugin/formatter_hash.rb +35 -0
 - data/lib/fluent/plugin/formatter_json.rb +59 -0
 - data/lib/fluent/plugin/formatter_ltsv.rb +44 -0
 - data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
 - data/lib/fluent/plugin/formatter_out_file.rb +53 -0
 - data/lib/fluent/plugin/formatter_single_value.rb +36 -0
 - data/lib/fluent/plugin/formatter_stdout.rb +76 -0
 - data/lib/fluent/plugin/formatter_tsv.rb +40 -0
 - data/lib/fluent/plugin/in_debug_agent.rb +71 -0
 - data/lib/fluent/plugin/in_dummy.rb +18 -0
 - data/lib/fluent/plugin/in_exec.rb +110 -0
 - data/lib/fluent/plugin/in_forward.rb +473 -0
 - data/lib/fluent/plugin/in_gc_stat.rb +72 -0
 - data/lib/fluent/plugin/in_http.rb +677 -0
 - data/lib/fluent/plugin/in_monitor_agent.rb +412 -0
 - data/lib/fluent/plugin/in_object_space.rb +93 -0
 - data/lib/fluent/plugin/in_sample.rb +141 -0
 - data/lib/fluent/plugin/in_syslog.rb +276 -0
 - data/lib/fluent/plugin/in_tail/group_watch.rb +204 -0
 - data/lib/fluent/plugin/in_tail/position_file.rb +269 -0
 - data/lib/fluent/plugin/in_tail.rb +1299 -0
 - data/lib/fluent/plugin/in_tcp.rb +226 -0
 - data/lib/fluent/plugin/in_udp.rb +92 -0
 - data/lib/fluent/plugin/in_unix.rb +195 -0
 - data/lib/fluent/plugin/input.rb +75 -0
 - data/lib/fluent/plugin/metrics.rb +119 -0
 - data/lib/fluent/plugin/metrics_local.rb +96 -0
 - data/lib/fluent/plugin/multi_output.rb +195 -0
 - data/lib/fluent/plugin/out_copy.rb +120 -0
 - data/lib/fluent/plugin/out_exec.rb +105 -0
 - data/lib/fluent/plugin/out_exec_filter.rb +319 -0
 - data/lib/fluent/plugin/out_file.rb +340 -0
 - data/lib/fluent/plugin/out_forward/ack_handler.rb +176 -0
 - data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
 - data/lib/fluent/plugin/out_forward/error.rb +28 -0
 - data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
 - data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
 - data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
 - data/lib/fluent/plugin/out_forward/socket_cache.rb +142 -0
 - data/lib/fluent/plugin/out_forward.rb +826 -0
 - data/lib/fluent/plugin/out_http.rb +275 -0
 - data/lib/fluent/plugin/out_null.rb +74 -0
 - data/lib/fluent/plugin/out_relabel.rb +32 -0
 - data/lib/fluent/plugin/out_roundrobin.rb +84 -0
 - data/lib/fluent/plugin/out_secondary_file.rb +148 -0
 - data/lib/fluent/plugin/out_stdout.rb +74 -0
 - data/lib/fluent/plugin/out_stream.rb +130 -0
 - data/lib/fluent/plugin/output.rb +1603 -0
 - data/lib/fluent/plugin/owned_by_mixin.rb +41 -0
 - data/lib/fluent/plugin/parser.rb +274 -0
 - data/lib/fluent/plugin/parser_apache.rb +28 -0
 - data/lib/fluent/plugin/parser_apache2.rb +88 -0
 - data/lib/fluent/plugin/parser_apache_error.rb +26 -0
 - data/lib/fluent/plugin/parser_csv.rb +114 -0
 - data/lib/fluent/plugin/parser_json.rb +96 -0
 - data/lib/fluent/plugin/parser_ltsv.rb +51 -0
 - data/lib/fluent/plugin/parser_msgpack.rb +50 -0
 - data/lib/fluent/plugin/parser_multiline.rb +152 -0
 - data/lib/fluent/plugin/parser_nginx.rb +28 -0
 - data/lib/fluent/plugin/parser_none.rb +36 -0
 - data/lib/fluent/plugin/parser_regexp.rb +68 -0
 - data/lib/fluent/plugin/parser_syslog.rb +496 -0
 - data/lib/fluent/plugin/parser_tsv.rb +42 -0
 - data/lib/fluent/plugin/sd_file.rb +156 -0
 - data/lib/fluent/plugin/sd_srv.rb +135 -0
 - data/lib/fluent/plugin/sd_static.rb +58 -0
 - data/lib/fluent/plugin/service_discovery.rb +65 -0
 - data/lib/fluent/plugin/socket_util.rb +22 -0
 - data/lib/fluent/plugin/storage.rb +84 -0
 - data/lib/fluent/plugin/storage_local.rb +162 -0
 - data/lib/fluent/plugin/string_util.rb +22 -0
 - data/lib/fluent/plugin.rb +206 -0
 - data/lib/fluent/plugin_helper/cert_option.rb +191 -0
 - data/lib/fluent/plugin_helper/child_process.rb +369 -0
 - data/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
 - data/lib/fluent/plugin_helper/counter.rb +51 -0
 - data/lib/fluent/plugin_helper/event_emitter.rb +100 -0
 - data/lib/fluent/plugin_helper/event_loop.rb +170 -0
 - data/lib/fluent/plugin_helper/extract.rb +104 -0
 - data/lib/fluent/plugin_helper/formatter.rb +147 -0
 - data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
 - data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
 - data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
 - data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
 - data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
 - data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
 - data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
 - data/lib/fluent/plugin_helper/http_server/server.rb +94 -0
 - data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
 - data/lib/fluent/plugin_helper/http_server.rb +135 -0
 - data/lib/fluent/plugin_helper/inject.rb +154 -0
 - data/lib/fluent/plugin_helper/metrics.rb +129 -0
 - data/lib/fluent/plugin_helper/parser.rb +147 -0
 - data/lib/fluent/plugin_helper/record_accessor.rb +207 -0
 - data/lib/fluent/plugin_helper/retry_state.rb +219 -0
 - data/lib/fluent/plugin_helper/server.rb +828 -0
 - data/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
 - data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
 - data/lib/fluent/plugin_helper/service_discovery.rb +125 -0
 - data/lib/fluent/plugin_helper/socket.rb +288 -0
 - data/lib/fluent/plugin_helper/socket_option.rb +98 -0
 - data/lib/fluent/plugin_helper/storage.rb +349 -0
 - data/lib/fluent/plugin_helper/thread.rb +180 -0
 - data/lib/fluent/plugin_helper/timer.rb +92 -0
 - data/lib/fluent/plugin_helper.rb +75 -0
 - data/lib/fluent/plugin_id.rb +93 -0
 - data/lib/fluent/process.rb +22 -0
 - data/lib/fluent/registry.rb +117 -0
 - data/lib/fluent/root_agent.rb +372 -0
 - data/lib/fluent/rpc.rb +95 -0
 - data/lib/fluent/static_config_analysis.rb +194 -0
 - data/lib/fluent/supervisor.rb +1076 -0
 - data/lib/fluent/system_config.rb +189 -0
 - data/lib/fluent/test/base.rb +78 -0
 - data/lib/fluent/test/driver/base.rb +231 -0
 - data/lib/fluent/test/driver/base_owned.rb +83 -0
 - data/lib/fluent/test/driver/base_owner.rb +135 -0
 - data/lib/fluent/test/driver/event_feeder.rb +98 -0
 - data/lib/fluent/test/driver/filter.rb +61 -0
 - data/lib/fluent/test/driver/formatter.rb +30 -0
 - data/lib/fluent/test/driver/input.rb +31 -0
 - data/lib/fluent/test/driver/multi_output.rb +53 -0
 - data/lib/fluent/test/driver/output.rb +102 -0
 - data/lib/fluent/test/driver/parser.rb +30 -0
 - data/lib/fluent/test/driver/storage.rb +30 -0
 - data/lib/fluent/test/driver/test_event_router.rb +45 -0
 - data/lib/fluent/test/filter_test.rb +77 -0
 - data/lib/fluent/test/formatter_test.rb +65 -0
 - data/lib/fluent/test/helpers.rb +134 -0
 - data/lib/fluent/test/input_test.rb +174 -0
 - data/lib/fluent/test/log.rb +79 -0
 - data/lib/fluent/test/output_test.rb +156 -0
 - data/lib/fluent/test/parser_test.rb +70 -0
 - data/lib/fluent/test/startup_shutdown.rb +44 -0
 - data/lib/fluent/test.rb +58 -0
 - data/lib/fluent/time.rb +512 -0
 - data/lib/fluent/timezone.rb +171 -0
 - data/lib/fluent/tls.rb +81 -0
 - data/lib/fluent/unique_id.rb +39 -0
 - data/lib/fluent/variable_store.rb +40 -0
 - data/lib/fluent/version.rb +21 -0
 - data/lib/fluent/win32api.rb +38 -0
 - data/lib/fluent/winsvc.rb +100 -0
 - data/templates/new_gem/Gemfile +3 -0
 - data/templates/new_gem/README.md.erb +43 -0
 - data/templates/new_gem/Rakefile +13 -0
 - data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
 - data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
 - data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
 - data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
 - data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
 - data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
 - data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
 - data/templates/new_gem/test/helper.rb.erb +7 -0
 - data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
 - data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
 - data/templates/plugin_config_formatter/param.md-table.erb +10 -0
 - data/templates/plugin_config_formatter/param.md.erb +34 -0
 - data/templates/plugin_config_formatter/section.md.erb +12 -0
 - data/test/command/test_binlog_reader.rb +362 -0
 - data/test/command/test_ca_generate.rb +70 -0
 - data/test/command/test_cap_ctl.rb +100 -0
 - data/test/command/test_cat.rb +128 -0
 - data/test/command/test_ctl.rb +56 -0
 - data/test/command/test_fluentd.rb +1291 -0
 - data/test/command/test_plugin_config_formatter.rb +397 -0
 - data/test/command/test_plugin_generator.rb +109 -0
 - data/test/compat/test_calls_super.rb +166 -0
 - data/test/compat/test_parser.rb +92 -0
 - data/test/config/assertions.rb +42 -0
 - data/test/config/test_config_parser.rb +551 -0
 - data/test/config/test_configurable.rb +1784 -0
 - data/test/config/test_configure_proxy.rb +604 -0
 - data/test/config/test_dsl.rb +415 -0
 - data/test/config/test_element.rb +518 -0
 - data/test/config/test_literal_parser.rb +309 -0
 - data/test/config/test_plugin_configuration.rb +56 -0
 - data/test/config/test_section.rb +191 -0
 - data/test/config/test_system_config.rb +195 -0
 - data/test/config/test_types.rb +408 -0
 - data/test/counter/test_client.rb +563 -0
 - data/test/counter/test_error.rb +44 -0
 - data/test/counter/test_mutex_hash.rb +179 -0
 - data/test/counter/test_server.rb +589 -0
 - data/test/counter/test_store.rb +258 -0
 - data/test/counter/test_validator.rb +137 -0
 - data/test/helper.rb +155 -0
 - data/test/helpers/fuzzy_assert.rb +89 -0
 - data/test/helpers/process_extenstion.rb +33 -0
 - data/test/log/test_console_adapter.rb +110 -0
 - data/test/plugin/data/2010/01/20100102-030405.log +0 -0
 - data/test/plugin/data/2010/01/20100102-030406.log +0 -0
 - data/test/plugin/data/2010/01/20100102.log +0 -0
 - data/test/plugin/data/log/bar +0 -0
 - data/test/plugin/data/log/foo/bar.log +0 -0
 - data/test/plugin/data/log/foo/bar2 +0 -0
 - data/test/plugin/data/log/test.log +0 -0
 - data/test/plugin/data/sd_file/config +11 -0
 - data/test/plugin/data/sd_file/config.json +17 -0
 - data/test/plugin/data/sd_file/config.yaml +11 -0
 - data/test/plugin/data/sd_file/config.yml +11 -0
 - data/test/plugin/data/sd_file/invalid_config.yml +7 -0
 - data/test/plugin/in_tail/test_fifo.rb +121 -0
 - data/test/plugin/in_tail/test_io_handler.rb +150 -0
 - data/test/plugin/in_tail/test_position_file.rb +346 -0
 - data/test/plugin/out_forward/test_ack_handler.rb +140 -0
 - data/test/plugin/out_forward/test_connection_manager.rb +145 -0
 - data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
 - data/test/plugin/out_forward/test_load_balancer.rb +106 -0
 - data/test/plugin/out_forward/test_socket_cache.rb +174 -0
 - data/test/plugin/test_bare_output.rb +131 -0
 - data/test/plugin/test_base.rb +247 -0
 - data/test/plugin/test_buf_file.rb +1314 -0
 - data/test/plugin/test_buf_file_single.rb +898 -0
 - data/test/plugin/test_buf_memory.rb +42 -0
 - data/test/plugin/test_buffer.rb +1434 -0
 - data/test/plugin/test_buffer_chunk.rb +209 -0
 - data/test/plugin/test_buffer_file_chunk.rb +871 -0
 - data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
 - data/test/plugin/test_buffer_memory_chunk.rb +339 -0
 - data/test/plugin/test_compressable.rb +87 -0
 - data/test/plugin/test_file_util.rb +96 -0
 - data/test/plugin/test_filter.rb +368 -0
 - data/test/plugin/test_filter_grep.rb +697 -0
 - data/test/plugin/test_filter_parser.rb +731 -0
 - data/test/plugin/test_filter_record_transformer.rb +577 -0
 - data/test/plugin/test_filter_stdout.rb +207 -0
 - data/test/plugin/test_formatter_csv.rb +136 -0
 - data/test/plugin/test_formatter_hash.rb +38 -0
 - data/test/plugin/test_formatter_json.rb +61 -0
 - data/test/plugin/test_formatter_ltsv.rb +70 -0
 - data/test/plugin/test_formatter_msgpack.rb +28 -0
 - data/test/plugin/test_formatter_out_file.rb +116 -0
 - data/test/plugin/test_formatter_single_value.rb +44 -0
 - data/test/plugin/test_formatter_tsv.rb +76 -0
 - data/test/plugin/test_in_debug_agent.rb +49 -0
 - data/test/plugin/test_in_exec.rb +261 -0
 - data/test/plugin/test_in_forward.rb +1178 -0
 - data/test/plugin/test_in_gc_stat.rb +62 -0
 - data/test/plugin/test_in_http.rb +1102 -0
 - data/test/plugin/test_in_monitor_agent.rb +922 -0
 - data/test/plugin/test_in_object_space.rb +66 -0
 - data/test/plugin/test_in_sample.rb +190 -0
 - data/test/plugin/test_in_syslog.rb +505 -0
 - data/test/plugin/test_in_tail.rb +3125 -0
 - data/test/plugin/test_in_tcp.rb +328 -0
 - data/test/plugin/test_in_udp.rb +296 -0
 - data/test/plugin/test_in_unix.rb +181 -0
 - data/test/plugin/test_input.rb +137 -0
 - data/test/plugin/test_metadata.rb +89 -0
 - data/test/plugin/test_metrics.rb +294 -0
 - data/test/plugin/test_metrics_local.rb +96 -0
 - data/test/plugin/test_multi_output.rb +204 -0
 - data/test/plugin/test_out_copy.rb +308 -0
 - data/test/plugin/test_out_exec.rb +312 -0
 - data/test/plugin/test_out_exec_filter.rb +606 -0
 - data/test/plugin/test_out_file.rb +1038 -0
 - data/test/plugin/test_out_forward.rb +1361 -0
 - data/test/plugin/test_out_http.rb +429 -0
 - data/test/plugin/test_out_null.rb +105 -0
 - data/test/plugin/test_out_relabel.rb +28 -0
 - data/test/plugin/test_out_roundrobin.rb +146 -0
 - data/test/plugin/test_out_secondary_file.rb +458 -0
 - data/test/plugin/test_out_stdout.rb +205 -0
 - data/test/plugin/test_out_stream.rb +103 -0
 - data/test/plugin/test_output.rb +1334 -0
 - data/test/plugin/test_output_as_buffered.rb +2024 -0
 - data/test/plugin/test_output_as_buffered_backup.rb +363 -0
 - data/test/plugin/test_output_as_buffered_compress.rb +179 -0
 - data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
 - data/test/plugin/test_output_as_buffered_retries.rb +966 -0
 - data/test/plugin/test_output_as_buffered_secondary.rb +882 -0
 - data/test/plugin/test_output_as_standard.rb +374 -0
 - data/test/plugin/test_owned_by.rb +34 -0
 - data/test/plugin/test_parser.rb +399 -0
 - data/test/plugin/test_parser_apache.rb +42 -0
 - data/test/plugin/test_parser_apache2.rb +47 -0
 - data/test/plugin/test_parser_apache_error.rb +45 -0
 - data/test/plugin/test_parser_csv.rb +200 -0
 - data/test/plugin/test_parser_json.rb +138 -0
 - data/test/plugin/test_parser_labeled_tsv.rb +160 -0
 - data/test/plugin/test_parser_multiline.rb +111 -0
 - data/test/plugin/test_parser_nginx.rb +88 -0
 - data/test/plugin/test_parser_none.rb +52 -0
 - data/test/plugin/test_parser_regexp.rb +284 -0
 - data/test/plugin/test_parser_syslog.rb +650 -0
 - data/test/plugin/test_parser_tsv.rb +122 -0
 - data/test/plugin/test_sd_file.rb +228 -0
 - data/test/plugin/test_sd_srv.rb +230 -0
 - data/test/plugin/test_storage.rb +166 -0
 - data/test/plugin/test_storage_local.rb +335 -0
 - data/test/plugin/test_string_util.rb +26 -0
 - data/test/plugin_helper/data/cert/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
 - data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
 - data/test/plugin_helper/data/cert/cert.pem +19 -0
 - data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
 - data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
 - data/test/plugin_helper/data/cert/empty.pem +0 -0
 - data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
 - data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
 - data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
 - data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
 - data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
 - data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
 - data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
 - data/test/plugin_helper/http_server/test_app.rb +65 -0
 - data/test/plugin_helper/http_server/test_route.rb +32 -0
 - data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
 - data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
 - data/test/plugin_helper/test_cert_option.rb +25 -0
 - data/test/plugin_helper/test_child_process.rb +862 -0
 - data/test/plugin_helper/test_compat_parameters.rb +358 -0
 - data/test/plugin_helper/test_event_emitter.rb +80 -0
 - data/test/plugin_helper/test_event_loop.rb +52 -0
 - data/test/plugin_helper/test_extract.rb +194 -0
 - data/test/plugin_helper/test_formatter.rb +255 -0
 - data/test/plugin_helper/test_http_server_helper.rb +372 -0
 - data/test/plugin_helper/test_inject.rb +561 -0
 - data/test/plugin_helper/test_metrics.rb +137 -0
 - data/test/plugin_helper/test_parser.rb +264 -0
 - data/test/plugin_helper/test_record_accessor.rb +238 -0
 - data/test/plugin_helper/test_retry_state.rb +1006 -0
 - data/test/plugin_helper/test_server.rb +1895 -0
 - data/test/plugin_helper/test_service_discovery.rb +165 -0
 - data/test/plugin_helper/test_socket.rb +146 -0
 - data/test/plugin_helper/test_storage.rb +542 -0
 - data/test/plugin_helper/test_thread.rb +164 -0
 - data/test/plugin_helper/test_timer.rb +130 -0
 - data/test/scripts/exec_script.rb +32 -0
 - data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
 - data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
 - data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
 - data/test/scripts/fluent/plugin/out_test.rb +81 -0
 - data/test/scripts/fluent/plugin/out_test2.rb +80 -0
 - data/test/scripts/fluent/plugin/parser_known.rb +4 -0
 - data/test/test_capability.rb +74 -0
 - data/test/test_clock.rb +164 -0
 - data/test/test_config.rb +369 -0
 - data/test/test_configdsl.rb +148 -0
 - data/test/test_daemonizer.rb +91 -0
 - data/test/test_engine.rb +203 -0
 - data/test/test_event.rb +531 -0
 - data/test/test_event_router.rb +348 -0
 - data/test/test_event_time.rb +199 -0
 - data/test/test_file_wrapper.rb +53 -0
 - data/test/test_filter.rb +121 -0
 - data/test/test_fluent_log_event_router.rb +99 -0
 - data/test/test_formatter.rb +369 -0
 - data/test/test_input.rb +31 -0
 - data/test/test_log.rb +1076 -0
 - data/test/test_match.rb +148 -0
 - data/test/test_mixin.rb +351 -0
 - data/test/test_msgpack_factory.rb +50 -0
 - data/test/test_oj_options.rb +55 -0
 - data/test/test_output.rb +278 -0
 - data/test/test_plugin.rb +251 -0
 - data/test/test_plugin_classes.rb +370 -0
 - data/test/test_plugin_helper.rb +81 -0
 - data/test/test_plugin_id.rb +119 -0
 - data/test/test_process.rb +14 -0
 - data/test/test_root_agent.rb +951 -0
 - data/test/test_static_config_analysis.rb +177 -0
 - data/test/test_supervisor.rb +821 -0
 - data/test/test_test_drivers.rb +136 -0
 - data/test/test_time_formatter.rb +301 -0
 - data/test/test_time_parser.rb +362 -0
 - data/test/test_tls.rb +65 -0
 - data/test/test_unique_id.rb +47 -0
 - data/test/test_variable_store.rb +65 -0
 - metadata +1183 -0
 
| 
         @@ -0,0 +1,200 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require_relative '../helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'fluent/test/driver/parser'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'fluent/plugin/parser_csv'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            class CSVParserTest < ::Test::Unit::TestCase
         
     | 
| 
      
 6 
     | 
    
         
            +
              def setup
         
     | 
| 
      
 7 
     | 
    
         
            +
                Fluent::Test.setup
         
     | 
| 
      
 8 
     | 
    
         
            +
              end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              def create_driver(conf={})
         
     | 
| 
      
 11 
     | 
    
         
            +
                Fluent::Test::Driver::Parser.new(Fluent::Plugin::CSVParser).configure(conf)
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
              data('array param' => '["time","c","d"]', 'string param' => 'time,c,d')
         
     | 
| 
      
 15 
     | 
    
         
            +
              def test_parse(param)
         
     | 
| 
      
 16 
     | 
    
         
            +
                d = create_driver('keys' => param, 'time_key' => 'time')
         
     | 
| 
      
 17 
     | 
    
         
            +
                d.instance.parse("2013/02/28 12:00:00,192.168.0.1,111") { |time, record|
         
     | 
| 
      
 18 
     | 
    
         
            +
                  assert_equal(event_time('2013/02/28 12:00:00', format: '%Y/%m/%d %H:%M:%S'), time)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 20 
     | 
    
         
            +
                                 'c' => '192.168.0.1',
         
     | 
| 
      
 21 
     | 
    
         
            +
                                 'd' => '111',
         
     | 
| 
      
 22 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 23 
     | 
    
         
            +
                }
         
     | 
| 
      
 24 
     | 
    
         
            +
              end
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              data('array param' => '["c","d"]', 'string param' => 'c,d')
         
     | 
| 
      
 27 
     | 
    
         
            +
              def test_parse_without_time(param)
         
     | 
| 
      
 28 
     | 
    
         
            +
                time_at_start = Time.now.to_i
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                d = create_driver('keys' => param)
         
     | 
| 
      
 31 
     | 
    
         
            +
                d.instance.parse("192.168.0.1,111") { |time, record|
         
     | 
| 
      
 32 
     | 
    
         
            +
                  assert time && time >= time_at_start, "parser puts current time without time input"
         
     | 
| 
      
 33 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 34 
     | 
    
         
            +
                                 'c' => '192.168.0.1',
         
     | 
| 
      
 35 
     | 
    
         
            +
                                 'd' => '111',
         
     | 
| 
      
 36 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 37 
     | 
    
         
            +
                }
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                d = Fluent::Test::Driver::Parser.new(Fluent::Plugin::CSVParser)
         
     | 
| 
      
 40 
     | 
    
         
            +
                d.configure('keys' => param, 'estimate_current_event' => 'no')
         
     | 
| 
      
 41 
     | 
    
         
            +
                d.instance.parse("192.168.0.1,111") { |time, record|
         
     | 
| 
      
 42 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 43 
     | 
    
         
            +
                                 'c' => '192.168.0.1',
         
     | 
| 
      
 44 
     | 
    
         
            +
                                 'd' => '111',
         
     | 
| 
      
 45 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 46 
     | 
    
         
            +
                  assert_nil time, "parser returns nil w/o time and if configured so"
         
     | 
| 
      
 47 
     | 
    
         
            +
                }
         
     | 
| 
      
 48 
     | 
    
         
            +
              end
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
              def test_parse_with_keep_time_key
         
     | 
| 
      
 51 
     | 
    
         
            +
                d = create_driver(
         
     | 
| 
      
 52 
     | 
    
         
            +
                                 'keys'=>'time',
         
     | 
| 
      
 53 
     | 
    
         
            +
                                 'time_key'=>'time',
         
     | 
| 
      
 54 
     | 
    
         
            +
                                 'time_format'=>"%d/%b/%Y:%H:%M:%S %z",
         
     | 
| 
      
 55 
     | 
    
         
            +
                                 'keep_time_key'=>'true',
         
     | 
| 
      
 56 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 57 
     | 
    
         
            +
                text = '28/Feb/2013:12:00:00 +0900'
         
     | 
| 
      
 58 
     | 
    
         
            +
                d.instance.parse(text) do |time, record|
         
     | 
| 
      
 59 
     | 
    
         
            +
                  assert_equal text, record['time']
         
     | 
| 
      
 60 
     | 
    
         
            +
                end
         
     | 
| 
      
 61 
     | 
    
         
            +
              end
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
              data('array param' => '["a","b","c","d","e","f"]', 'string param' => 'a,b,c,d,e,f')
         
     | 
| 
      
 64 
     | 
    
         
            +
              def test_parse_with_null_value_pattern(param)
         
     | 
| 
      
 65 
     | 
    
         
            +
                d = create_driver(
         
     | 
| 
      
 66 
     | 
    
         
            +
                                 'keys'=>param,
         
     | 
| 
      
 67 
     | 
    
         
            +
                                 'null_value_pattern'=>'^(-|null|NULL)$'
         
     | 
| 
      
 68 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 69 
     | 
    
         
            +
                d.instance.parse("-,null,NULL,,--,nuLL") do |time, record|
         
     | 
| 
      
 70 
     | 
    
         
            +
                  assert_nil record['a']
         
     | 
| 
      
 71 
     | 
    
         
            +
                  assert_nil record['b']
         
     | 
| 
      
 72 
     | 
    
         
            +
                  assert_nil record['c']
         
     | 
| 
      
 73 
     | 
    
         
            +
                  assert_nil record['d']
         
     | 
| 
      
 74 
     | 
    
         
            +
                  assert_equal record['e'], '--'
         
     | 
| 
      
 75 
     | 
    
         
            +
                  assert_equal record['f'], 'nuLL'
         
     | 
| 
      
 76 
     | 
    
         
            +
                end
         
     | 
| 
      
 77 
     | 
    
         
            +
              end
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
              data('array param' => '["a","b"]', 'string param' => 'a,b')
         
     | 
| 
      
 80 
     | 
    
         
            +
              def test_parse_with_null_empty_string(param)
         
     | 
| 
      
 81 
     | 
    
         
            +
                d = create_driver(
         
     | 
| 
      
 82 
     | 
    
         
            +
                                 'keys'=>param,
         
     | 
| 
      
 83 
     | 
    
         
            +
                                 'null_empty_string'=>true
         
     | 
| 
      
 84 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 85 
     | 
    
         
            +
                d.instance.parse(", ") do |time, record|
         
     | 
| 
      
 86 
     | 
    
         
            +
                  assert_nil record['a']
         
     | 
| 
      
 87 
     | 
    
         
            +
                  assert_equal record['b'], ' '
         
     | 
| 
      
 88 
     | 
    
         
            +
                end
         
     | 
| 
      
 89 
     | 
    
         
            +
              end
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
              data('array param' => '["a","b","c"]', 'string param' => 'a,b,c')
         
     | 
| 
      
 92 
     | 
    
         
            +
              def test_parse_with_option_delimiter(param)
         
     | 
| 
      
 93 
     | 
    
         
            +
                d = create_driver(
         
     | 
| 
      
 94 
     | 
    
         
            +
                                 'keys'=>param,
         
     | 
| 
      
 95 
     | 
    
         
            +
                                 'delimiter'=>' ',
         
     | 
| 
      
 96 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 97 
     | 
    
         
            +
                d.instance.parse("123 456 789") do |time, record|
         
     | 
| 
      
 98 
     | 
    
         
            +
                  assert_equal record['a'], '123'
         
     | 
| 
      
 99 
     | 
    
         
            +
                  assert_equal record['b'], '456'
         
     | 
| 
      
 100 
     | 
    
         
            +
                  assert_equal record['c'], '789'
         
     | 
| 
      
 101 
     | 
    
         
            +
                end
         
     | 
| 
      
 102 
     | 
    
         
            +
              end
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
              sub_test_case 'parser' do
         
     | 
| 
      
 105 
     | 
    
         
            +
                data('normal' => 'normal',
         
     | 
| 
      
 106 
     | 
    
         
            +
                     'fast' => 'fast')
         
     | 
| 
      
 107 
     | 
    
         
            +
                def test_compatibility_between_normal_and_fast_parser(param)
         
     | 
| 
      
 108 
     | 
    
         
            +
                  d = create_driver(
         
     | 
| 
      
 109 
     | 
    
         
            +
                    'keys' => 'time,key1,key2,key3,key4,key5',
         
     | 
| 
      
 110 
     | 
    
         
            +
                    'time_key' => 'time',
         
     | 
| 
      
 111 
     | 
    
         
            +
                    'time_format' => "%d/%b/%Y:%H:%M:%S %z",
         
     | 
| 
      
 112 
     | 
    
         
            +
                    'keep_time_key' => 'false',
         
     | 
| 
      
 113 
     | 
    
         
            +
                    'parser_type' => param
         
     | 
| 
      
 114 
     | 
    
         
            +
                  )
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                  # non quoted
         
     | 
| 
      
 117 
     | 
    
         
            +
                  text = '28/Feb/2013:12:00:00 +0900,value1,value2,value3,value4,value5'
         
     | 
| 
      
 118 
     | 
    
         
            +
                  expected = {'key1' => 'value1', 'key2' => 'value2', 'key3' => "value3",
         
     | 
| 
      
 119 
     | 
    
         
            +
                              'key4' => 'value4', 'key5' => "value5"}
         
     | 
| 
      
 120 
     | 
    
         
            +
                  d.instance.parse(text) do |time, record|
         
     | 
| 
      
 121 
     | 
    
         
            +
                    assert_equal(event_time("28/Feb/2013:12:00:00 +0900", format: '%d/%b/%Y:%H:%M:%S %z'), time)
         
     | 
| 
      
 122 
     | 
    
         
            +
                    assert_equal expected, record
         
     | 
| 
      
 123 
     | 
    
         
            +
                  end
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
                  # quoted
         
     | 
| 
      
 126 
     | 
    
         
            +
                  text = '28/Feb/2013:12:00:00 +0900,"value1","val,ue2","va,lu,e3","val ue4",""'
         
     | 
| 
      
 127 
     | 
    
         
            +
                  expected = {'key1' => 'value1', 'key2' => 'val,ue2', 'key3' => "va,lu,e3",
         
     | 
| 
      
 128 
     | 
    
         
            +
                              'key4' => 'val ue4', 'key5' => ""}
         
     | 
| 
      
 129 
     | 
    
         
            +
                  d.instance.parse(text) do |time, record|
         
     | 
| 
      
 130 
     | 
    
         
            +
                    assert_equal(event_time("28/Feb/2013:12:00:00 +0900", format: '%d/%b/%Y:%H:%M:%S %z'), time)
         
     | 
| 
      
 131 
     | 
    
         
            +
                    assert_equal expected, record
         
     | 
| 
      
 132 
     | 
    
         
            +
                  end
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
                  # mixed
         
     | 
| 
      
 135 
     | 
    
         
            +
                  text = '28/Feb/2013:12:00:00 +0900,message,"mes,sage","me,ssa,ge",mess age,""'
         
     | 
| 
      
 136 
     | 
    
         
            +
                  expected = {'key1' => 'message', 'key2' => 'mes,sage', 'key3' => "me,ssa,ge",
         
     | 
| 
      
 137 
     | 
    
         
            +
                              'key4' => 'mess age', 'key5' => ""}
         
     | 
| 
      
 138 
     | 
    
         
            +
                  d.instance.parse(text) do |time, record|
         
     | 
| 
      
 139 
     | 
    
         
            +
                    assert_equal(event_time("28/Feb/2013:12:00:00 +0900", format: '%d/%b/%Y:%H:%M:%S %z'), time)
         
     | 
| 
      
 140 
     | 
    
         
            +
                    assert_equal expected, record
         
     | 
| 
      
 141 
     | 
    
         
            +
                  end
         
     | 
| 
      
 142 
     | 
    
         
            +
             
     | 
| 
      
 143 
     | 
    
         
            +
                  # escaped
         
     | 
| 
      
 144 
     | 
    
         
            +
                  text = '28/Feb/2013:12:00:00 +0900,"message","mes""sage","""message""",,""""""'
         
     | 
| 
      
 145 
     | 
    
         
            +
                  expected = {'key1' => 'message', 'key2' => 'mes"sage', 'key3' => '"message"',
         
     | 
| 
      
 146 
     | 
    
         
            +
                              'key4' => nil, 'key5' => '""'}
         
     | 
| 
      
 147 
     | 
    
         
            +
                  d.instance.parse(text) do |time, record|
         
     | 
| 
      
 148 
     | 
    
         
            +
                    assert_equal(event_time("28/Feb/2013:12:00:00 +0900", format: '%d/%b/%Y:%H:%M:%S %z'), time)
         
     | 
| 
      
 149 
     | 
    
         
            +
                    assert_equal expected, record
         
     | 
| 
      
 150 
     | 
    
         
            +
                  end
         
     | 
| 
      
 151 
     | 
    
         
            +
                end
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
                def test_incompatibility_between_normal_and_fast_parser
         
     | 
| 
      
 154 
     | 
    
         
            +
                  normal = create_driver(
         
     | 
| 
      
 155 
     | 
    
         
            +
                    'keys' => 'key1,key2',
         
     | 
| 
      
 156 
     | 
    
         
            +
                    'parser_type' => 'normal'
         
     | 
| 
      
 157 
     | 
    
         
            +
                  )
         
     | 
| 
      
 158 
     | 
    
         
            +
                  fast = create_driver(
         
     | 
| 
      
 159 
     | 
    
         
            +
                    'keys' => 'key1,key2',
         
     | 
| 
      
 160 
     | 
    
         
            +
                    'parser_type' => 'fast'
         
     | 
| 
      
 161 
     | 
    
         
            +
                  )
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
                  # unexpected quote position
         
     | 
| 
      
 164 
     | 
    
         
            +
                  text = 'a"b,"a"""c"'
         
     | 
| 
      
 165 
     | 
    
         
            +
                  assert_raise(CSV::MalformedCSVError) {
         
     | 
| 
      
 166 
     | 
    
         
            +
                    normal.instance.parse(text) { |t, r| }
         
     | 
| 
      
 167 
     | 
    
         
            +
                  } 
         
     | 
| 
      
 168 
     | 
    
         
            +
                  assert_nothing_raised {
         
     | 
| 
      
 169 
     | 
    
         
            +
                    # generate broken record
         
     | 
| 
      
 170 
     | 
    
         
            +
                    fast.instance.parse(text) { |t, r| }
         
     | 
| 
      
 171 
     | 
    
         
            +
                  }
         
     | 
| 
      
 172 
     | 
    
         
            +
             
     | 
| 
      
 173 
     | 
    
         
            +
                  # incorrect the number of column
         
     | 
| 
      
 174 
     | 
    
         
            +
                  text = 'a,b,c'
         
     | 
| 
      
 175 
     | 
    
         
            +
                  expected = {"key1" => 'a', "key2" => 'b'}
         
     | 
| 
      
 176 
     | 
    
         
            +
                  normal.instance.parse(text) { |t, r|
         
     | 
| 
      
 177 
     | 
    
         
            +
                    assert_equal expected, r
         
     | 
| 
      
 178 
     | 
    
         
            +
                  }
         
     | 
| 
      
 179 
     | 
    
         
            +
                  fast.instance.parse(text) { |t, r|
         
     | 
| 
      
 180 
     | 
    
         
            +
                    assert_not_equal expected, r
         
     | 
| 
      
 181 
     | 
    
         
            +
                  }
         
     | 
| 
      
 182 
     | 
    
         
            +
             
     | 
| 
      
 183 
     | 
    
         
            +
                  # And more...
         
     | 
| 
      
 184 
     | 
    
         
            +
                end
         
     | 
| 
      
 185 
     | 
    
         
            +
              end
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
              # "parser_type" config shouldn't hide Fluent::Plugin::Parser#plugin_type
         
     | 
| 
      
 188 
     | 
    
         
            +
              # https://github.com/fluent/fluentd/issues/3296
         
     | 
| 
      
 189 
     | 
    
         
            +
              data('normal' => :normal, 'fast' => :fast)
         
     | 
| 
      
 190 
     | 
    
         
            +
              def test_parser_type_method(engine)
         
     | 
| 
      
 191 
     | 
    
         
            +
                d = create_driver('keys' => '["time"]','time_key' => 'time', 'parser_type' => engine.to_s)
         
     | 
| 
      
 192 
     | 
    
         
            +
                assert_equal(:text_per_line, d.instance.parser_type)
         
     | 
| 
      
 193 
     | 
    
         
            +
              end
         
     | 
| 
      
 194 
     | 
    
         
            +
             
     | 
| 
      
 195 
     | 
    
         
            +
              data('normal' => :normal, 'fast' => :fast)
         
     | 
| 
      
 196 
     | 
    
         
            +
              def test_parser_engine(engine)
         
     | 
| 
      
 197 
     | 
    
         
            +
                d = create_driver('keys' => '["time"]', 'time_key' => 'time', 'parser_engine' => engine.to_s)
         
     | 
| 
      
 198 
     | 
    
         
            +
                assert_equal(engine, d.instance.parser_engine)
         
     | 
| 
      
 199 
     | 
    
         
            +
              end
         
     | 
| 
      
 200 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,138 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require_relative '../helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'fluent/test/driver/parser'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'fluent/plugin/parser'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            class JsonParserTest < ::Test::Unit::TestCase
         
     | 
| 
      
 6 
     | 
    
         
            +
              def setup
         
     | 
| 
      
 7 
     | 
    
         
            +
                Fluent::Test.setup
         
     | 
| 
      
 8 
     | 
    
         
            +
                @parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::JSONParser)
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 12 
     | 
    
         
            +
              def test_parse(data)
         
     | 
| 
      
 13 
     | 
    
         
            +
                @parser.configure('json_parser' => data)
         
     | 
| 
      
 14 
     | 
    
         
            +
                @parser.instance.parse('{"time":1362020400,"host":"192.168.0.1","size":777,"method":"PUT"}') { |time, record|
         
     | 
| 
      
 15 
     | 
    
         
            +
                  assert_equal(event_time('2013-02-28 12:00:00 +0900').to_i, time)
         
     | 
| 
      
 16 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 17 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 18 
     | 
    
         
            +
                                 'size'   => 777,
         
     | 
| 
      
 19 
     | 
    
         
            +
                                 'method' => 'PUT',
         
     | 
| 
      
 20 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 21 
     | 
    
         
            +
                }
         
     | 
| 
      
 22 
     | 
    
         
            +
              end
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 25 
     | 
    
         
            +
              def test_parse_with_large_float(data)
         
     | 
| 
      
 26 
     | 
    
         
            +
                @parser.configure('json_parser' => data)
         
     | 
| 
      
 27 
     | 
    
         
            +
                @parser.instance.parse('{"num":999999999999999999999999999999.99999}') { |time, record|
         
     | 
| 
      
 28 
     | 
    
         
            +
                  assert_equal(Float, record['num'].class)
         
     | 
| 
      
 29 
     | 
    
         
            +
                }
         
     | 
| 
      
 30 
     | 
    
         
            +
              end
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 33 
     | 
    
         
            +
              def test_parse_without_time(data)
         
     | 
| 
      
 34 
     | 
    
         
            +
                time_at_start = Time.now.to_i
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                @parser.configure('json_parser' => data)
         
     | 
| 
      
 37 
     | 
    
         
            +
                @parser.instance.parse('{"host":"192.168.0.1","size":777,"method":"PUT"}') { |time, record|
         
     | 
| 
      
 38 
     | 
    
         
            +
                  assert time && time >= time_at_start, "parser puts current time without time input"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 40 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 41 
     | 
    
         
            +
                                 'size'   => 777,
         
     | 
| 
      
 42 
     | 
    
         
            +
                                 'method' => 'PUT',
         
     | 
| 
      
 43 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 44 
     | 
    
         
            +
                }
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::JSONParser)
         
     | 
| 
      
 47 
     | 
    
         
            +
                parser.configure('json_parser' => data, 'estimate_current_event' => 'false')
         
     | 
| 
      
 48 
     | 
    
         
            +
                parser.instance.parse('{"host":"192.168.0.1","size":777,"method":"PUT"}') { |time, record|
         
     | 
| 
      
 49 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 50 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 51 
     | 
    
         
            +
                                 'size'   => 777,
         
     | 
| 
      
 52 
     | 
    
         
            +
                                 'method' => 'PUT',
         
     | 
| 
      
 53 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 54 
     | 
    
         
            +
                  assert_nil time, "parser return nil w/o time and if specified so"
         
     | 
| 
      
 55 
     | 
    
         
            +
                }
         
     | 
| 
      
 56 
     | 
    
         
            +
              end
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 59 
     | 
    
         
            +
              def test_parse_with_colon_string(data)
         
     | 
| 
      
 60 
     | 
    
         
            +
                @parser.configure('json_parser' => data)
         
     | 
| 
      
 61 
     | 
    
         
            +
                @parser.instance.parse('{"time":1362020400,"log":":message"}') { |time, record|
         
     | 
| 
      
 62 
     | 
    
         
            +
                  assert_equal(record['log'], ':message')
         
     | 
| 
      
 63 
     | 
    
         
            +
                }
         
     | 
| 
      
 64 
     | 
    
         
            +
              end
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 67 
     | 
    
         
            +
              def test_parse_with_invalid_time(data)
         
     | 
| 
      
 68 
     | 
    
         
            +
                @parser.configure('json_parser' => data)
         
     | 
| 
      
 69 
     | 
    
         
            +
                assert_raise Fluent::ParserError do
         
     | 
| 
      
 70 
     | 
    
         
            +
                  @parser.instance.parse('{"time":[],"k":"v"}') { |time, record| }
         
     | 
| 
      
 71 
     | 
    
         
            +
                end
         
     | 
| 
      
 72 
     | 
    
         
            +
              end
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 75 
     | 
    
         
            +
              def test_parse_float_time(data)
         
     | 
| 
      
 76 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::JSONParser)
         
     | 
| 
      
 77 
     | 
    
         
            +
                parser.configure('json_parser' => data)
         
     | 
| 
      
 78 
     | 
    
         
            +
                text = "100.1"
         
     | 
| 
      
 79 
     | 
    
         
            +
                parser.instance.parse("{\"time\":\"#{text}\"}") do |time, record|
         
     | 
| 
      
 80 
     | 
    
         
            +
                  assert_equal 100, time.sec
         
     | 
| 
      
 81 
     | 
    
         
            +
                  assert_equal 100_000_000, time.nsec
         
     | 
| 
      
 82 
     | 
    
         
            +
                end
         
     | 
| 
      
 83 
     | 
    
         
            +
              end
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 86 
     | 
    
         
            +
              def test_parse_with_keep_time_key(data)
         
     | 
| 
      
 87 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::JSONParser)
         
     | 
| 
      
 88 
     | 
    
         
            +
                format = "%d/%b/%Y:%H:%M:%S %z"
         
     | 
| 
      
 89 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 90 
     | 
    
         
            +
                                 'time_format' => format,
         
     | 
| 
      
 91 
     | 
    
         
            +
                                 'keep_time_key' => 'true',
         
     | 
| 
      
 92 
     | 
    
         
            +
                                 'json_parser' => data
         
     | 
| 
      
 93 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 94 
     | 
    
         
            +
                text = "28/Feb/2013:12:00:00 +0900"
         
     | 
| 
      
 95 
     | 
    
         
            +
                parser.instance.parse("{\"time\":\"#{text}\"}") do |time, record|
         
     | 
| 
      
 96 
     | 
    
         
            +
                  assert_equal Time.strptime(text, format).to_i, time.sec
         
     | 
| 
      
 97 
     | 
    
         
            +
                  assert_equal text, record['time']
         
     | 
| 
      
 98 
     | 
    
         
            +
                end
         
     | 
| 
      
 99 
     | 
    
         
            +
              end
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
              data('oj' => 'oj', 'yajl' => 'yajl')
         
     | 
| 
      
 102 
     | 
    
         
            +
              def test_parse_with_keep_time_key_without_time_format(data)
         
     | 
| 
      
 103 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::JSONParser)
         
     | 
| 
      
 104 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 105 
     | 
    
         
            +
                                 'keep_time_key' => 'true',
         
     | 
| 
      
 106 
     | 
    
         
            +
                                 'json_parser' => data
         
     | 
| 
      
 107 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 108 
     | 
    
         
            +
                text = "100"
         
     | 
| 
      
 109 
     | 
    
         
            +
                parser.instance.parse("{\"time\":\"#{text}\"}") do |time, record|
         
     | 
| 
      
 110 
     | 
    
         
            +
                  assert_equal text.to_i, time.sec
         
     | 
| 
      
 111 
     | 
    
         
            +
                  assert_equal text, record['time']
         
     | 
| 
      
 112 
     | 
    
         
            +
                end
         
     | 
| 
      
 113 
     | 
    
         
            +
              end
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
              def test_yajl_parse_io_with_buffer_smaller_than_input
         
     | 
| 
      
 116 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::JSONParser)
         
     | 
| 
      
 117 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 118 
     | 
    
         
            +
                                 'keep_time_key' => 'true',
         
     | 
| 
      
 119 
     | 
    
         
            +
                                 'json_parser' => 'yajl',
         
     | 
| 
      
 120 
     | 
    
         
            +
                                 'stream_buffer_size' => 1,
         
     | 
| 
      
 121 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 122 
     | 
    
         
            +
                text = "100"
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
                waiting(5) do
         
     | 
| 
      
 125 
     | 
    
         
            +
                  rd, wr = IO.pipe
         
     | 
| 
      
 126 
     | 
    
         
            +
                  wr.write "{\"time\":\"#{text}\"}"
         
     | 
| 
      
 127 
     | 
    
         
            +
             
     | 
| 
      
 128 
     | 
    
         
            +
                  parser.instance.parse_io(rd) do |time, record|
         
     | 
| 
      
 129 
     | 
    
         
            +
                    assert_equal text.to_i, time.sec
         
     | 
| 
      
 130 
     | 
    
         
            +
                    assert_equal text, record['time']
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
                    # Once a record has been received the 'write' end of the pipe must be
         
     | 
| 
      
 133 
     | 
    
         
            +
                    # closed, otherwise the test will block waiting for more input.
         
     | 
| 
      
 134 
     | 
    
         
            +
                    wr.close
         
     | 
| 
      
 135 
     | 
    
         
            +
                  end
         
     | 
| 
      
 136 
     | 
    
         
            +
                end
         
     | 
| 
      
 137 
     | 
    
         
            +
              end
         
     | 
| 
      
 138 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,160 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require_relative '../helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'fluent/test/driver/parser'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'fluent/plugin/parser'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            class LabeledTSVParserTest < ::Test::Unit::TestCase
         
     | 
| 
      
 6 
     | 
    
         
            +
              def setup
         
     | 
| 
      
 7 
     | 
    
         
            +
                Fluent::Test.setup
         
     | 
| 
      
 8 
     | 
    
         
            +
              end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              def test_config_params
         
     | 
| 
      
 11 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::TextParser::LabeledTSVParser)
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
                assert_equal "\t", parser.instance.delimiter
         
     | 
| 
      
 14 
     | 
    
         
            +
                assert_equal  ":", parser.instance.label_delimiter
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 17 
     | 
    
         
            +
                                 'delimiter'       => ',',
         
     | 
| 
      
 18 
     | 
    
         
            +
                                 'label_delimiter' => '=',
         
     | 
| 
      
 19 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                assert_equal ",", parser.instance.delimiter
         
     | 
| 
      
 22 
     | 
    
         
            +
                assert_equal "=", parser.instance.label_delimiter
         
     | 
| 
      
 23 
     | 
    
         
            +
              end
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
              def test_parse
         
     | 
| 
      
 26 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::TextParser::LabeledTSVParser)
         
     | 
| 
      
 27 
     | 
    
         
            +
                parser.configure({})
         
     | 
| 
      
 28 
     | 
    
         
            +
                parser.instance.parse("time:2013/02/28 12:00:00\thost:192.168.0.1\treq_id:111") { |time, record|
         
     | 
| 
      
 29 
     | 
    
         
            +
                  assert_equal(event_time('2013/02/28 12:00:00', format: '%Y/%m/%d %H:%M:%S'), time)
         
     | 
| 
      
 30 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 31 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 32 
     | 
    
         
            +
                                 'req_id' => '111',
         
     | 
| 
      
 33 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 34 
     | 
    
         
            +
                }
         
     | 
| 
      
 35 
     | 
    
         
            +
              end
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
              def test_parse_with_customized_delimiter
         
     | 
| 
      
 38 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::TextParser::LabeledTSVParser)
         
     | 
| 
      
 39 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 40 
     | 
    
         
            +
                                 'delimiter'       => ',',
         
     | 
| 
      
 41 
     | 
    
         
            +
                                 'label_delimiter' => '=',
         
     | 
| 
      
 42 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 43 
     | 
    
         
            +
                parser.instance.parse('time=2013/02/28 12:00:00,host=192.168.0.1,req_id=111') { |time, record|
         
     | 
| 
      
 44 
     | 
    
         
            +
                  assert_equal(event_time('2013/02/28 12:00:00', format: '%Y/%m/%d %H:%M:%S'), time)
         
     | 
| 
      
 45 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 46 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 47 
     | 
    
         
            +
                                 'req_id' => '111',
         
     | 
| 
      
 48 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 49 
     | 
    
         
            +
                }
         
     | 
| 
      
 50 
     | 
    
         
            +
              end
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
              def test_parse_with_customized_time_format
         
     | 
| 
      
 53 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::TextParser::LabeledTSVParser)
         
     | 
| 
      
 54 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 55 
     | 
    
         
            +
                                 'time_key'    => 'mytime',
         
     | 
| 
      
 56 
     | 
    
         
            +
                                 'time_format' => '%d/%b/%Y:%H:%M:%S %z',
         
     | 
| 
      
 57 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 58 
     | 
    
         
            +
                parser.instance.parse("mytime:28/Feb/2013:12:00:00 +0900\thost:192.168.0.1\treq_id:111") { |time, record|
         
     | 
| 
      
 59 
     | 
    
         
            +
                  assert_equal(event_time('28/Feb/2013:12:00:00 +0900', format: '%d/%b/%Y:%H:%M:%S %z'), time)
         
     | 
| 
      
 60 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 61 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 62 
     | 
    
         
            +
                                 'req_id' => '111',
         
     | 
| 
      
 63 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 64 
     | 
    
         
            +
                }
         
     | 
| 
      
 65 
     | 
    
         
            +
              end
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
              def test_parse_without_time
         
     | 
| 
      
 68 
     | 
    
         
            +
                time_at_start = Time.now.to_i
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 71 
     | 
    
         
            +
                parser.configure({})
         
     | 
| 
      
 72 
     | 
    
         
            +
                parser.instance.parse("host:192.168.0.1\treq_id:111") { |time, record|
         
     | 
| 
      
 73 
     | 
    
         
            +
                  assert time && time >= time_at_start, "parser puts current time without time input"
         
     | 
| 
      
 74 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 75 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 76 
     | 
    
         
            +
                                 'req_id' => '111',
         
     | 
| 
      
 77 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 78 
     | 
    
         
            +
                }
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 81 
     | 
    
         
            +
                parser.configure({'estimate_current_event' => 'no'})
         
     | 
| 
      
 82 
     | 
    
         
            +
                parser.instance.parse("host:192.168.0.1\treq_id:111") { |time, record|
         
     | 
| 
      
 83 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 84 
     | 
    
         
            +
                                 'host'   => '192.168.0.1',
         
     | 
| 
      
 85 
     | 
    
         
            +
                                 'req_id' => '111',
         
     | 
| 
      
 86 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 87 
     | 
    
         
            +
                  assert_nil time, "parser returns nil w/o time and if configured so"
         
     | 
| 
      
 88 
     | 
    
         
            +
                }
         
     | 
| 
      
 89 
     | 
    
         
            +
              end
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
              def test_parse_with_keep_time_key
         
     | 
| 
      
 92 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 93 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 94 
     | 
    
         
            +
                                 'time_format'=>"%d/%b/%Y:%H:%M:%S %z",
         
     | 
| 
      
 95 
     | 
    
         
            +
                                 'keep_time_key'=>'true',
         
     | 
| 
      
 96 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 97 
     | 
    
         
            +
                text = '28/Feb/2013:12:00:00 +0900'
         
     | 
| 
      
 98 
     | 
    
         
            +
                parser.instance.parse("time:#{text}") do |time, record|
         
     | 
| 
      
 99 
     | 
    
         
            +
                  assert_equal text, record['time']
         
     | 
| 
      
 100 
     | 
    
         
            +
                end
         
     | 
| 
      
 101 
     | 
    
         
            +
              end
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
              def test_parse_and_reject_invalid_kv_pairs
         
     | 
| 
      
 104 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 105 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 106 
     | 
    
         
            +
                                 'delimiter'       => ' ',
         
     | 
| 
      
 107 
     | 
    
         
            +
                                 'label_delimiter' => '=',
         
     | 
| 
      
 108 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 109 
     | 
    
         
            +
                text = 'A leading portion that is not LTSV    :  foo=bar baz=derp and a trailing portion'
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                expected = {'foo' => 'bar', 'baz' => 'derp'}
         
     | 
| 
      
 112 
     | 
    
         
            +
                parser.instance.parse(text) do |time, record|
         
     | 
| 
      
 113 
     | 
    
         
            +
                  assert_equal expected, record
         
     | 
| 
      
 114 
     | 
    
         
            +
                end
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
              end
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
              def test_parse_with_null_value_pattern
         
     | 
| 
      
 119 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 120 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 121 
     | 
    
         
            +
                                 'null_value_pattern'=>'^(-|null|NULL)$'
         
     | 
| 
      
 122 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 123 
     | 
    
         
            +
                parser.instance.parse("a:-\tb:null\tc:NULL\td:\te:--\tf:nuLL") do |time, record|
         
     | 
| 
      
 124 
     | 
    
         
            +
                  assert_nil record['a']
         
     | 
| 
      
 125 
     | 
    
         
            +
                  assert_nil record['b']
         
     | 
| 
      
 126 
     | 
    
         
            +
                  assert_nil record['c']
         
     | 
| 
      
 127 
     | 
    
         
            +
                  assert_equal record['d'], ''
         
     | 
| 
      
 128 
     | 
    
         
            +
                  assert_equal record['e'], '--'
         
     | 
| 
      
 129 
     | 
    
         
            +
                  assert_equal record['f'], 'nuLL'
         
     | 
| 
      
 130 
     | 
    
         
            +
                end
         
     | 
| 
      
 131 
     | 
    
         
            +
              end
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
      
 133 
     | 
    
         
            +
              def test_parse_with_null_empty_string
         
     | 
| 
      
 134 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 135 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 136 
     | 
    
         
            +
                                 'null_empty_string'=>true
         
     | 
| 
      
 137 
     | 
    
         
            +
                                 )
         
     | 
| 
      
 138 
     | 
    
         
            +
                parser.instance.parse("a:\tb: ") do |time, record|
         
     | 
| 
      
 139 
     | 
    
         
            +
                  assert_nil record['a']
         
     | 
| 
      
 140 
     | 
    
         
            +
                  assert_equal record['b'], ' '
         
     | 
| 
      
 141 
     | 
    
         
            +
                end
         
     | 
| 
      
 142 
     | 
    
         
            +
              end
         
     | 
| 
      
 143 
     | 
    
         
            +
             
     | 
| 
      
 144 
     | 
    
         
            +
              data("single space" => ["k1=v1 k2=v2", { "k1" => "v1", "k2" => "v2" }],
         
     | 
| 
      
 145 
     | 
    
         
            +
                   "multiple space" => ["k1=v1    k2=v2", { "k1" => "v1", "k2" => "v2" }],
         
     | 
| 
      
 146 
     | 
    
         
            +
                   "reverse" => ["k2=v2 k1=v1", { "k1" => "v1", "k2" => "v2" }],
         
     | 
| 
      
 147 
     | 
    
         
            +
                   "tab" => ["k2=v2\tk1=v1", { "k1" => "v1", "k2" => "v2" }],
         
     | 
| 
      
 148 
     | 
    
         
            +
                   "tab and space" => ["k2=v2\t k1=v1", { "k1" => "v1", "k2" => "v2" }])
         
     | 
| 
      
 149 
     | 
    
         
            +
              def test_parse_with_delimiter_pattern(data)
         
     | 
| 
      
 150 
     | 
    
         
            +
                text, expected = data
         
     | 
| 
      
 151 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::LabeledTSVParser)
         
     | 
| 
      
 152 
     | 
    
         
            +
                parser.configure(
         
     | 
| 
      
 153 
     | 
    
         
            +
                                 'delimiter_pattern' => '/\s+/',
         
     | 
| 
      
 154 
     | 
    
         
            +
                                 'label_delimiter' => '='
         
     | 
| 
      
 155 
     | 
    
         
            +
                                )
         
     | 
| 
      
 156 
     | 
    
         
            +
                parser.instance.parse(text) do |_time, record|
         
     | 
| 
      
 157 
     | 
    
         
            +
                  assert_equal(expected, record)
         
     | 
| 
      
 158 
     | 
    
         
            +
                end
         
     | 
| 
      
 159 
     | 
    
         
            +
              end
         
     | 
| 
      
 160 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,111 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require_relative '../helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'fluent/test/driver/parser'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'fluent/plugin/parser'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            class MultilineParserTest < ::Test::Unit::TestCase
         
     | 
| 
      
 6 
     | 
    
         
            +
              def setup
         
     | 
| 
      
 7 
     | 
    
         
            +
                Fluent::Test.setup
         
     | 
| 
      
 8 
     | 
    
         
            +
              end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              def create_parser(conf)
         
     | 
| 
      
 11 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::MultilineParser).configure(conf)
         
     | 
| 
      
 12 
     | 
    
         
            +
                parser
         
     | 
| 
      
 13 
     | 
    
         
            +
              end
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              def test_configure_with_invalid_params
         
     | 
| 
      
 16 
     | 
    
         
            +
                [{'format100' => '/(?<msg>.*)/'}, {'format1' => '/(?<msg>.*)/', 'format3' => '/(?<msg>.*)/'}, 'format1' => '/(?<msg>.*)'].each { |config|
         
     | 
| 
      
 17 
     | 
    
         
            +
                  assert_raise(Fluent::ConfigError) {
         
     | 
| 
      
 18 
     | 
    
         
            +
                    create_parser(config)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  }
         
     | 
| 
      
 20 
     | 
    
         
            +
                }
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              def test_parse
         
     | 
| 
      
 24 
     | 
    
         
            +
                parser = create_parser('format1' => '/^(?<time>\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}) \[(?<thread>.*)\] (?<level>[^\s]+)(?<message>.*)/')
         
     | 
| 
      
 25 
     | 
    
         
            +
                parser.instance.parse(<<EOS.chomp) { |time, record|
         
     | 
| 
      
 26 
     | 
    
         
            +
            2013-3-03 14:27:33 [main] ERROR Main - Exception
         
     | 
| 
      
 27 
     | 
    
         
            +
            javax.management.RuntimeErrorException: null
         
     | 
| 
      
 28 
     | 
    
         
            +
            \tat Main.main(Main.java:16) ~[bin/:na]
         
     | 
| 
      
 29 
     | 
    
         
            +
            EOS
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
                  assert_equal(event_time('2013-3-03 14:27:33').to_i, time)
         
     | 
| 
      
 32 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 33 
     | 
    
         
            +
                                 "thread"  => "main",
         
     | 
| 
      
 34 
     | 
    
         
            +
                                 "level"   => "ERROR",
         
     | 
| 
      
 35 
     | 
    
         
            +
                                 "message" => " Main - Exception\njavax.management.RuntimeErrorException: null\n\tat Main.main(Main.java:16) ~[bin/:na]"
         
     | 
| 
      
 36 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 37 
     | 
    
         
            +
                }
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              def test_parse_with_firstline
         
     | 
| 
      
 41 
     | 
    
         
            +
                parser = create_parser('format_firstline' => '/----/', 'format1' => '/time=(?<time>\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}).*message=(?<message>.*)/')
         
     | 
| 
      
 42 
     | 
    
         
            +
                parser.instance.parse(<<EOS.chomp) { |time, record|
         
     | 
| 
      
 43 
     | 
    
         
            +
            ----
         
     | 
| 
      
 44 
     | 
    
         
            +
            time=2013-3-03 14:27:33
         
     | 
| 
      
 45 
     | 
    
         
            +
            message=test1
         
     | 
| 
      
 46 
     | 
    
         
            +
            EOS
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                  assert(parser.instance.firstline?('----'))
         
     | 
| 
      
 49 
     | 
    
         
            +
                  assert_equal(event_time('2013-3-03 14:27:33').to_i, time)
         
     | 
| 
      
 50 
     | 
    
         
            +
                  assert_equal({"message" => "test1"}, record)
         
     | 
| 
      
 51 
     | 
    
         
            +
                }
         
     | 
| 
      
 52 
     | 
    
         
            +
              end
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
              def test_parse_with_multiple_formats
         
     | 
| 
      
 55 
     | 
    
         
            +
                parser = create_parser('format_firstline' => '/^Started/',
         
     | 
| 
      
 56 
     | 
    
         
            +
                                       'format1' => '/Started (?<method>[^ ]+) "(?<path>[^"]+)" for (?<host>[^ ]+) at (?<time>[^ ]+ [^ ]+ [^ ]+)\n/',
         
     | 
| 
      
 57 
     | 
    
         
            +
                                       'format2' => '/Processing by (?<controller>[^\u0023]+)\u0023(?<controller_method>[^ ]+) as (?<format>[^ ]+?)\n/',
         
     | 
| 
      
 58 
     | 
    
         
            +
                                       'format3' => '/(  Parameters: (?<parameters>[^ ]+)\n)?/',
         
     | 
| 
      
 59 
     | 
    
         
            +
                                       'format4' => '/  Rendered (?<template>[^ ]+) within (?<layout>.+) \([\d\.]+ms\)\n/',
         
     | 
| 
      
 60 
     | 
    
         
            +
                                       'format5' => '/Completed (?<code>[^ ]+) [^ ]+ in (?<runtime>[\d\.]+)ms \(Views: (?<view_runtime>[\d\.]+)ms \| ActiveRecord: (?<ar_runtime>[\d\.]+)ms\)/'
         
     | 
| 
      
 61 
     | 
    
         
            +
                                       )
         
     | 
| 
      
 62 
     | 
    
         
            +
                parser.instance.parse(<<EOS.chomp) { |time, record|
         
     | 
| 
      
 63 
     | 
    
         
            +
            Started GET "/users/123/" for 127.0.0.1 at 2013-06-14 12:00:11 +0900
         
     | 
| 
      
 64 
     | 
    
         
            +
            Processing by UsersController#show as HTML
         
     | 
| 
      
 65 
     | 
    
         
            +
              Parameters: {"user_id"=>"123"}
         
     | 
| 
      
 66 
     | 
    
         
            +
              Rendered users/show.html.erb within layouts/application (0.3ms)
         
     | 
| 
      
 67 
     | 
    
         
            +
            Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
         
     | 
| 
      
 68 
     | 
    
         
            +
            EOS
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                  assert(parser.instance.firstline?('Started GET "/users/123/" for 127.0.0.1...'))
         
     | 
| 
      
 71 
     | 
    
         
            +
                  assert_equal(event_time('2013-06-14 12:00:11 +0900').to_i, time)
         
     | 
| 
      
 72 
     | 
    
         
            +
                  assert_equal({
         
     | 
| 
      
 73 
     | 
    
         
            +
                                 "method" => "GET",
         
     | 
| 
      
 74 
     | 
    
         
            +
                                 "path" => "/users/123/",
         
     | 
| 
      
 75 
     | 
    
         
            +
                                 "host" => "127.0.0.1",
         
     | 
| 
      
 76 
     | 
    
         
            +
                                 "controller" => "UsersController",
         
     | 
| 
      
 77 
     | 
    
         
            +
                                 "controller_method" => "show",
         
     | 
| 
      
 78 
     | 
    
         
            +
                                 "format" => "HTML",
         
     | 
| 
      
 79 
     | 
    
         
            +
                                 "parameters" => "{\"user_id\"=>\"123\"}",
         
     | 
| 
      
 80 
     | 
    
         
            +
                                 "template" => "users/show.html.erb",
         
     | 
| 
      
 81 
     | 
    
         
            +
                                 "layout" => "layouts/application",
         
     | 
| 
      
 82 
     | 
    
         
            +
                                 "code" => "200",
         
     | 
| 
      
 83 
     | 
    
         
            +
                                 "runtime" => "4",
         
     | 
| 
      
 84 
     | 
    
         
            +
                                 "view_runtime" => "3.2",
         
     | 
| 
      
 85 
     | 
    
         
            +
                                 "ar_runtime" => "0.0"
         
     | 
| 
      
 86 
     | 
    
         
            +
                               }, record)
         
     | 
| 
      
 87 
     | 
    
         
            +
                }
         
     | 
| 
      
 88 
     | 
    
         
            +
              end
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
              def test_parse_with_keep_time_key
         
     | 
| 
      
 91 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::MultilineParser).configure(
         
     | 
| 
      
 92 
     | 
    
         
            +
                  'format1' => '/^(?<time>\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2})/',
         
     | 
| 
      
 93 
     | 
    
         
            +
                  'keep_time_key' => 'true'
         
     | 
| 
      
 94 
     | 
    
         
            +
                )
         
     | 
| 
      
 95 
     | 
    
         
            +
                text = '2013-3-03 14:27:33'
         
     | 
| 
      
 96 
     | 
    
         
            +
                parser.instance.parse(text) { |time, record|
         
     | 
| 
      
 97 
     | 
    
         
            +
                  assert_equal text, record['time']
         
     | 
| 
      
 98 
     | 
    
         
            +
                }
         
     | 
| 
      
 99 
     | 
    
         
            +
              end
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
              def test_parse_unmatched_lines
         
     | 
| 
      
 102 
     | 
    
         
            +
                parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::MultilineParser).configure(
         
     | 
| 
      
 103 
     | 
    
         
            +
                  'format1' => '/^message (?<message_id>\d)/',
         
     | 
| 
      
 104 
     | 
    
         
            +
                  'unmatched_lines' => true,
         
     | 
| 
      
 105 
     | 
    
         
            +
                )
         
     | 
| 
      
 106 
     | 
    
         
            +
                text = "message 1\nmessage a"
         
     | 
| 
      
 107 
     | 
    
         
            +
                r = []
         
     | 
| 
      
 108 
     | 
    
         
            +
                parser.instance.parse(text) { |_, record| r << record }
         
     | 
| 
      
 109 
     | 
    
         
            +
                assert_equal [{ 'message_id' => '1' }, { 'unmatched_line' => 'message a'}], r
         
     | 
| 
      
 110 
     | 
    
         
            +
              end
         
     | 
| 
      
 111 
     | 
    
         
            +
            end
         
     |