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/spec/spec_helper.rb
ADDED
@@ -0,0 +1,79 @@
|
|
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 'pry-nav'
|
19
|
+
require 'elasticsearch-transport'
|
20
|
+
require 'elasticsearch-api'
|
21
|
+
|
22
|
+
require 'jbuilder' if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
|
23
|
+
require 'jsonify'
|
24
|
+
|
25
|
+
require 'ansi'
|
26
|
+
tracer = ::Logger.new(STDERR)
|
27
|
+
tracer.formatter = lambda { |s, d, p, m| "#{m.gsub(/^.*$/) { |n| ' ' + n }.ansi(:faint)}\n" }
|
28
|
+
|
29
|
+
RUBY_1_8 = defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
|
30
|
+
JRUBY = defined?(JRUBY_VERSION)
|
31
|
+
|
32
|
+
unless defined?(ELASTICSEARCH_URL)
|
33
|
+
ELASTICSEARCH_URL = ENV['ELASTICSEARCH_URL'] || ENV['TEST_ES_SERVER'] || "localhost:#{(ENV['TEST_CLUSTER_PORT'] || 9200)}"
|
34
|
+
end
|
35
|
+
|
36
|
+
DEFAULT_CLIENT = Elasticsearch::Client.new host: ELASTICSEARCH_URL,
|
37
|
+
tracer: (ENV['QUIET'] ? nil : tracer)
|
38
|
+
|
39
|
+
module HelperModule
|
40
|
+
def self.included(context)
|
41
|
+
|
42
|
+
context.let(:client_double) do
|
43
|
+
Class.new { include Elasticsearch::API }.new.tap do |client|
|
44
|
+
expect(client).to receive(:perform_request).with(*expected_args).and_return(response_double)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
context.let(:client) do
|
49
|
+
Class.new { include Elasticsearch::API }.new.tap do |client|
|
50
|
+
expect(client).to receive(:perform_request).with(*expected_args).and_return(response_double)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
context.let(:response_double) do
|
55
|
+
double('response', status: 200, body: {}, headers: {})
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
RSpec.configure do |config|
|
61
|
+
config.include(HelperModule)
|
62
|
+
config.formatter = 'documentation'
|
63
|
+
config.color = true
|
64
|
+
end
|
65
|
+
|
66
|
+
if ENV['COVERAGE'] && ENV['CI'].nil? && !RUBY_1_8
|
67
|
+
require 'simplecov'
|
68
|
+
SimpleCov.start { add_filter "/test|test_/" }
|
69
|
+
end
|
70
|
+
|
71
|
+
if ENV['CI'] && !RUBY_1_8
|
72
|
+
require 'simplecov'
|
73
|
+
require 'simplecov-rcov'
|
74
|
+
SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
|
75
|
+
SimpleCov.start { add_filter "/test|test_" }
|
76
|
+
end
|
77
|
+
|
78
|
+
class NotFound < StandardError; end
|
79
|
+
|
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
RUBY_1_8 = defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
|
2
19
|
JRUBY = defined?(JRUBY_VERSION)
|
3
20
|
|
@@ -6,7 +23,6 @@ require 'logger'
|
|
6
23
|
require 'yaml'
|
7
24
|
require 'active_support/inflector'
|
8
25
|
require 'ansi'
|
9
|
-
require 'turn'
|
10
26
|
|
11
27
|
require 'elasticsearch'
|
12
28
|
require 'elasticsearch/extensions/test/cluster'
|
@@ -14,12 +30,9 @@ require 'elasticsearch/extensions/test/startup_shutdown'
|
|
14
30
|
require 'elasticsearch/extensions/test/profiling' unless JRUBY
|
15
31
|
|
16
32
|
# Skip features
|
17
|
-
skip_features = 'stash_in_path,requires_replica,headers,warnings'
|
33
|
+
skip_features = 'stash_in_path,requires_replica,headers,warnings,default_shards'
|
18
34
|
SKIP_FEATURES = ENV.fetch('TEST_SKIP_FEATURES', skip_features)
|
19
|
-
|
20
|
-
# Turn configuration
|
21
|
-
ENV['ansi'] = 'false' if ENV['CI']
|
22
|
-
Turn.config.format = :pretty
|
35
|
+
SKIPPED_TESTS = [ '/nodes.stats/30_discovery.yml' ]
|
23
36
|
|
24
37
|
# Launch test cluster
|
25
38
|
#
|
@@ -78,12 +91,13 @@ tracer.formatter = proc { |severity, datetime, progname, msg| "#{msg}\n" }
|
|
78
91
|
#
|
79
92
|
# ruby -I lib:test -r ./tmp/my_special_client.rb test/integration/yaml_test_runner.rb
|
80
93
|
#
|
81
|
-
url = ENV
|
94
|
+
url = ENV['TEST_CLUSTER_URL'] || ENV['TEST_ES_SERVER']
|
95
|
+
url = "http://localhost:#{ENV['TEST_CLUSTER_PORT'] || 9250}" unless url
|
82
96
|
$client ||= Elasticsearch::Client.new url: url
|
83
97
|
$helper_client ||= Elasticsearch::Client.new url: url
|
84
98
|
|
85
99
|
$client.transport.logger = logger unless ENV['QUIET'] || ENV['CI']
|
86
|
-
|
100
|
+
$client.transport.tracer = tracer if ENV['TRACE']
|
87
101
|
|
88
102
|
# Store Elasticsearch version
|
89
103
|
#
|
@@ -95,40 +109,58 @@ puts '-'*80,
|
|
95
109
|
'-'*80
|
96
110
|
|
97
111
|
require 'test_helper'
|
98
|
-
require 'test/unit'
|
99
|
-
require 'shoulda/context'
|
100
112
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
class Context
|
106
|
-
def create_test_from_should_hash(should)
|
107
|
-
test_name = ["test:", full_name, "|", "#{should[:name]}"].flatten.join(' ').to_sym
|
108
|
-
|
109
|
-
if test_methods[test_unit_class][test_name.to_s] then
|
110
|
-
raise DuplicateTestError, "'#{test_name}' is defined more than once."
|
111
|
-
end
|
113
|
+
class Elasticsearch::Test::YAMLTestReporter < ::MiniTest::Reporters::SpecReporter
|
114
|
+
def before_suite(suite)
|
115
|
+
puts ">>>>> #{suite.to_s} #{''.ljust(73-suite.to_s.size, '>')}" unless ENV['QUIET']
|
116
|
+
end
|
112
117
|
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
118
|
+
def after_suite(suite)
|
119
|
+
super unless ENV['QUIET']
|
120
|
+
end
|
121
|
+
|
122
|
+
def after_suites(suites, type)
|
123
|
+
time = Time.now - runner.suites_start_time
|
124
|
+
|
125
|
+
color = ( runner.errors > 0 || runner.failures > 0 ) ? :red : :green
|
126
|
+
status_line = "Finished in %.6fs, %.4f tests/s, %.4f assertions/s.\n".ansi(color) %
|
127
|
+
[time, runner.test_count / time, runner.assertion_count / time]
|
128
|
+
status_line += "#{runner.test_count} tests: #{runner.skips} skipped, #{runner.errors} errored, #{runner.failures} failed.".ansi(:bold, color)
|
129
|
+
|
130
|
+
puts '=' * 80
|
131
|
+
puts status_line
|
132
|
+
puts '-' * 80, ''
|
133
|
+
|
134
|
+
runner.test_results.each do |suite, tests|
|
135
|
+
tests.each do |test, test_runner|
|
136
|
+
next unless test_runner.result.to_s =~ /error|failure/
|
137
|
+
|
138
|
+
test_name = test_runner.test.to_s
|
139
|
+
.gsub(/^test_: /, '')
|
140
|
+
.gsub(/ should /, ' ')
|
141
|
+
.gsub(/\| .*$/, '')
|
142
|
+
.gsub(/\.\s*$/, '')
|
143
|
+
yaml_filename = test_runner.test.to_s.gsub(/.*\| (.*)\.\s*$/, '\1')
|
144
|
+
|
145
|
+
status = case test_runner.result
|
146
|
+
when :failure
|
147
|
+
"FAILURE"
|
148
|
+
when :error
|
149
|
+
"ERROR"
|
126
150
|
end
|
151
|
+
|
152
|
+
puts status.ansi(:red) +
|
153
|
+
" [#{test_runner.suite.to_s}] ".ansi(:red, :bold) +
|
154
|
+
test_name,
|
155
|
+
"<https://github.com/elastic/elasticsearch/blob/master/rest-api-spec/src/main/resources/rest-api-spec/test/#{yaml_filename}>".ansi(:underscore),
|
156
|
+
test_runner.exception.message.ansi(:faint), ''
|
127
157
|
end
|
128
158
|
end
|
129
159
|
end
|
130
160
|
end
|
131
161
|
|
162
|
+
Minitest::Reporters.use! Elasticsearch::Test::YAMLTestReporter.new
|
163
|
+
|
132
164
|
module Elasticsearch
|
133
165
|
module YamlTestSuite
|
134
166
|
$last_response = ''
|
@@ -142,7 +174,7 @@ module Elasticsearch
|
|
142
174
|
|
143
175
|
def symbolize_keys(object)
|
144
176
|
if object.is_a? Hash
|
145
|
-
object.reduce({}) { |memo,(k,v)| memo[k.to_sym] = symbolize_keys(v); memo }
|
177
|
+
object.reduce({}) { |memo,(k,v)| memo[k.to_s.to_sym] = symbolize_keys(v); memo }
|
146
178
|
else
|
147
179
|
object
|
148
180
|
end
|
@@ -213,7 +245,7 @@ module Elasticsearch
|
|
213
245
|
def in_context(name, &block)
|
214
246
|
klass = Class.new(YamlTestCase)
|
215
247
|
Object::const_set "%sTest" % name.split(/\s/).map { |d| d.capitalize }.join('').gsub(/[^\w]+/, ''), klass
|
216
|
-
klass.context name, &block
|
248
|
+
klass.context "[#{name.ansi(:bold)}]", &block
|
217
249
|
end
|
218
250
|
|
219
251
|
def fetch_or_return(var)
|
@@ -275,13 +307,13 @@ module Elasticsearch
|
|
275
307
|
extend self
|
276
308
|
end
|
277
309
|
|
278
|
-
class YamlTestCase < ::Test
|
310
|
+
class YamlTestCase < ::Minitest::Test; end
|
279
311
|
end
|
280
312
|
end
|
281
313
|
|
282
314
|
include Elasticsearch::YamlTestSuite
|
283
315
|
|
284
|
-
rest_api_test_source =
|
316
|
+
rest_api_test_source = '../../../../tmp/elasticsearch/rest-api-spec/src/main/resources/rest-api-spec/test'
|
285
317
|
PATH = Pathname(ENV.fetch('TEST_REST_API_SPEC', File.expand_path(rest_api_test_source, __FILE__)))
|
286
318
|
|
287
319
|
suites = Dir.glob(PATH.join('*')).map { |d| Pathname(d) }
|
@@ -296,7 +328,14 @@ suites.each do |suite|
|
|
296
328
|
#
|
297
329
|
setup do
|
298
330
|
$helper_client.indices.delete index: '_all', ignore: 404
|
299
|
-
$helper_client.indices.
|
331
|
+
$helper_client.indices.delete index: 'test-weird-index*', ignore: 404
|
332
|
+
$helper_client.indices.delete_template name: 'nomatch', ignore: 404
|
333
|
+
$helper_client.indices.delete_template name: 'test_2', ignore: 404
|
334
|
+
$helper_client.indices.delete_template name: 'test2', ignore: 404
|
335
|
+
$helper_client.indices.delete_template name: 'test', ignore: 404
|
336
|
+
$helper_client.indices.delete_template name: 'index_template', ignore: 404
|
337
|
+
$helper_client.indices.delete_template name: 'test_no_mappings', ignore: 404
|
338
|
+
$helper_client.indices.delete_template name: 'test_template', ignore: 404
|
300
339
|
$helper_client.snapshot.delete repository: 'test_repo_create_1', snapshot: 'test_snapshot', ignore: 404
|
301
340
|
$helper_client.snapshot.delete repository: 'test_repo_restore_1', snapshot: 'test_snapshot', ignore: 404
|
302
341
|
$helper_client.snapshot.delete repository: 'test_cat_snapshots_1', snapshot: 'snap1', ignore: 404
|
@@ -328,13 +367,18 @@ suites.each do |suite|
|
|
328
367
|
#
|
329
368
|
teardown do
|
330
369
|
$helper_client.indices.delete index: '_all', ignore: 404
|
370
|
+
|
371
|
+
# Wipe out cluster "transient" settings
|
372
|
+
settings = $helper_client.cluster.get_settings(flat_settings: true)['transient'].keys.reduce({}) {|s,i| s[i] = nil; s}
|
373
|
+
$helper_client.cluster.put_settings body: { transient: settings } unless settings.empty?
|
331
374
|
end
|
332
375
|
|
333
376
|
files = Dir[suite.join('*.{yml,yaml}')]
|
334
377
|
files.each do |file|
|
378
|
+
next if SKIPPED_TESTS.any? { |test| file =~ /#{test}/ }
|
335
379
|
begin
|
336
|
-
tests = YAML.
|
337
|
-
rescue
|
380
|
+
tests = YAML.load_stream File.new(file)
|
381
|
+
rescue RuntimeError => e
|
338
382
|
$stderr.puts "ERROR [#{e.class}] while loading [#{file}] file".ansi(:red)
|
339
383
|
# raise e
|
340
384
|
next
|
@@ -357,7 +401,10 @@ suites.each do |suite|
|
|
357
401
|
|
358
402
|
tests.each do |test|
|
359
403
|
context '' do
|
360
|
-
|
404
|
+
yaml_file_line = File.read(file).force_encoding("UTF-8").split("\n").index {|l| l.include? test.keys.first.to_s }
|
405
|
+
|
406
|
+
l = yaml_file_line ? "#L#{yaml_file_line.to_i + 1}" : ''
|
407
|
+
test_name = test.keys.first.to_s + " | #{file.gsub(PATH.to_s, '').gsub(/^\//, '')}" + l
|
361
408
|
actions = test.values.first
|
362
409
|
|
363
410
|
if reason = Runner.skip?(actions)
|
@@ -428,7 +475,7 @@ suites.each do |suite|
|
|
428
475
|
|
429
476
|
begin
|
430
477
|
$results[test.hash] = Runner.perform_api_call(test, api, arguments)
|
431
|
-
rescue
|
478
|
+
rescue StandardError => e
|
432
479
|
begin
|
433
480
|
$results[test.hash] = MultiJson.load(e.message.match(/{.+}/, 1).to_s)
|
434
481
|
rescue MultiJson::ParseError
|
@@ -526,7 +573,7 @@ suites.each do |suite|
|
|
526
573
|
message = "Expected '#{property}' to be #{operator} #{value}, is: #{result.inspect}"
|
527
574
|
|
528
575
|
$stderr.puts "CHECK: #{message}" if ENV['DEBUG']
|
529
|
-
assert_operator result, operator.to_sym, value.to_i
|
576
|
+
assert_operator result, operator.to_sym, Runner.fetch_or_return(value).to_i
|
530
577
|
|
531
578
|
when stash = action['set']
|
532
579
|
property, variable = stash.to_a.first
|
data/test/test_helper.rb
CHANGED
@@ -1,3 +1,29 @@
|
|
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
|
+
ELASTICSEARCH_HOSTS = if hosts = ENV['TEST_ES_SERVER'] || ENV['ELASTICSEARCH_HOSTS']
|
19
|
+
hosts.split(',').map do |host|
|
20
|
+
/(http\:\/\/)?(\S+)/.match(host)[2]
|
21
|
+
end
|
22
|
+
end.freeze
|
23
|
+
|
24
|
+
TEST_HOST, TEST_PORT = ELASTICSEARCH_HOSTS.first.split(':') if ELASTICSEARCH_HOSTS
|
25
|
+
|
26
|
+
|
1
27
|
RUBY_1_8 = defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
|
2
28
|
JRUBY = defined?(JRUBY_VERSION)
|
3
29
|
|
@@ -18,18 +44,14 @@ if ENV['CI'] && !RUBY_1_8
|
|
18
44
|
SimpleCov.start { add_filter "/test|test_" }
|
19
45
|
end
|
20
46
|
|
21
|
-
require '
|
22
|
-
require '
|
23
|
-
require '
|
47
|
+
require 'ansi'
|
48
|
+
require 'test/unit' if RUBY_1_8
|
49
|
+
require 'minitest/autorun'
|
50
|
+
require 'minitest/reporters'
|
51
|
+
require 'shoulda/context'
|
52
|
+
require 'mocha/minitest'
|
24
53
|
|
25
|
-
|
26
|
-
require 'turn'
|
27
|
-
|
28
|
-
if ENV['QUIET']
|
29
|
-
Turn.config.format = :outline
|
30
|
-
Turn.config.trace = 1
|
31
|
-
end
|
32
|
-
end
|
54
|
+
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
|
33
55
|
|
34
56
|
require 'require-prof' if ENV["REQUIRE_PROF"]
|
35
57
|
require 'elasticsearch/api'
|
@@ -41,13 +63,40 @@ if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
|
|
41
63
|
require 'elasticsearch/extensions/test/profiling' unless JRUBY
|
42
64
|
end
|
43
65
|
|
66
|
+
module Minitest
|
67
|
+
module Assertions
|
68
|
+
def assert_nothing_raised(*args)
|
69
|
+
begin
|
70
|
+
line = __LINE__
|
71
|
+
yield
|
72
|
+
rescue RuntimeError => e
|
73
|
+
raise MiniTest::Assertion, "Exception raised:\n<#{e.class}>", e.backtrace
|
74
|
+
end
|
75
|
+
true
|
76
|
+
end
|
77
|
+
|
78
|
+
def assert_not_nil(object, msg=nil)
|
79
|
+
msg = message(msg) { "<#{object.inspect}> expected to not be nil" }
|
80
|
+
assert !object.nil?, msg
|
81
|
+
end
|
82
|
+
|
83
|
+
def assert_block(*msgs)
|
84
|
+
assert yield, *msgs
|
85
|
+
end
|
86
|
+
|
87
|
+
alias :assert_raise :assert_raises
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
44
91
|
module Elasticsearch
|
45
92
|
module Test
|
93
|
+
class UnitTest < ::Minitest::Test; end
|
94
|
+
|
46
95
|
class FakeClient
|
47
96
|
include Elasticsearch::API
|
48
97
|
|
49
|
-
def perform_request(method, path, params, body)
|
50
|
-
puts "PERFORMING REQUEST:", "--> #{method.to_s.upcase} #{path} #{params} #{body}"
|
98
|
+
def perform_request(method, path, params, body, headers={"Content-Type" => "application/json"})
|
99
|
+
puts "PERFORMING REQUEST:", "--> #{method.to_s.upcase} #{path} #{params} #{body} #{headers}"
|
51
100
|
FakeResponse.new(200, 'FAKE', {})
|
52
101
|
end
|
53
102
|
end
|
data/utils/Gemfile
CHANGED
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
source 'https://rubygems.org'
|
2
19
|
|
3
20
|
gem 'activesupport'
|
data/utils/Thorfile
CHANGED
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
require File.expand_path('./thor/generate_api')
|
2
19
|
require File.expand_path('./thor/generate_source')
|
3
20
|
require File.expand_path('./thor/lister')
|
data/utils/thor/generate_api.rb
CHANGED
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
require 'thor'
|
2
19
|
|
3
20
|
require 'pathname'
|
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
# encoding: UTF-8
|
2
19
|
|
3
20
|
require 'thor'
|
@@ -30,7 +47,7 @@ module Elasticsearch
|
|
30
47
|
|
31
48
|
__root = Pathname( File.expand_path('../../..', __FILE__) )
|
32
49
|
|
33
|
-
desc "generate
|
50
|
+
desc "generate", "Generate source code and tests from the REST API JSON specification"
|
34
51
|
method_option :language, default: 'ruby', desc: 'Programming language'
|
35
52
|
method_option :force, type: :boolean, default: false, desc: 'Overwrite the output'
|
36
53
|
method_option :verbose, type: :boolean, default: false, desc: 'Output more information'
|
@@ -46,7 +63,11 @@ module Elasticsearch
|
|
46
63
|
# -- Test helper
|
47
64
|
copy_file "templates/ruby/test_helper.rb", @output.join('test').join('test_helper.rb') if options[:language] == 'ruby'
|
48
65
|
|
49
|
-
Dir
|
66
|
+
files = Dir.entries(@input.to_s).reject { |f| f.start_with?('.') || f.start_with?('_') }
|
67
|
+
|
68
|
+
files.each do |filepath|
|
69
|
+
file = @input.join(filepath)
|
70
|
+
|
50
71
|
@path = Pathname(file)
|
51
72
|
@json = MultiJson.load( File.read(@path) )
|
52
73
|
@spec = @json.values.first
|
data/utils/thor/lister.rb
CHANGED
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
# encoding: UTF-8
|
2
19
|
|
3
20
|
require 'thor'
|
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
<%- @module_namespace.each_with_index do |name, i| -%>
|
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
require 'test_helper'
|
2
19
|
|
3
20
|
module Elasticsearch
|
@@ -1,3 +1,20 @@
|
|
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
|
+
|
1
18
|
RUBY_1_8 = defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
|
2
19
|
|
3
20
|
require 'rubygems' if RUBY_1_8
|
@@ -7,7 +24,6 @@ require 'simplecov' and SimpleCov.start { add_filter "/test|test_/" } if ENV["CO
|
|
7
24
|
require 'test/unit'
|
8
25
|
require 'shoulda-context'
|
9
26
|
require 'mocha/setup'
|
10
|
-
require 'turn' unless ENV["TM_FILEPATH"] || ENV["NOTURN"] || RUBY_1_8
|
11
27
|
|
12
28
|
require 'require-prof' if ENV["REQUIRE_PROF"]
|
13
29
|
Dir[ File.expand_path('../../lib/elasticsearch/api/**/*.rb', __FILE__) ].each do |f|
|