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
@@ -0,0 +1,34 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe 'client#update_by_query' do
|
21
|
+
|
22
|
+
let(:expected_args) do
|
23
|
+
[
|
24
|
+
'POST',
|
25
|
+
'foo/_update_by_query',
|
26
|
+
{ },
|
27
|
+
nil
|
28
|
+
]
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'performs the request' do
|
32
|
+
expect(client_double.update_by_query(index: 'foo')).to eq({})
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe 'client#update' do
|
21
|
+
|
22
|
+
let(:expected_args) do
|
23
|
+
[
|
24
|
+
'POST',
|
25
|
+
url,
|
26
|
+
params,
|
27
|
+
body
|
28
|
+
]
|
29
|
+
end
|
30
|
+
|
31
|
+
let(:body) do
|
32
|
+
{ doc: { } }
|
33
|
+
end
|
34
|
+
|
35
|
+
let(:url) do
|
36
|
+
'foo/bar/1/_update'
|
37
|
+
end
|
38
|
+
|
39
|
+
let(:client) do
|
40
|
+
Class.new { include Elasticsearch::API }.new
|
41
|
+
end
|
42
|
+
|
43
|
+
let(:params) do
|
44
|
+
{}
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'requires the :index argument' do
|
48
|
+
expect {
|
49
|
+
client.update(type: 'bar', id: '1')
|
50
|
+
}.to raise_exception(ArgumentError)
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'requires the :id argument' do
|
54
|
+
expect {
|
55
|
+
client.update(index: 'foo', type: 'bar')
|
56
|
+
}.to raise_exception(ArgumentError)
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'performs the request' do
|
60
|
+
expect(client_double.update(index: 'foo', type: 'bar', id: '1', body: { doc: {} })).to eq({})
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'when URL parameters are provided' do
|
64
|
+
|
65
|
+
let(:url) do
|
66
|
+
'foo/bar/1/_update'
|
67
|
+
end
|
68
|
+
|
69
|
+
let(:params) do
|
70
|
+
{ version: 100 }
|
71
|
+
end
|
72
|
+
|
73
|
+
let(:body) do
|
74
|
+
{}
|
75
|
+
end
|
76
|
+
|
77
|
+
it 'performs the request' do
|
78
|
+
expect(client_double.update(index: 'foo', type: 'bar', id: '1', version: 100, body: {}))
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
context 'when invalid parameters are specified' do
|
83
|
+
|
84
|
+
it 'raises an ArgumentError' do
|
85
|
+
expect {
|
86
|
+
client.update(index: 'foo', type: 'bar', id: '1', body: { doc: {} }, qwertypoiuy: 'asdflkjhg')
|
87
|
+
}.to raise_exception(ArgumentError)
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
context 'when the request needs to be URL-escaped' do
|
92
|
+
|
93
|
+
let(:url) do
|
94
|
+
'foo%5Ebar/bar%2Fbam/1/_update'
|
95
|
+
end
|
96
|
+
|
97
|
+
let(:body) do
|
98
|
+
{}
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'escapes the parts' do
|
102
|
+
expect(client_double.update(index: 'foo^bar', type: 'bar/bam', id: '1', body: {}))
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
context 'when a NotFound exception is raised' do
|
107
|
+
|
108
|
+
before do
|
109
|
+
allow(client).to receive(:perform_request).and_raise(NotFound)
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'raises it to the user' do
|
113
|
+
expect {
|
114
|
+
client.update(index: 'foo', type: 'bar', id: 'XXX')
|
115
|
+
}.to raise_exception(NotFound)
|
116
|
+
end
|
117
|
+
|
118
|
+
context 'when the :ignore parameter is specified' do
|
119
|
+
|
120
|
+
it 'does not raise the error to the user' do
|
121
|
+
expect(client.update(index: 'foo', type: 'bar', id: 'XXX', ignore: 404)).to eq(false)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe Elasticsearch::API do
|
21
|
+
|
22
|
+
describe '#settings' do
|
23
|
+
|
24
|
+
it 'allows access to settings' do
|
25
|
+
expect(described_class.settings).not_to be_nil
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'has a default serializer' do
|
29
|
+
expect(Elasticsearch::API.serializer).to eq(MultiJson)
|
30
|
+
end
|
31
|
+
|
32
|
+
context 'when settings are changed' do
|
33
|
+
|
34
|
+
before do
|
35
|
+
Elasticsearch::API.settings[:foo] = 'bar'
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'changes the settings' do
|
39
|
+
expect(Elasticsearch::API.settings[:foo]).to eq('bar')
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe 'API Client' do
|
21
|
+
|
22
|
+
let(:client) do
|
23
|
+
Class.new { include Elasticsearch::API }.new
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#cluster' do
|
27
|
+
|
28
|
+
it 'responds to the method' do
|
29
|
+
expect(client.respond_to?(:cluster)).to be(true)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '#indices' do
|
34
|
+
|
35
|
+
it 'responds to the method' do
|
36
|
+
expect(client.respond_to?(:indices)).to be(true)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe '#bulk' do
|
41
|
+
|
42
|
+
it 'responds to the method' do
|
43
|
+
expect(client.respond_to?(:bulk)).to be(true)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,430 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe Elasticsearch::API::Utils do
|
21
|
+
|
22
|
+
let(:utils) do
|
23
|
+
Class.new { include Elasticsearch::API::Utils }.new
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#__escape' do
|
27
|
+
|
28
|
+
it 'encodes Unicode characters' do
|
29
|
+
expect(utils.__escape('中文')).to eq('%E4%B8%AD%E6%96%87')
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'encodes special characters' do
|
33
|
+
expect(utils.__escape('foo bar')).to eq('foo+bar')
|
34
|
+
expect(utils.__escape('foo/bar')).to eq('foo%2Fbar')
|
35
|
+
expect(utils.__escape('foo^bar')).to eq('foo%5Ebar')
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'does not encode asterisks' do
|
39
|
+
expect(utils.__escape('*')).to eq('*')
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'users CGI.escape by default' do
|
43
|
+
expect(CGI).to receive(:escape).and_call_original
|
44
|
+
expect(utils.__escape('foo bar')).to eq('foo+bar')
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'uses the escape_utils gem when available', unless: JRUBY do
|
48
|
+
require 'escape_utils'
|
49
|
+
expect(CGI).not_to receive(:escape)
|
50
|
+
expect(EscapeUtils).to receive(:escape_url).and_call_original
|
51
|
+
expect(utils.__escape('foo bar')).to eq('foo+bar')
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe '#__listify' do
|
56
|
+
|
57
|
+
it 'creates a list from a single value' do
|
58
|
+
expect(utils.__listify('foo')).to eq('foo')
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'creates a list from an array' do
|
62
|
+
expect(utils.__listify(['foo', 'bar'])).to eq('foo,bar')
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'creates a list from multiple arguments' do
|
66
|
+
expect(utils.__listify('foo', 'bar')).to eq('foo,bar')
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'ignores nil values' do
|
70
|
+
expect(utils.__listify(['foo', nil, 'bar'])).to eq('foo,bar')
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'ignores special characters' do
|
74
|
+
expect(utils.__listify(['foo', 'bar^bam'])).to eq('foo,bar%5Ebam')
|
75
|
+
end
|
76
|
+
|
77
|
+
context 'when the escape option is set to false' do
|
78
|
+
|
79
|
+
it 'does not escape the characters' do
|
80
|
+
expect(utils.__listify(['foo', 'bar^bam'], :escape => false)).to eq('foo,bar^bam')
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
describe '#__pathify' do
|
86
|
+
|
87
|
+
it 'creates a path from a single value' do
|
88
|
+
expect(utils.__pathify('foo')).to eq('foo')
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'creates a path from an array' do
|
92
|
+
expect(utils.__pathify(['foo', 'bar'])).to eq('foo/bar')
|
93
|
+
end
|
94
|
+
|
95
|
+
it 'ignores nil values' do
|
96
|
+
expect(utils.__pathify(['foo', nil, 'bar'])).to eq('foo/bar')
|
97
|
+
end
|
98
|
+
|
99
|
+
it 'ignores empty string values' do
|
100
|
+
expect(utils.__pathify(['foo', '', 'bar'])).to eq('foo/bar')
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
describe '#__bulkify' do
|
105
|
+
|
106
|
+
context 'when the input is an array of hashes' do
|
107
|
+
|
108
|
+
let(:result) do
|
109
|
+
utils.__bulkify [
|
110
|
+
{ :index => { :_index => 'myindexA', :_type => 'mytype', :_id => '1', :data => { :title => 'Test' } } },
|
111
|
+
{ :update => { :_index => 'myindexB', :_type => 'mytype', :_id => '2', :data => { :doc => { :title => 'Update' } } } },
|
112
|
+
{ :delete => { :_index => 'myindexC', :_type => 'mytypeC', :_id => '3' } }
|
113
|
+
]
|
114
|
+
end
|
115
|
+
|
116
|
+
let(:expected_string) do
|
117
|
+
<<-PAYLOAD.gsub(/^\s+/, '')
|
118
|
+
{"index":{"_index":"myindexA","_type":"mytype","_id":"1"}}
|
119
|
+
{"title":"Test"}
|
120
|
+
{"update":{"_index":"myindexB","_type":"mytype","_id":"2"}}
|
121
|
+
{"doc":{"title":"Update"}}
|
122
|
+
{"delete":{"_index":"myindexC","_type":"mytypeC","_id":"3"}}
|
123
|
+
PAYLOAD
|
124
|
+
end
|
125
|
+
|
126
|
+
it 'serializes the hashes' do
|
127
|
+
expect(result).to eq(expected_string)
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
context 'when the input is an array of strings' do
|
132
|
+
|
133
|
+
let(:result) do
|
134
|
+
utils.__bulkify(['{"foo":"bar"}','{"moo":"bam"}'])
|
135
|
+
end
|
136
|
+
|
137
|
+
let(:expected_string) do
|
138
|
+
<<-PAYLOAD.gsub(/^\s+/, '')
|
139
|
+
{"foo":"bar"}
|
140
|
+
{"moo":"bam"}
|
141
|
+
PAYLOAD
|
142
|
+
end
|
143
|
+
|
144
|
+
it 'serializes the array of strings' do
|
145
|
+
expect(result).to eq(expected_string)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
context 'when the input is an array of header/data pairs' do
|
150
|
+
|
151
|
+
let(:result) do
|
152
|
+
utils.__bulkify([{ foo: 'bar' }, { moo: 'bam' },{ foo: 'baz' }])
|
153
|
+
end
|
154
|
+
|
155
|
+
let(:expected_string) do
|
156
|
+
<<-PAYLOAD.gsub(/^\s+/, '')
|
157
|
+
{"foo":"bar"}
|
158
|
+
{"moo":"bam"}
|
159
|
+
{"foo":"baz"}
|
160
|
+
PAYLOAD
|
161
|
+
end
|
162
|
+
|
163
|
+
it 'serializes the array of strings' do
|
164
|
+
expect(result).to eq(expected_string)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
context 'when the payload has the :data option' do
|
169
|
+
|
170
|
+
let(:input) do
|
171
|
+
{ index: { foo: 'bar', data: { moo: 'bam' } } }
|
172
|
+
end
|
173
|
+
|
174
|
+
let(:result) do
|
175
|
+
utils.__bulkify([input])
|
176
|
+
end
|
177
|
+
|
178
|
+
let(:expected_string) do
|
179
|
+
<<-PAYLOAD.gsub(/^\s+/, '')
|
180
|
+
{"index":{"foo":"bar"}}
|
181
|
+
{"moo":"bam"}
|
182
|
+
PAYLOAD
|
183
|
+
end
|
184
|
+
|
185
|
+
it 'does not mutate the input' do
|
186
|
+
expect(input[:index][:data]).to eq(moo: 'bam')
|
187
|
+
end
|
188
|
+
|
189
|
+
it 'serializes the array of strings' do
|
190
|
+
expect(result).to eq(expected_string)
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
context 'when the payload has nested :data options' do
|
195
|
+
|
196
|
+
let(:data) do
|
197
|
+
{ data: { a: 'b', data: { c: 'd' } } }
|
198
|
+
end
|
199
|
+
|
200
|
+
let(:result) do
|
201
|
+
utils.__bulkify([{ index: { foo: 'bar'} } , data])
|
202
|
+
end
|
203
|
+
|
204
|
+
let(:lines) do
|
205
|
+
result.split("\n")
|
206
|
+
end
|
207
|
+
|
208
|
+
let(:header) do
|
209
|
+
MultiJson.load(lines.first)
|
210
|
+
end
|
211
|
+
|
212
|
+
let(:data_string) do
|
213
|
+
MultiJson.load(lines.last)
|
214
|
+
end
|
215
|
+
|
216
|
+
it 'does not mutate the input' do
|
217
|
+
expect(data[:data]).to eq(a: 'b', data: { c: 'd' })
|
218
|
+
end
|
219
|
+
|
220
|
+
it 'serializes the array of strings' do
|
221
|
+
expect(header['index']['foo']).to eq('bar')
|
222
|
+
expect(data_string['data']['a']).to eq('b')
|
223
|
+
expect(data_string['data']['data']['c']).to eq('d')
|
224
|
+
end
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
context '#__validate_and_extract_params' do
|
229
|
+
|
230
|
+
it 'listify Arrays' do
|
231
|
+
expect(utils.__validate_and_extract_params({ foo: ['a', 'b'] }, [:foo] )).to eq(foo: 'a,b')
|
232
|
+
end
|
233
|
+
|
234
|
+
it 'does not escape the parameters' do
|
235
|
+
expect(utils.__validate_and_extract_params({ foo: ['a.*', 'b.*'] }, [:foo] )).to eq(foo: 'a.*,b.*')
|
236
|
+
end
|
237
|
+
|
238
|
+
context 'when the params are valid' do
|
239
|
+
|
240
|
+
it 'extracts the valid params from the hash' do
|
241
|
+
expect(utils.__validate_and_extract_params({ foo: 'qux' }, [:foo, :bar]) ).to eq(foo: 'qux')
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
context 'when the params are invalid' do
|
246
|
+
|
247
|
+
it 'raises an ArgumentError' do
|
248
|
+
expect {
|
249
|
+
utils.__validate_and_extract_params({ foo: 'qux', bam: 'mux' }, [:foo, :bar])
|
250
|
+
}.to raise_exception(ArgumentError)
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
context 'when COMMON_PARAMS are provided' do
|
255
|
+
|
256
|
+
it 'extracts the params' do
|
257
|
+
expect(utils.__validate_and_extract_params({ index: 'foo'}, [:foo])).to eq({})
|
258
|
+
end
|
259
|
+
end
|
260
|
+
|
261
|
+
context 'when COMMON_QUERY_PARAMS are provided' do
|
262
|
+
|
263
|
+
it 'extracts the params' do
|
264
|
+
expect(utils.__validate_and_extract_params(format: 'yaml')).to eq(format: 'yaml')
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
context 'when the :skip_paramter_validation option is set' do
|
269
|
+
|
270
|
+
let(:result) do
|
271
|
+
utils.__validate_and_extract_params( { foo: 'q', bam: 'm' }, [:foo, :bar], { skip_parameter_validation: true } )
|
272
|
+
end
|
273
|
+
|
274
|
+
it 'skips parameter validation' do
|
275
|
+
expect(result).to eq(foo: 'q', bam: 'm')
|
276
|
+
end
|
277
|
+
end
|
278
|
+
|
279
|
+
context 'when the module has the setting to skip parameter validation' do
|
280
|
+
|
281
|
+
around do |example|
|
282
|
+
original_value = Elasticsearch::API.settings[:skip_parameter_validation]
|
283
|
+
Elasticsearch::API.settings[:skip_parameter_validation] = true
|
284
|
+
example.run
|
285
|
+
Elasticsearch::API.settings[:skip_parameter_validation] = original_value
|
286
|
+
end
|
287
|
+
|
288
|
+
let(:result) do
|
289
|
+
utils.__validate_and_extract_params( { foo: 'q', bam: 'm' }, [:foo, :bar])
|
290
|
+
end
|
291
|
+
|
292
|
+
it 'applies the module setting' do
|
293
|
+
expect(result).to eq(foo: 'q', bam: 'm')
|
294
|
+
end
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
describe '#__extract_parts' do
|
299
|
+
|
300
|
+
it 'extracts parts with true value from a Hash' do
|
301
|
+
expect(utils.__extract_parts({ foo: true, moo: 'blah' }, [:foo, :bar])).to eq(['foo'])
|
302
|
+
end
|
303
|
+
|
304
|
+
it 'extracts parts with string value from a Hash' do
|
305
|
+
expect(utils.__extract_parts({ foo: 'qux', moo: 'blah' }, [:foo, :bar])).to eq(['qux'])
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
context '#__rescue_from_not_found' do
|
310
|
+
|
311
|
+
it 'returns false if exception class name contains \'NotFound\'' do
|
312
|
+
expect(utils.__rescue_from_not_found { raise NotFound }).to be(false)
|
313
|
+
end
|
314
|
+
|
315
|
+
it 'returns false if exception message contains \'Not Found\'' do
|
316
|
+
expect(utils.__rescue_from_not_found { raise StandardError.new "Not Found" }).to be(false)
|
317
|
+
expect(utils.__rescue_from_not_found { raise StandardError.new "NotFound" }).to be(false)
|
318
|
+
end
|
319
|
+
|
320
|
+
it 'raises the exception if the class name and message do not include \'NotFound\'' do
|
321
|
+
expect {
|
322
|
+
utils.__rescue_from_not_found { raise StandardError.new "Any other exception" }
|
323
|
+
}.to raise_exception(StandardError)
|
324
|
+
end
|
325
|
+
end
|
326
|
+
|
327
|
+
context '#__report_unsupported_parameters' do
|
328
|
+
|
329
|
+
context 'when the parameters are passed as Symbols' do
|
330
|
+
|
331
|
+
let(:arguments) do
|
332
|
+
{ foo: 'bar', moo: 'bam', baz: 'qux' }
|
333
|
+
end
|
334
|
+
|
335
|
+
let(:unsupported_params) do
|
336
|
+
[ :foo, :moo]
|
337
|
+
end
|
338
|
+
|
339
|
+
let(:message) do
|
340
|
+
message = ''
|
341
|
+
expect(Kernel).to receive(:warn) { |msg| message = msg }
|
342
|
+
utils.__report_unsupported_parameters(arguments, unsupported_params)
|
343
|
+
message
|
344
|
+
end
|
345
|
+
|
346
|
+
it 'prints the unsupported parameters' do
|
347
|
+
expect(message).to match(/You are using unsupported parameter \[\:foo\]/)
|
348
|
+
expect(message).to match(/You are using unsupported parameter \[\:moo\]/)
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
context 'when the parameters are passed as Hashes' do
|
353
|
+
|
354
|
+
let(:arguments) do
|
355
|
+
{ foo: 'bar', moo: 'bam', baz: 'qux' }
|
356
|
+
end
|
357
|
+
|
358
|
+
let(:unsupported_params) do
|
359
|
+
[ :foo, :moo]
|
360
|
+
end
|
361
|
+
|
362
|
+
let(:message) do
|
363
|
+
message = ''
|
364
|
+
expect(Kernel).to receive(:warn) { |msg| message = msg }
|
365
|
+
utils.__report_unsupported_parameters(arguments, unsupported_params)
|
366
|
+
message
|
367
|
+
end
|
368
|
+
|
369
|
+
it 'prints the unsupported parameters' do
|
370
|
+
expect(message).to match(/You are using unsupported parameter \[\:foo\]/)
|
371
|
+
expect(message).to match(/You are using unsupported parameter \[\:moo\]/)
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
375
|
+
context 'when the parameters are passed as a mix of Hashes and Symbols' do
|
376
|
+
|
377
|
+
let(:arguments) do
|
378
|
+
{ foo: 'bar', moo: 'bam', baz: 'qux' }
|
379
|
+
end
|
380
|
+
|
381
|
+
let(:unsupported_params) do
|
382
|
+
[ { :foo => { :explanation => 'NOT_SUPPORTED'} }, :moo ]
|
383
|
+
end
|
384
|
+
|
385
|
+
|
386
|
+
let(:message) do
|
387
|
+
message = ''
|
388
|
+
expect(Kernel).to receive(:warn) { |msg| message = msg }
|
389
|
+
utils.__report_unsupported_parameters(arguments, unsupported_params)
|
390
|
+
message
|
391
|
+
end
|
392
|
+
|
393
|
+
it 'prints the unsupported parameters' do
|
394
|
+
expect(message).to match(/You are using unsupported parameter \[\:foo\]/)
|
395
|
+
expect(message).to match(/You are using unsupported parameter \[\:moo\]/)
|
396
|
+
expect(message).to match(/NOT_SUPPORTED/)
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
400
|
+
context 'when unsupported parameters are unused' do
|
401
|
+
|
402
|
+
let(:arguments) do
|
403
|
+
{ moo: 'bam', baz: 'qux' }
|
404
|
+
end
|
405
|
+
|
406
|
+
let(:unsupported_params) do
|
407
|
+
[ :foo ]
|
408
|
+
end
|
409
|
+
|
410
|
+
it 'prints the unsupported parameters' do
|
411
|
+
expect(Kernel).not_to receive(:warn)
|
412
|
+
utils.__report_unsupported_parameters(arguments, unsupported_params)
|
413
|
+
end
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
417
|
+
describe '#__report_unsupported_method' do
|
418
|
+
|
419
|
+
let(:message) do
|
420
|
+
message = ''
|
421
|
+
expect(Kernel).to receive(:warn) { |msg| message = msg }
|
422
|
+
utils.__report_unsupported_method(:foo)
|
423
|
+
message
|
424
|
+
end
|
425
|
+
|
426
|
+
it 'prints a warning' do
|
427
|
+
expect(message).to match(/foo/)
|
428
|
+
end
|
429
|
+
end
|
430
|
+
end
|