elasticsearch-api 6.0.1 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +23 -0
- data/LICENSE.txt +199 -10
- data/README.md +3 -3
- data/Rakefile +31 -2
- data/elasticsearch-api.gemspec +21 -4
- data/lib/elasticsearch/api/actions/abort_benchmark.rb +17 -0
- data/lib/elasticsearch/api/actions/benchmark.rb +23 -3
- data/lib/elasticsearch/api/actions/bulk.rb +38 -18
- data/lib/elasticsearch/api/actions/cat/aliases.rb +30 -14
- data/lib/elasticsearch/api/actions/cat/allocation.rb +31 -15
- data/lib/elasticsearch/api/actions/cat/count.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +32 -11
- data/lib/elasticsearch/api/actions/cat/health.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/help.rb +25 -3
- data/lib/elasticsearch/api/actions/cat/indices.rb +33 -13
- data/lib/elasticsearch/api/actions/cat/master.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/nodes.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/plugins.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/recovery.rb +30 -10
- data/lib/elasticsearch/api/actions/cat/repositories.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/segments.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/shards.rb +31 -12
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +30 -10
- data/lib/elasticsearch/api/actions/cat/tasks.rb +31 -11
- data/lib/elasticsearch/api/actions/cat/templates.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +32 -12
- data/lib/elasticsearch/api/actions/clear_scroll.rb +21 -6
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +25 -4
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +27 -6
- data/lib/elasticsearch/api/actions/cluster/health.rb +35 -13
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +25 -4
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +26 -3
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +17 -0
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +29 -3
- data/lib/elasticsearch/api/actions/cluster/state.rb +31 -14
- data/lib/elasticsearch/api/actions/cluster/stats.rb +25 -5
- data/lib/elasticsearch/api/actions/count.rb +44 -34
- data/lib/elasticsearch/api/actions/create.rb +17 -0
- data/lib/elasticsearch/api/actions/delete.rb +38 -18
- data/lib/elasticsearch/api/actions/delete_by_query.rb +40 -21
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/actions/delete_script.rb +28 -11
- data/lib/elasticsearch/api/actions/exists.rb +37 -19
- data/lib/elasticsearch/api/actions/exists_source.rb +68 -0
- data/lib/elasticsearch/api/actions/explain.rb +54 -40
- data/lib/elasticsearch/api/actions/field_caps.rb +28 -10
- data/lib/elasticsearch/api/actions/get.rb +45 -29
- data/lib/elasticsearch/api/actions/get_script.rb +28 -5
- data/lib/elasticsearch/api/actions/get_source.rb +53 -27
- data/lib/elasticsearch/api/actions/index.rb +37 -15
- data/lib/elasticsearch/api/actions/indices/analyze.rb +30 -24
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +31 -14
- data/lib/elasticsearch/api/actions/indices/close.rb +29 -10
- data/lib/elasticsearch/api/actions/indices/create.rb +38 -20
- data/lib/elasticsearch/api/actions/indices/delete.rb +28 -9
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +25 -3
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +25 -3
- data/lib/elasticsearch/api/actions/indices/exists.rb +29 -11
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +27 -10
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +26 -4
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +27 -10
- data/lib/elasticsearch/api/actions/indices/flush.rb +28 -8
- data/lib/elasticsearch/api/actions/indices/flush_synced.rb +26 -7
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +36 -15
- data/lib/elasticsearch/api/actions/indices/freeze.rb +40 -0
- data/lib/elasticsearch/api/actions/indices/get.rb +37 -23
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +31 -20
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +37 -23
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +36 -21
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +38 -28
- data/lib/elasticsearch/api/actions/indices/get_template.rb +30 -6
- data/lib/elasticsearch/api/actions/indices/open.rb +35 -21
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +27 -4
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +37 -32
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +36 -28
- data/lib/elasticsearch/api/actions/indices/put_template.rb +32 -6
- data/lib/elasticsearch/api/actions/indices/recovery.rb +25 -6
- data/lib/elasticsearch/api/actions/indices/refresh.rb +30 -19
- data/lib/elasticsearch/api/actions/indices/rollover.rb +31 -12
- data/lib/elasticsearch/api/actions/indices/segments.rb +32 -21
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +27 -8
- data/lib/elasticsearch/api/actions/indices/shrink.rb +27 -13
- data/lib/elasticsearch/api/actions/indices/split.rb +59 -0
- data/lib/elasticsearch/api/actions/indices/stats.rb +51 -29
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +39 -0
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +28 -5
- data/lib/elasticsearch/api/actions/indices/upgrade.rb +34 -17
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +45 -36
- data/lib/elasticsearch/api/actions/info.rb +17 -0
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +25 -4
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +23 -3
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +29 -0
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +25 -4
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +23 -3
- data/lib/elasticsearch/api/actions/mget.rb +37 -25
- data/lib/elasticsearch/api/actions/msearch.rb +36 -9
- data/lib/elasticsearch/api/actions/msearch_template.rb +33 -4
- data/lib/elasticsearch/api/actions/mtermvectors.rb +52 -33
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +31 -11
- data/lib/elasticsearch/api/actions/nodes/info.rb +40 -19
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +54 -0
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +25 -5
- data/lib/elasticsearch/api/actions/nodes/stats.rb +39 -39
- data/lib/elasticsearch/api/actions/nodes/usage.rb +31 -0
- data/lib/elasticsearch/api/actions/params_registry.rb +59 -0
- data/lib/elasticsearch/api/actions/ping.rb +17 -0
- data/lib/elasticsearch/api/actions/put_script.rb +32 -14
- data/lib/elasticsearch/api/actions/rank_eval.rb +53 -0
- data/lib/elasticsearch/api/actions/reindex.rb +38 -18
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/actions/remote/info.rb +17 -0
- data/lib/elasticsearch/api/actions/render_search_template.rb +24 -4
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +38 -0
- data/lib/elasticsearch/api/actions/scroll.rb +30 -8
- data/lib/elasticsearch/api/actions/search.rb +46 -20
- data/lib/elasticsearch/api/actions/search_shards.rb +29 -8
- data/lib/elasticsearch/api/actions/search_template.rb +51 -27
- data/lib/elasticsearch/api/actions/snapshot/create.rb +25 -5
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +27 -6
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +23 -5
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/get.rb +28 -8
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/status.rb +27 -6
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +25 -7
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +30 -17
- data/lib/elasticsearch/api/actions/tasks/get.rb +27 -6
- data/lib/elasticsearch/api/actions/tasks/list.rb +35 -22
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/termvectors.rb +65 -43
- data/lib/elasticsearch/api/actions/update.rb +50 -21
- data/lib/elasticsearch/api/actions/update_by_query.rb +49 -46
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/namespace/cat.rb +17 -0
- data/lib/elasticsearch/api/namespace/cluster.rb +17 -0
- data/lib/elasticsearch/api/namespace/common.rb +19 -2
- data/lib/elasticsearch/api/namespace/indices.rb +17 -0
- data/lib/elasticsearch/api/namespace/ingest.rb +17 -0
- data/lib/elasticsearch/api/namespace/nodes.rb +17 -0
- data/lib/elasticsearch/api/namespace/remote.rb +17 -0
- data/lib/elasticsearch/api/namespace/snapshot.rb +17 -0
- data/lib/elasticsearch/api/namespace/tasks.rb +17 -0
- data/lib/elasticsearch/api/utils.rb +17 -0
- data/lib/elasticsearch/api/version.rb +18 -1
- data/lib/elasticsearch/api.rb +20 -0
- data/lib/elasticsearch-api.rb +17 -0
- data/spec/elasticsearch/api/actions/abort_benchmark_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/benchmark_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/bulk_spec.rb +139 -0
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +69 -0
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/count_spec.rb +66 -0
- data/spec/elasticsearch/api/actions/create_document_spec.rb +82 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +72 -0
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +110 -0
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +126 -0
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +99 -0
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +98 -0
- data/spec/elasticsearch/api/actions/get_document_spec.rb +123 -0
- data/spec/elasticsearch/api/actions/get_script_spec.rb +49 -0
- data/{test/unit/hashie_test.rb → spec/elasticsearch/api/actions/hashie_spec.rb} +28 -17
- data/spec/elasticsearch/api/actions/index_document_spec.rb +145 -0
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +73 -0
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +84 -0
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +83 -0
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +86 -0
- data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/exists_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +93 -0
- data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +90 -0
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +68 -0
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +83 -0
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +72 -0
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +65 -0
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +65 -0
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +89 -0
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +107 -0
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +42 -0
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +125 -0
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +68 -0
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/indices/upgrade_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +128 -0
- data/spec/elasticsearch/api/actions/info_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/mget_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/msearch_spec.rb +169 -0
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +94 -0
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +45 -0
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +87 -0
- data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/ping_spec.rb +75 -0
- data/spec/elasticsearch/api/actions/put_script_spec.rb +49 -0
- data/spec/elasticsearch/api/actions/reindex_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/remote/info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/scoll_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/search_spec.rb +148 -0
- data/spec/elasticsearch/api/actions/search_template_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/update_document_spec.rb +125 -0
- data/spec/elasticsearch/api/api_spec.rb +43 -0
- data/spec/elasticsearch/api/client_spec.rb +46 -0
- data/spec/elasticsearch/api/utils_spec.rb +430 -0
- data/spec/spec_helper.rb +79 -0
- data/test/integration/yaml_test_runner.rb +91 -44
- data/test/test_helper.rb +62 -13
- data/utils/Gemfile +17 -0
- data/utils/Thorfile +17 -0
- data/utils/thor/generate_api.rb +17 -0
- data/utils/thor/generate_source.rb +23 -2
- data/utils/thor/lister.rb +17 -0
- data/utils/thor/templates/ruby/method.erb +17 -0
- data/utils/thor/templates/ruby/test.erb +17 -0
- data/utils/thor/templates/ruby/test_helper.rb +17 -1
- metadata +290 -323
- data/lib/elasticsearch/api/actions/count_percolate.rb +0 -78
- data/lib/elasticsearch/api/actions/delete_template.rb +0 -21
- data/lib/elasticsearch/api/actions/field_stats.rb +0 -32
- data/lib/elasticsearch/api/actions/get_template.rb +0 -27
- data/lib/elasticsearch/api/actions/indices/delete_mapping.rb +0 -26
- data/lib/elasticsearch/api/actions/indices/delete_warmer.rb +0 -32
- data/lib/elasticsearch/api/actions/indices/get_aliases.rb +0 -34
- data/lib/elasticsearch/api/actions/indices/get_warmer.rb +0 -60
- data/lib/elasticsearch/api/actions/indices/optimize.rb +0 -74
- data/lib/elasticsearch/api/actions/indices/put_warmer.rb +0 -64
- data/lib/elasticsearch/api/actions/indices/seal.rb +0 -24
- data/lib/elasticsearch/api/actions/indices/snapshot_index.rb +0 -43
- data/lib/elasticsearch/api/actions/indices/status.rb +0 -60
- data/lib/elasticsearch/api/actions/list_benchmarks.rb +0 -27
- data/lib/elasticsearch/api/actions/mlt.rb +0 -128
- data/lib/elasticsearch/api/actions/mpercolate.rb +0 -59
- data/lib/elasticsearch/api/actions/percolate.rb +0 -71
- data/lib/elasticsearch/api/actions/put_template.rb +0 -25
- data/lib/elasticsearch/api/actions/search_exists.rb +0 -59
- data/lib/elasticsearch/api/actions/suggest.rb +0 -46
- data/test/unit/abort_benchmark_test.rb +0 -26
- data/test/unit/api_test.rb +0 -28
- data/test/unit/benchmark_test.rb +0 -26
- data/test/unit/bulk_test.rb +0 -133
- data/test/unit/cat/aliases_test.rb +0 -26
- data/test/unit/cat/allocation_test.rb +0 -26
- data/test/unit/cat/count_test.rb +0 -26
- data/test/unit/cat/fielddata_test.rb +0 -38
- data/test/unit/cat/health_test.rb +0 -26
- data/test/unit/cat/help_test.rb +0 -26
- data/test/unit/cat/indices_test.rb +0 -26
- data/test/unit/cat/master_test.rb +0 -26
- data/test/unit/cat/nodeattrs_test.rb +0 -26
- data/test/unit/cat/nodes_test.rb +0 -26
- data/test/unit/cat/pending_tasks_test.rb +0 -26
- data/test/unit/cat/plugins_test.rb +0 -26
- data/test/unit/cat/recovery_test.rb +0 -26
- data/test/unit/cat/repositories_test.rb +0 -26
- data/test/unit/cat/segments_test.rb +0 -26
- data/test/unit/cat/shards_test.rb +0 -26
- data/test/unit/cat/snapshots_test.rb +0 -26
- data/test/unit/cat/tasks_test.rb +0 -26
- data/test/unit/cat/templates_test.rb +0 -26
- data/test/unit/cat/thread_pool_test.rb +0 -26
- data/test/unit/clear_scroll_test.rb +0 -38
- data/test/unit/client_test.rb +0 -31
- data/test/unit/cluster/allocation_explain_test.rb +0 -26
- data/test/unit/cluster/get_settings_test.rb +0 -26
- data/test/unit/cluster/health_test.rb +0 -47
- data/test/unit/cluster/pending_tasks_test.rb +0 -26
- data/test/unit/cluster/put_settings_test.rb +0 -26
- data/test/unit/cluster/remote_info_test.rb +0 -26
- data/test/unit/cluster/reroute_test.rb +0 -38
- data/test/unit/cluster/state_test.rb +0 -46
- data/test/unit/cluster/stats_test.rb +0 -26
- data/test/unit/count_percolate_test.rb +0 -26
- data/test/unit/count_test.rb +0 -46
- data/test/unit/create_document_test.rb +0 -56
- data/test/unit/delete_by_query_test.rb +0 -51
- data/test/unit/delete_document_test.rb +0 -85
- data/test/unit/delete_script_test.rb +0 -26
- data/test/unit/delete_template_test.rb +0 -26
- data/test/unit/exists_document_test.rb +0 -90
- data/test/unit/explain_document_test.rb +0 -73
- data/test/unit/field_caps_test.rb +0 -26
- data/test/unit/field_stats_test.rb +0 -26
- data/test/unit/get_document_source_test.rb +0 -71
- data/test/unit/get_document_test.rb +0 -85
- data/test/unit/get_script_test.rb +0 -26
- data/test/unit/get_template_test.rb +0 -41
- data/test/unit/index_document_test.rb +0 -92
- data/test/unit/indices/analyze_test.rb +0 -76
- data/test/unit/indices/clear_cache_test.rb +0 -54
- data/test/unit/indices/close_test.rb +0 -51
- data/test/unit/indices/create_test.rb +0 -51
- data/test/unit/indices/delete_alias_test.rb +0 -47
- data/test/unit/indices/delete_mapping_test.rb +0 -56
- data/test/unit/indices/delete_template_test.rb +0 -51
- data/test/unit/indices/delete_test.rb +0 -69
- data/test/unit/indices/delete_warmer_test.rb +0 -68
- data/test/unit/indices/exists_alias_test.rb +0 -73
- data/test/unit/indices/exists_template_test.rb +0 -59
- data/test/unit/indices/exists_test.rb +0 -71
- data/test/unit/indices/exists_type_test.rb +0 -73
- data/test/unit/indices/flush_synced_test.rb +0 -41
- data/test/unit/indices/flush_test.rb +0 -54
- data/test/unit/indices/forcemerge_test.rb +0 -26
- data/test/unit/indices/get_alias_test.rb +0 -44
- data/test/unit/indices/get_aliases_test.rb +0 -54
- data/test/unit/indices/get_field_mapping_test.rb +0 -44
- data/test/unit/indices/get_mapping_test.rb +0 -62
- data/test/unit/indices/get_settings_test.rb +0 -54
- data/test/unit/indices/get_template_test.rb +0 -43
- data/test/unit/indices/get_test.rb +0 -45
- data/test/unit/indices/get_warmer_test.rb +0 -44
- data/test/unit/indices/open_test.rb +0 -51
- data/test/unit/indices/optimize_test.rb +0 -54
- data/test/unit/indices/put_alias_test.rb +0 -59
- data/test/unit/indices/put_mapping_test.rb +0 -60
- data/test/unit/indices/put_settings_test.rb +0 -68
- data/test/unit/indices/put_template_test.rb +0 -57
- data/test/unit/indices/put_warmer_test.rb +0 -65
- data/test/unit/indices/recovery_test.rb +0 -26
- data/test/unit/indices/refresh_test.rb +0 -64
- data/test/unit/indices/rollover_test.rb +0 -38
- data/test/unit/indices/seal_test.rb +0 -25
- data/test/unit/indices/segments_test.rb +0 -64
- data/test/unit/indices/shard_stores_test.rb +0 -26
- data/test/unit/indices/shrink_test.rb +0 -33
- data/test/unit/indices/snapshot_index_test.rb +0 -64
- data/test/unit/indices/stats_test.rb +0 -76
- data/test/unit/indices/status_test.rb +0 -72
- data/test/unit/indices/update_aliases_test.rb +0 -42
- data/test/unit/indices/upgrade_test.rb +0 -26
- data/test/unit/indices/validate_query_test.rb +0 -84
- data/test/unit/info_test.rb +0 -26
- data/test/unit/ingest/delete_pipeline_test.rb +0 -41
- data/test/unit/ingest/get_pipeline_test.rb +0 -35
- data/test/unit/ingest/put_pipeline_test.rb +0 -46
- data/test/unit/ingest/simulate_test.rb +0 -35
- data/test/unit/json_builders_test.rb +0 -64
- data/test/unit/list_benchmarks_test.rb +0 -26
- data/test/unit/mget_test.rb +0 -79
- data/test/unit/mlt_test.rb +0 -89
- data/test/unit/mpercolate_test.rb +0 -51
- data/test/unit/msearch_template_test.rb +0 -60
- data/test/unit/msearch_test.rb +0 -129
- data/test/unit/mtermvectors_test.rb +0 -38
- data/test/unit/nodes/hot_threads_test.rb +0 -44
- data/test/unit/nodes/info_test.rb +0 -75
- data/test/unit/nodes/shutdown_test.rb +0 -45
- data/test/unit/nodes/stats_test.rb +0 -65
- data/test/unit/percolate_test.rb +0 -56
- data/test/unit/ping_test.rb +0 -53
- data/test/unit/put_script_test.rb +0 -26
- data/test/unit/put_template_test.rb +0 -26
- data/test/unit/reindex_test.rb +0 -26
- data/test/unit/remote/info_test.rb +0 -26
- data/test/unit/render_search_template_test.rb +0 -25
- data/test/unit/scroll_test.rb +0 -26
- data/test/unit/search_exists_test.rb +0 -26
- data/test/unit/search_shards_test.rb +0 -26
- data/test/unit/search_template_test.rb +0 -26
- data/test/unit/search_test.rb +0 -116
- data/test/unit/snapshot/create_repository_test.rb +0 -38
- data/test/unit/snapshot/create_test.rb +0 -38
- data/test/unit/snapshot/delete_repository_test.rb +0 -35
- data/test/unit/snapshot/delete_test.rb +0 -38
- data/test/unit/snapshot/get_repository_test.rb +0 -26
- data/test/unit/snapshot/get_test.rb +0 -38
- data/test/unit/snapshot/restore_test.rb +0 -38
- data/test/unit/snapshot/status_test.rb +0 -38
- data/test/unit/snapshot/verify_repository_test.rb +0 -26
- data/test/unit/suggest_test.rb +0 -64
- data/test/unit/tasks/cancel_test.rb +0 -38
- data/test/unit/tasks/get_test.rb +0 -26
- data/test/unit/tasks/list_test.rb +0 -38
- data/test/unit/termvectors_test.rb +0 -47
- data/test/unit/update_by_query_test.rb +0 -26
- data/test/unit/update_document_test.rb +0 -85
- data/test/unit/utils_test.rb +0 -310
data/test/unit/msearch_test.rb
DELETED
@@ -1,129 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class MsearchTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Msearch" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "require the :body argument" do
|
11
|
-
assert_raise ArgumentError do
|
12
|
-
subject.msearch
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
should "post correct payload to the endpoint" do
|
17
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
18
|
-
assert_equal 'GET', method
|
19
|
-
assert_equal '_msearch', url
|
20
|
-
assert_equal Hash.new, params
|
21
|
-
assert_equal <<-PAYLOAD.gsub(/^\s+/, ''), body
|
22
|
-
{"index":"foo"}
|
23
|
-
{"query":{"match_all":{}}}
|
24
|
-
{"index":"bar"}
|
25
|
-
{"query":{"match":{"foo":"bar"}}}
|
26
|
-
{"search_type":"count"}
|
27
|
-
{"facets":{"tags":{}}}
|
28
|
-
PAYLOAD
|
29
|
-
true
|
30
|
-
end.returns(FakeResponse.new)
|
31
|
-
|
32
|
-
subject.msearch :body => [
|
33
|
-
{ :index => 'foo', :search => { :query => { :match_all => {} } } },
|
34
|
-
{ :index => 'bar', :search => { :query => { :match => { :foo => 'bar' } } } },
|
35
|
-
{ :search_type => 'count', :search => { :facets => { :tags => {} } } }
|
36
|
-
]
|
37
|
-
end
|
38
|
-
|
39
|
-
should "post a string payload intact" do
|
40
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
41
|
-
assert_equal %Q|{"foo":"bar"}\n{"moo":"lam"}|, body
|
42
|
-
true
|
43
|
-
end.returns(FakeResponse.new)
|
44
|
-
|
45
|
-
subject.msearch :body => %Q|{"foo":"bar"}\n{"moo":"lam"}|
|
46
|
-
end
|
47
|
-
|
48
|
-
should "serialize and post header/data pairs" do
|
49
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
50
|
-
assert_equal 'GET', method
|
51
|
-
assert_equal '_msearch', url
|
52
|
-
assert_equal Hash.new, params
|
53
|
-
assert_equal <<-PAYLOAD.gsub(/^\s+/, ''), body
|
54
|
-
{"index":"foo"}
|
55
|
-
{"query":{"match_all":{}}}
|
56
|
-
{"index":"bar"}
|
57
|
-
{"query":{"match":{"foo":"bar"}}}
|
58
|
-
PAYLOAD
|
59
|
-
true
|
60
|
-
end.returns(FakeResponse.new)
|
61
|
-
|
62
|
-
subject.msearch :body => [
|
63
|
-
{ :index => 'foo' },
|
64
|
-
{ :query => { :match_all => {} } },
|
65
|
-
{ :index => 'bar' },
|
66
|
-
{ :query => { :match => { :foo => 'bar' } } }
|
67
|
-
]
|
68
|
-
end
|
69
|
-
|
70
|
-
should "perform request against an index" do
|
71
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
72
|
-
assert_equal 'foo/_msearch', url
|
73
|
-
true
|
74
|
-
end.returns(FakeResponse.new)
|
75
|
-
|
76
|
-
subject.msearch :index => 'foo', :body => []
|
77
|
-
end
|
78
|
-
|
79
|
-
should "perform request against an index and type" do
|
80
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
81
|
-
assert_equal 'foo/bar/_msearch', url
|
82
|
-
true
|
83
|
-
end.returns(FakeResponse.new)
|
84
|
-
|
85
|
-
subject.msearch :index => 'foo', :type => 'bar', :body => []
|
86
|
-
end
|
87
|
-
|
88
|
-
should "perform request against multiple indices" do
|
89
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
90
|
-
assert_equal 'foo,bar/_msearch', url
|
91
|
-
true
|
92
|
-
end.returns(FakeResponse.new)
|
93
|
-
|
94
|
-
subject.msearch :index => ['foo', 'bar'], :body => []
|
95
|
-
end
|
96
|
-
|
97
|
-
should "perform request against multiple indices and types" do
|
98
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
99
|
-
assert_equal 'foo,bar/lam,bam/_msearch', url
|
100
|
-
true
|
101
|
-
end.returns(FakeResponse.new)
|
102
|
-
|
103
|
-
subject.msearch :index => ['foo', 'bar'], :type => ['lam', 'bam'], :body => []
|
104
|
-
end
|
105
|
-
|
106
|
-
should "URL-escape the parts" do
|
107
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
108
|
-
assert_equal 'foo%5Ebar/bar%2Fbam/_msearch', url
|
109
|
-
true
|
110
|
-
end.returns(FakeResponse.new)
|
111
|
-
|
112
|
-
subject.msearch :index => 'foo^bar', :type => 'bar/bam', :body => []
|
113
|
-
end
|
114
|
-
|
115
|
-
should "encode URL parameters" do
|
116
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
117
|
-
assert_equal '_msearch', url
|
118
|
-
assert_equal 'scroll', params[:search_type]
|
119
|
-
true
|
120
|
-
end.returns(FakeResponse.new)
|
121
|
-
|
122
|
-
subject.msearch :body => [], :search_type => 'scroll'
|
123
|
-
end
|
124
|
-
|
125
|
-
end
|
126
|
-
|
127
|
-
end
|
128
|
-
end
|
129
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class MtermvectorsTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Mtermvectors" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal 'my-index/my-type/_mtermvectors', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_equal [1, 2, 3], body[:ids]
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.mtermvectors :index => 'my-index', :type => 'my-type', :body => { :ids => [1, 2, 3] }
|
20
|
-
end
|
21
|
-
|
22
|
-
should "allow passing a list of IDs instead of the body" do
|
23
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
24
|
-
assert_equal 'GET', method
|
25
|
-
assert_equal 'my-index/my-type/_mtermvectors', url
|
26
|
-
assert_equal Hash.new, params
|
27
|
-
assert_equal [1, 2, 3], body[:ids]
|
28
|
-
true
|
29
|
-
end.returns(FakeResponse.new)
|
30
|
-
|
31
|
-
subject.mtermvectors :index => 'my-index', :type => 'my-type', :ids => [1, 2, 3]
|
32
|
-
end
|
33
|
-
|
34
|
-
end
|
35
|
-
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,44 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class NodesHotThreadsTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Nodes: Hot Threads" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal '_nodes/hot_threads', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_nil body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.nodes.hot_threads
|
20
|
-
end
|
21
|
-
|
22
|
-
should "send :node_id correctly" do
|
23
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
24
|
-
assert_equal '_nodes/foo/hot_threads', url
|
25
|
-
true
|
26
|
-
end.returns(FakeResponse.new)
|
27
|
-
|
28
|
-
subject.nodes.hot_threads :node_id => 'foo'
|
29
|
-
end
|
30
|
-
|
31
|
-
should "URL-escape the parts" do
|
32
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
33
|
-
assert_equal '_nodes/foo%5Ebar/hot_threads', url
|
34
|
-
true
|
35
|
-
end.returns(FakeResponse.new)
|
36
|
-
|
37
|
-
subject.nodes.hot_threads :node_id => 'foo^bar'
|
38
|
-
end
|
39
|
-
|
40
|
-
end
|
41
|
-
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
@@ -1,75 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class NodesInfoTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Nodes: Info" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal '_nodes', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_nil body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.nodes.info
|
20
|
-
end
|
21
|
-
|
22
|
-
should "send :node_id correctly" do
|
23
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
24
|
-
assert_equal '_nodes/foo', url
|
25
|
-
true
|
26
|
-
end.returns(FakeResponse.new)
|
27
|
-
|
28
|
-
subject.nodes.info :node_id => 'foo'
|
29
|
-
end
|
30
|
-
|
31
|
-
should "send multiple :node_id-s correctly" do
|
32
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
33
|
-
assert_equal '_nodes/A,B,C', url
|
34
|
-
true
|
35
|
-
end.returns(FakeResponse.new).twice
|
36
|
-
|
37
|
-
subject.nodes.info :node_id => 'A,B,C'
|
38
|
-
subject.nodes.info :node_id => ['A', 'B', 'C']
|
39
|
-
end
|
40
|
-
|
41
|
-
should "properly pass URL parts" do
|
42
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
43
|
-
assert_same_elements ['http','jvm'], url.split('/').last.split(',')
|
44
|
-
assert_nil params[:jvm]
|
45
|
-
assert_nil params[:http]
|
46
|
-
true
|
47
|
-
end.returns(FakeResponse.new)
|
48
|
-
|
49
|
-
subject.nodes.info :jvm => true, :http => true
|
50
|
-
end
|
51
|
-
|
52
|
-
should "properly pass URL parameters" do
|
53
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
54
|
-
assert_equal '_nodes', url
|
55
|
-
assert_equal 'yaml', params[:format]
|
56
|
-
true
|
57
|
-
end.returns(FakeResponse.new)
|
58
|
-
|
59
|
-
subject.nodes.info :format => 'yaml'
|
60
|
-
end
|
61
|
-
|
62
|
-
should "encode metrics" do
|
63
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
64
|
-
assert_equal '_nodes/http,network', url
|
65
|
-
assert_nil params[:metric]
|
66
|
-
true
|
67
|
-
end.returns(FakeResponse.new)
|
68
|
-
|
69
|
-
subject.nodes.info :metric => ['http', 'network']
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class NodesShutdownTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Nodes: Shutdown" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'POST', method
|
13
|
-
assert_equal '_cluster/nodes/_shutdown', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_nil body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.nodes.shutdown
|
20
|
-
end
|
21
|
-
|
22
|
-
should "send :node_id correctly" do
|
23
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
24
|
-
assert_equal '_cluster/nodes/foo/_shutdown', url
|
25
|
-
true
|
26
|
-
end.returns(FakeResponse.new)
|
27
|
-
|
28
|
-
subject.nodes.shutdown :node_id => 'foo'
|
29
|
-
end
|
30
|
-
|
31
|
-
should "send multiple :node_id-s correctly" do
|
32
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
33
|
-
assert_equal '_cluster/nodes/A,B,C/_shutdown', url
|
34
|
-
true
|
35
|
-
end.returns(FakeResponse.new).twice
|
36
|
-
|
37
|
-
subject.nodes.shutdown :node_id => 'A,B,C'
|
38
|
-
subject.nodes.shutdown :node_id => ['A', 'B', 'C']
|
39
|
-
end
|
40
|
-
|
41
|
-
end
|
42
|
-
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,65 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class NodesStatsTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Nodes: Stats" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal '_nodes/stats', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_nil body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.nodes.stats
|
20
|
-
end
|
21
|
-
|
22
|
-
should "send :node_id correctly" do
|
23
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
24
|
-
assert_equal '_nodes/foo/stats', url
|
25
|
-
true
|
26
|
-
end.returns(FakeResponse.new)
|
27
|
-
|
28
|
-
subject.nodes.stats :node_id => 'foo'
|
29
|
-
end
|
30
|
-
|
31
|
-
should "get specific metric families" do
|
32
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
33
|
-
assert_equal '_nodes/stats/http,fs', url
|
34
|
-
assert_equal( {}, params )
|
35
|
-
true
|
36
|
-
end.returns(FakeResponse.new)
|
37
|
-
|
38
|
-
subject.nodes.stats :metric => [:http, :fs]
|
39
|
-
end
|
40
|
-
|
41
|
-
should "get specific metric for the indices family" do
|
42
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
43
|
-
assert_equal '_nodes/stats/indices/filter_cache', url
|
44
|
-
true
|
45
|
-
end.returns(FakeResponse.new)
|
46
|
-
|
47
|
-
subject.nodes.stats :metric => :indices, :index_metric => 'filter_cache'
|
48
|
-
end
|
49
|
-
|
50
|
-
should "get fielddata statistics for the indices family" do
|
51
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
52
|
-
assert_equal '_nodes/stats/indices/fielddata', url
|
53
|
-
assert_equal( {:fields => 'foo,bar'}, params )
|
54
|
-
true
|
55
|
-
end.returns(FakeResponse.new).twice
|
56
|
-
|
57
|
-
subject.nodes.stats :metric => 'indices', :index_metric => 'fielddata', :fields => 'foo,bar'
|
58
|
-
subject.nodes.stats :metric => 'indices', :index_metric => 'fielddata', :fields => ['foo','bar']
|
59
|
-
end
|
60
|
-
|
61
|
-
end
|
62
|
-
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
data/test/unit/percolate_test.rb
DELETED
@@ -1,56 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class PercolateTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Percolate" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "require the :index argument" do
|
11
|
-
assert_raise ArgumentError do
|
12
|
-
subject.percolate :type => 'bar', :body => {}
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
should "require the :type argument" do
|
17
|
-
assert_raise ArgumentError do
|
18
|
-
subject.percolate :index => 'bar', :body => {}
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
should "perform correct request" do
|
23
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
24
|
-
assert_equal 'GET', method
|
25
|
-
assert_equal 'foo/bar/_percolate', url
|
26
|
-
assert_equal Hash.new, params
|
27
|
-
assert_equal 'bar', body[:doc][:foo]
|
28
|
-
true
|
29
|
-
end.returns(FakeResponse.new)
|
30
|
-
|
31
|
-
subject.percolate :index => 'foo', :type => 'bar', :body => { :doc => { :foo => 'bar' } }
|
32
|
-
end
|
33
|
-
|
34
|
-
should "URL-escape the parts" do
|
35
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
36
|
-
assert_equal 'foo%5Ebar/bar%2Fbam/_percolate', url
|
37
|
-
true
|
38
|
-
end.returns(FakeResponse.new)
|
39
|
-
|
40
|
-
subject.percolate :index => 'foo^bar', :type => 'bar/bam', :body => { :doc => { :foo => 'bar' } }
|
41
|
-
end
|
42
|
-
|
43
|
-
should "URL-escape the parts (including document id)" do
|
44
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
45
|
-
assert_equal 'foo%5Ebar/bar%2Fbam/some%2Fid/_percolate', url
|
46
|
-
true
|
47
|
-
end.returns(FakeResponse.new)
|
48
|
-
|
49
|
-
subject.percolate :index => 'foo^bar', :type => 'bar/bam', :id => 'some/id'
|
50
|
-
end
|
51
|
-
|
52
|
-
end
|
53
|
-
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
data/test/unit/ping_test.rb
DELETED
@@ -1,53 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class PingTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Ping" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'HEAD', method
|
13
|
-
assert_equal '', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_nil body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.ping
|
20
|
-
end
|
21
|
-
|
22
|
-
should "return true for successful response" do
|
23
|
-
subject.expects(:perform_request).returns(FakeResponse.new 200, 'OK')
|
24
|
-
assert_equal true, subject.ping
|
25
|
-
end
|
26
|
-
|
27
|
-
should "return false for 404 response" do
|
28
|
-
subject.expects(:perform_request).returns(FakeResponse.new 404, 'Not Found')
|
29
|
-
assert_equal false, subject.ping
|
30
|
-
end
|
31
|
-
|
32
|
-
should "return false on 'not found' exceptions" do
|
33
|
-
subject.expects(:perform_request).raises(StandardError.new '404 NotFound')
|
34
|
-
assert_equal false, subject.ping
|
35
|
-
end
|
36
|
-
|
37
|
-
should "return false on 'connection failed' exceptions" do
|
38
|
-
subject.expects(:perform_request).raises(StandardError.new 'ConnectionFailed')
|
39
|
-
assert_equal false, subject.ping
|
40
|
-
end
|
41
|
-
|
42
|
-
should "re-raise generic exceptions" do
|
43
|
-
subject.expects(:perform_request).raises(StandardError)
|
44
|
-
assert_raise(StandardError) do
|
45
|
-
assert_equal false, subject.ping
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
end
|
50
|
-
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
@@ -1,26 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class PutScriptTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Put script" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'PUT', method
|
13
|
-
assert_equal '_scripts/groovy/foo', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_equal 'bar', body[:script]
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.put_script :lang => 'groovy', :id => 'foo', :body => { :script => 'bar' }
|
20
|
-
end
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,26 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class PutTemplateTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Put template" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'PUT', method
|
13
|
-
assert_equal '_search/template/foo', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_equal Hash.new, body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.put_template :id => 'foo', :body => {}
|
20
|
-
end
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
data/test/unit/reindex_test.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class ReindexTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Reindex" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'POST', method
|
13
|
-
assert_equal '_reindex', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_equal Hash.new, body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.reindex :body => {}
|
20
|
-
end
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,26 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class RemoteInfoTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Remote: Info" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal '_remote/info', url
|
14
|
-
assert_equal Hash.new, params
|
15
|
-
assert_nil body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.remote.info
|
20
|
-
end
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class RenderSearchTemplateTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Render search template" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal '_render/template', url
|
14
|
-
assert_equal({ :id => 'foo' }, params)
|
15
|
-
assert_equal({ :foo => 'bar' }, body)
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.render_search_template :id => 'foo', :body => { :foo => 'bar' }
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
data/test/unit/scroll_test.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module Elasticsearch
|
4
|
-
module Test
|
5
|
-
class ScrollTest < ::Test::Unit::TestCase
|
6
|
-
|
7
|
-
context "Scroll" do
|
8
|
-
subject { FakeClient.new }
|
9
|
-
|
10
|
-
should "perform correct request" do
|
11
|
-
subject.expects(:perform_request).with do |method, url, params, body|
|
12
|
-
assert_equal 'GET', method
|
13
|
-
assert_equal '_search/scroll', url
|
14
|
-
assert_equal 'cXVlcn...', params[:scroll_id]
|
15
|
-
assert_equal nil, body
|
16
|
-
true
|
17
|
-
end.returns(FakeResponse.new)
|
18
|
-
|
19
|
-
subject.scroll :scroll_id => 'cXVlcn...'
|
20
|
-
end
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|