elasticsearch-api 7.15.0 → 8.0.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -9
- data/{LICENSE → LICENSE.txt} +0 -0
- data/README.md +4 -14
- data/Rakefile +20 -69
- data/api-spec-testing/README.md +118 -0
- data/{spec/elasticsearch/api/actions/indices/upgrade_spec.rb → api-spec-testing/logging.rb} +8 -15
- data/api-spec-testing/rspec_matchers.rb +312 -0
- data/api-spec-testing/test_file/action.rb +168 -0
- data/api-spec-testing/test_file/task_group.rb +340 -0
- data/api-spec-testing/test_file/test.rb +295 -0
- data/api-spec-testing/test_file.rb +173 -0
- data/api-spec-testing/wipe_cluster.rb +388 -0
- data/elasticsearch-api.gemspec +10 -10
- data/lib/elasticsearch/api/actions/async_search/delete.rb +51 -0
- data/lib/elasticsearch/api/actions/async_search/get.rb +54 -0
- data/lib/elasticsearch/api/actions/{snapshot/get_features.rb → async_search/status.rb} +16 -16
- data/lib/elasticsearch/api/actions/async_search/submit.rb +95 -0
- data/lib/elasticsearch/api/actions/autoscaling/delete_autoscaling_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_capacity.rb +46 -0
- data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/autoscaling/put_autoscaling_policy.rb +53 -0
- data/lib/elasticsearch/api/actions/bulk.rb +7 -20
- data/lib/elasticsearch/api/actions/cat/aliases.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/allocation.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/count.rb +7 -15
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/health.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/help.rb +7 -12
- data/lib/elasticsearch/api/actions/cat/indices.rb +7 -24
- data/lib/elasticsearch/api/actions/cat/master.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/ml_data_frame_analytics.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/ml_datafeeds.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/ml_jobs.rb +62 -0
- data/lib/elasticsearch/api/actions/cat/ml_trained_models.rb +63 -0
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/nodes.rb +7 -22
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/plugins.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/recovery.rb +7 -20
- data/lib/elasticsearch/api/actions/cat/repositories.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/segments.rb +7 -16
- data/lib/elasticsearch/api/actions/cat/shards.rb +7 -20
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/tasks.rb +11 -20
- data/lib/elasticsearch/api/actions/cat/templates.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +8 -19
- data/lib/elasticsearch/api/actions/cat/transforms.rb +62 -0
- data/lib/elasticsearch/api/actions/clear_scroll.rb +6 -3
- data/lib/elasticsearch/api/actions/close_point_in_time.rb +6 -3
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +8 -13
- data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb +7 -11
- data/lib/elasticsearch/api/actions/cluster/exists_component_template.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/get_component_template.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +7 -14
- data/lib/elasticsearch/api/actions/cluster/health.rb +7 -21
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +7 -13
- data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +7 -13
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +7 -13
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +6 -3
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +7 -16
- data/lib/elasticsearch/api/actions/cluster/state.rb +7 -18
- data/lib/elasticsearch/api/actions/cluster/stats.rb +7 -12
- data/lib/elasticsearch/api/actions/count.rb +8 -35
- data/lib/elasticsearch/api/actions/create.rb +1 -1
- data/lib/elasticsearch/api/actions/cross_cluster_replication/delete_auto_follow_pattern.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/follow.rb +54 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_info.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_stats.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/forget_follower.rb +53 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/get_auto_follow_pattern.rb +53 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_auto_follow_pattern.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_follow.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/put_auto_follow_pattern.rb +53 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_auto_follow_pattern.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_follow.rb +52 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/stats.rb +46 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/unfollow.rb +51 -0
- data/lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb +7 -13
- data/lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb +7 -13
- data/lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb +6 -3
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/delete_transform.rb +59 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/get_transform.rb +64 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/get_transform_stats.rb +61 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/preview_transform.rb +56 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/put_transform.rb +61 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/start_transform.rb +59 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/stop_transform.rb +61 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/update_transform.rb +61 -0
- data/lib/elasticsearch/api/actions/delete.rb +13 -20
- data/lib/elasticsearch/api/actions/delete_by_query.rb +10 -59
- data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +7 -11
- data/lib/elasticsearch/api/actions/delete_script.rb +7 -12
- data/lib/elasticsearch/api/actions/enrich/delete_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/enrich/execute_policy.rb +52 -0
- data/lib/elasticsearch/api/actions/enrich/get_policy.rb +53 -0
- data/lib/elasticsearch/api/actions/enrich/put_policy.rb +53 -0
- data/lib/elasticsearch/api/actions/enrich/stats.rb +46 -0
- data/lib/elasticsearch/api/actions/eql/delete.rb +51 -0
- data/lib/elasticsearch/api/actions/eql/get.rb +53 -0
- data/lib/elasticsearch/api/actions/eql/get_status.rb +51 -0
- data/lib/elasticsearch/api/actions/eql/search.rb +57 -0
- data/lib/elasticsearch/api/actions/exists.rb +6 -34
- data/lib/elasticsearch/api/actions/exists_source.rb +8 -20
- data/lib/elasticsearch/api/actions/explain.rb +9 -36
- data/lib/elasticsearch/api/actions/features/get_features.rb +7 -11
- data/lib/elasticsearch/api/actions/features/reset_features.rb +6 -3
- data/lib/elasticsearch/api/actions/field_caps.rb +8 -16
- data/lib/elasticsearch/api/actions/fleet/global_checkpoints.rb +55 -0
- data/lib/elasticsearch/api/actions/get.rb +14 -35
- data/lib/elasticsearch/api/actions/get_script.rb +7 -11
- data/lib/elasticsearch/api/actions/get_script_context.rb +6 -7
- data/lib/elasticsearch/api/actions/get_script_languages.rb +6 -7
- data/lib/elasticsearch/api/actions/get_source.rb +9 -33
- data/lib/elasticsearch/api/actions/graph/explore.rb +59 -0
- data/lib/elasticsearch/api/actions/index.rb +8 -34
- data/lib/elasticsearch/api/actions/index_lifecycle_management/delete_lifecycle.rb +51 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/explain_lifecycle.rb +53 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/get_lifecycle.rb +53 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/get_status.rb +46 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers.rb +48 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/move_to_step.rb +52 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/put_lifecycle.rb +52 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/remove_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/retry.rb +51 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/start.rb +46 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/stop.rb +46 -0
- data/lib/elasticsearch/api/actions/indices/add_block.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/analyze.rb +8 -12
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +7 -18
- data/lib/elasticsearch/api/actions/indices/clone.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/close.rb +8 -17
- data/lib/elasticsearch/api/actions/indices/create.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/create_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/data_streams_stats.rb +53 -0
- data/lib/elasticsearch/api/actions/indices/delete.rb +12 -16
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/delete_data_stream.rb +52 -0
- data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +12 -13
- data/lib/elasticsearch/api/actions/indices/disk_usage.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/exists.rb +4 -16
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +4 -14
- data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +4 -13
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +4 -14
- data/lib/elasticsearch/api/actions/indices/field_usage_stats.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/flush.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/get.rb +7 -19
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/get_data_stream.rb +54 -0
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +8 -30
- data/lib/elasticsearch/api/actions/indices/get_index_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +8 -30
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +7 -17
- data/lib/elasticsearch/api/actions/indices/get_template.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/migrate_to_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/modify_data_stream.rb +49 -0
- data/lib/elasticsearch/api/actions/indices/open.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/promote_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/put_index_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +9 -33
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +7 -17
- data/lib/elasticsearch/api/actions/indices/put_template.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/recovery.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/refresh.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/{get_upgrade.rb → reload_search_analyzers.rb} +13 -26
- data/lib/elasticsearch/api/actions/indices/resolve_index.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/rollover.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/segments.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/shrink.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/simulate_index_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/simulate_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/split.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/stats.rb +25 -47
- data/lib/elasticsearch/api/actions/indices/{upgrade.rb → unfreeze.rb} +19 -28
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +8 -23
- data/lib/elasticsearch/api/actions/info.rb +6 -3
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +7 -12
- data/lib/elasticsearch/api/actions/ingest/geo_ip_stats.rb +6 -3
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +7 -12
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +6 -3
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +7 -12
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +7 -11
- data/lib/elasticsearch/api/actions/knn_search.rb +60 -0
- data/lib/elasticsearch/api/actions/license/delete.rb +46 -0
- data/lib/elasticsearch/api/actions/license/get.rb +48 -0
- data/lib/elasticsearch/api/actions/license/get_basic_status.rb +46 -0
- data/lib/elasticsearch/api/actions/license/get_trial_status.rb +46 -0
- data/lib/elasticsearch/api/actions/license/post.rb +48 -0
- data/lib/elasticsearch/api/actions/license/post_start_basic.rb +47 -0
- data/lib/elasticsearch/api/actions/license/post_start_trial.rb +48 -0
- data/lib/elasticsearch/api/actions/logstash/delete_pipeline.rb +51 -0
- data/lib/elasticsearch/api/actions/logstash/get_pipeline.rb +51 -0
- data/lib/elasticsearch/api/actions/logstash/put_pipeline.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/close_job.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_calendar.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_event.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_job.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_datafeed.rb +52 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_expired_data.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_filter.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_forecast.rb +60 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_job.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_model_snapshot.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model_alias.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/estimate_model_memory.rb +49 -0
- data/lib/elasticsearch/api/actions/machine_learning/evaluate_data_frame.rb +49 -0
- data/lib/elasticsearch/api/actions/machine_learning/explain_data_frame_analytics.rb +59 -0
- data/lib/elasticsearch/api/actions/machine_learning/flush_job.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/forecast.rb +54 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_buckets.rb +73 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_calendar_events.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_calendars.rb +61 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_categories.rb +67 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics_stats.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_datafeed_stats.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_datafeeds.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_filters.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_influencers.rb +65 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_job_stats.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_jobs.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_model_snapshots.rb +70 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_overall_buckets.rb +65 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_records.rb +65 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_trained_model_deployment_stats.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_trained_models.rb +61 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_trained_models_stats.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment.rb +58 -0
- data/lib/elasticsearch/api/actions/machine_learning/info.rb +46 -0
- data/lib/elasticsearch/api/actions/machine_learning/open_job.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/post_calendar_events.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/post_data.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/preview_data_frame_analytics.rb +59 -0
- data/lib/elasticsearch/api/actions/machine_learning/preview_datafeed.rb +59 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_calendar.rb +52 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_calendar_job.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_datafeed.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_filter.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_job.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model.rb +54 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_alias.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part.rb +61 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/reset_job.rb +52 -0
- data/lib/elasticsearch/api/actions/machine_learning/revert_model_snapshot.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/set_upgrade_mode.rb +48 -0
- data/lib/elasticsearch/api/actions/machine_learning/start_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/start_datafeed.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/start_trained_model_deployment.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/stop_data_frame_analytics.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/stop_datafeed.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_datafeed.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_filter.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_job.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_model_snapshot.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/upgrade_job_snapshot.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/validate.rb +49 -0
- data/lib/elasticsearch/api/actions/machine_learning/validate_detector.rb +49 -0
- data/lib/elasticsearch/api/actions/mget.rb +9 -30
- data/lib/elasticsearch/api/actions/migration/deprecations.rb +53 -0
- data/lib/elasticsearch/api/actions/migration/get_feature_upgrade_status.rb +46 -0
- data/lib/elasticsearch/api/actions/migration/post_feature_upgrade.rb +46 -0
- data/lib/elasticsearch/api/actions/monitoring/bulk.rb +72 -0
- data/lib/elasticsearch/api/actions/msearch.rb +8 -28
- data/lib/elasticsearch/api/actions/msearch_template.rb +8 -26
- data/lib/elasticsearch/api/actions/mtermvectors.rb +14 -40
- data/lib/elasticsearch/api/actions/nodes/clear_repositories_metering_archive.rb +6 -3
- data/lib/elasticsearch/api/actions/nodes/get_repositories_metering_info.rb +6 -3
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +9 -23
- data/lib/elasticsearch/api/actions/nodes/info.rb +7 -12
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +7 -11
- data/lib/elasticsearch/api/actions/nodes/stats.rb +10 -22
- data/lib/elasticsearch/api/actions/nodes/usage.rb +7 -11
- data/lib/elasticsearch/api/actions/open_point_in_time.rb +7 -15
- data/lib/elasticsearch/api/actions/ping.rb +3 -2
- data/lib/elasticsearch/api/actions/put_script.rb +7 -13
- data/lib/elasticsearch/api/actions/rank_eval.rb +7 -18
- data/lib/elasticsearch/api/actions/reindex.rb +7 -18
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +7 -11
- data/lib/elasticsearch/api/actions/render_search_template.rb +7 -4
- data/lib/elasticsearch/api/actions/rollup/delete_job.rb +55 -0
- data/lib/elasticsearch/api/actions/rollup/get_jobs.rb +57 -0
- data/lib/elasticsearch/api/actions/rollup/get_rollup_caps.rb +57 -0
- data/lib/elasticsearch/api/actions/rollup/get_rollup_index_caps.rb +55 -0
- data/lib/elasticsearch/api/actions/rollup/put_job.rb +57 -0
- data/lib/elasticsearch/api/actions/rollup/rollup.rb +61 -0
- data/lib/elasticsearch/api/actions/rollup/rollup_search.rb +71 -0
- data/lib/elasticsearch/api/actions/rollup/start_job.rb +55 -0
- data/lib/elasticsearch/api/actions/rollup/stop_job.rb +57 -0
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +7 -4
- data/lib/elasticsearch/api/actions/scroll.rb +8 -14
- data/lib/elasticsearch/api/actions/search.rb +10 -66
- data/lib/elasticsearch/api/actions/search_mvt.rb +8 -15
- data/lib/elasticsearch/api/actions/search_shards.rb +7 -16
- data/lib/elasticsearch/api/actions/search_template.rb +8 -34
- data/lib/elasticsearch/api/actions/searchable_snapshots/cache_stats.rb +57 -0
- data/lib/elasticsearch/api/actions/{indices/flush_synced.rb → searchable_snapshots/clear_cache.rb} +17 -28
- data/lib/elasticsearch/api/actions/searchable_snapshots/mount.rb +60 -0
- data/lib/elasticsearch/api/actions/searchable_snapshots/stats.rb +54 -0
- data/lib/elasticsearch/api/actions/security/authenticate.rb +46 -0
- data/lib/elasticsearch/api/actions/security/change_password.rb +57 -0
- data/lib/elasticsearch/api/actions/security/clear_api_key_cache.rb +51 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_privileges.rb +51 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_realms.rb +52 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_roles.rb +51 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_service_tokens.rb +59 -0
- data/lib/elasticsearch/api/actions/security/create_api_key.rb +50 -0
- data/lib/elasticsearch/api/actions/security/create_service_token.rb +63 -0
- data/lib/elasticsearch/api/actions/security/delete_privileges.rb +56 -0
- data/lib/elasticsearch/api/actions/security/delete_role.rb +52 -0
- data/lib/elasticsearch/api/actions/security/delete_role_mapping.rb +52 -0
- data/lib/elasticsearch/api/actions/security/delete_service_token.rb +60 -0
- data/lib/elasticsearch/api/actions/security/delete_user.rb +52 -0
- data/lib/elasticsearch/api/actions/security/disable_user.rb +52 -0
- data/lib/elasticsearch/api/actions/security/enable_user.rb +52 -0
- data/lib/elasticsearch/api/actions/security/enroll_kibana.rb +46 -0
- data/lib/elasticsearch/api/actions/security/enroll_node.rb +46 -0
- data/lib/elasticsearch/api/actions/security/get_api_key.rb +51 -0
- data/lib/elasticsearch/api/actions/security/get_builtin_privileges.rb +46 -0
- data/lib/elasticsearch/api/actions/security/get_privileges.rb +58 -0
- data/lib/elasticsearch/api/actions/security/get_role.rb +61 -0
- data/lib/elasticsearch/api/actions/security/get_role_mapping.rb +53 -0
- data/lib/elasticsearch/api/actions/security/get_service_accounts.rb +58 -0
- data/lib/elasticsearch/api/actions/security/get_service_credentials.rb +55 -0
- data/lib/elasticsearch/api/actions/security/get_token.rb +49 -0
- data/lib/elasticsearch/api/actions/security/get_user.rb +61 -0
- data/lib/elasticsearch/api/actions/security/get_user_privileges.rb +46 -0
- data/lib/elasticsearch/api/actions/security/grant_api_key.rb +50 -0
- data/lib/elasticsearch/api/actions/security/has_privileges.rb +56 -0
- data/lib/elasticsearch/api/actions/security/invalidate_api_key.rb +49 -0
- data/lib/elasticsearch/api/actions/security/invalidate_token.rb +49 -0
- data/lib/elasticsearch/api/actions/security/put_privileges.rb +50 -0
- data/lib/elasticsearch/api/actions/security/put_role.rb +54 -0
- data/lib/elasticsearch/api/actions/security/put_role_mapping.rb +54 -0
- data/lib/elasticsearch/api/actions/security/put_user.rb +54 -0
- data/lib/elasticsearch/api/actions/security/query_api_keys.rb +52 -0
- data/lib/elasticsearch/api/actions/security/saml_authenticate.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_complete_logout.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_invalidate.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_logout.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_prepare_authentication.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_service_provider_metadata.rb +51 -0
- data/lib/elasticsearch/api/actions/shutdown/delete_node.rb +6 -7
- data/lib/elasticsearch/api/actions/shutdown/get_node.rb +6 -7
- data/lib/elasticsearch/api/actions/shutdown/put_node.rb +6 -7
- data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot/clone.rb +7 -11
- data/lib/elasticsearch/api/actions/snapshot/create.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +7 -13
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +14 -14
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +12 -13
- data/lib/elasticsearch/api/actions/snapshot/get.rb +12 -16
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +12 -13
- data/lib/elasticsearch/api/actions/snapshot/repository_analyze.rb +7 -21
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot/status.rb +12 -13
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/delete_lifecycle.rb +51 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_lifecycle.rb +51 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_retention.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_lifecycle.rb +53 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_stats.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_status.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/put_lifecycle.rb +52 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/start.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/stop.rb +46 -0
- data/lib/elasticsearch/api/actions/sql/clear_cursor.rb +49 -0
- data/lib/elasticsearch/api/actions/sql/delete_async.rb +51 -0
- data/lib/elasticsearch/api/actions/sql/get_async.rb +55 -0
- data/lib/elasticsearch/api/actions/sql/get_async_status.rb +51 -0
- data/lib/elasticsearch/api/actions/sql/query.rb +50 -0
- data/lib/elasticsearch/api/actions/sql/translate.rb +49 -0
- data/lib/elasticsearch/api/actions/ssl/certificates.rb +46 -0
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +7 -14
- data/lib/elasticsearch/api/actions/tasks/get.rb +7 -12
- data/lib/elasticsearch/api/actions/tasks/list.rb +7 -17
- data/lib/elasticsearch/api/actions/terms_enum.rb +55 -0
- data/lib/elasticsearch/api/actions/termvectors.rb +13 -40
- data/lib/elasticsearch/api/actions/text_structure/find_structure.rb +70 -0
- data/lib/elasticsearch/api/actions/transform/delete_transform.rb +52 -0
- data/lib/elasticsearch/api/actions/transform/get_transform.rb +57 -0
- data/lib/elasticsearch/api/actions/transform/get_transform_stats.rb +54 -0
- data/lib/elasticsearch/api/actions/transform/preview_transform.rb +59 -0
- data/lib/elasticsearch/api/actions/transform/put_transform.rb +54 -0
- data/lib/elasticsearch/api/actions/transform/start_transform.rb +52 -0
- data/lib/elasticsearch/api/actions/transform/stop_transform.rb +56 -0
- data/lib/elasticsearch/api/actions/transform/update_transform.rb +54 -0
- data/lib/elasticsearch/api/actions/transform/upgrade_transforms.rb +47 -0
- data/lib/elasticsearch/api/actions/update.rb +12 -23
- data/lib/elasticsearch/api/actions/update_by_query.rb +9 -60
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +7 -11
- data/lib/elasticsearch/api/actions/watcher/ack_watch.rb +58 -0
- data/lib/elasticsearch/api/actions/watcher/activate_watch.rb +51 -0
- data/lib/elasticsearch/api/actions/watcher/deactivate_watch.rb +51 -0
- data/lib/elasticsearch/api/actions/watcher/delete_watch.rb +59 -0
- data/lib/elasticsearch/api/actions/watcher/execute_watch.rb +55 -0
- data/lib/elasticsearch/api/actions/watcher/get_watch.rb +51 -0
- data/lib/elasticsearch/api/actions/watcher/put_watch.rb +56 -0
- data/lib/elasticsearch/api/actions/watcher/query_watches.rb +52 -0
- data/lib/elasticsearch/api/actions/watcher/start.rb +46 -0
- data/lib/elasticsearch/api/actions/watcher/stats.rb +54 -0
- data/lib/elasticsearch/api/actions/watcher/stop.rb +46 -0
- data/lib/elasticsearch/api/actions/xpack/info.rb +48 -0
- data/lib/elasticsearch/api/actions/xpack/usage.rb +47 -0
- data/lib/elasticsearch/api/namespace/async_search.rb +36 -0
- data/lib/elasticsearch/api/{actions/remote/info.rb → namespace/autoscaling.rb} +12 -13
- data/lib/elasticsearch/api/namespace/cross_cluster_replication.rb +38 -0
- data/lib/elasticsearch/api/namespace/data_frame_transform_deprecated.rb +36 -0
- data/lib/elasticsearch/api/namespace/enrich.rb +36 -0
- data/lib/elasticsearch/api/namespace/eql.rb +36 -0
- data/lib/elasticsearch/api/namespace/fleet.rb +36 -0
- data/lib/elasticsearch/api/namespace/graph.rb +36 -0
- data/lib/elasticsearch/api/namespace/index_lifecycle_management.rb +38 -0
- data/lib/elasticsearch/api/namespace/ingest.rb +0 -1
- data/lib/elasticsearch/api/namespace/license.rb +36 -0
- data/lib/elasticsearch/api/namespace/logstash.rb +36 -0
- data/lib/elasticsearch/api/{actions/abort_benchmark.rb → namespace/machine_learning.rb} +13 -16
- data/lib/elasticsearch/api/namespace/migration.rb +36 -0
- data/lib/elasticsearch/api/namespace/monitoring.rb +36 -0
- data/lib/elasticsearch/api/namespace/rollup.rb +36 -0
- data/lib/elasticsearch/api/namespace/searchable_snapshots.rb +36 -0
- data/lib/elasticsearch/api/namespace/snapshot_lifecycle_management.rb +38 -0
- data/lib/elasticsearch/api/namespace/sql.rb +36 -0
- data/lib/elasticsearch/api/namespace/ssl.rb +36 -0
- data/lib/elasticsearch/api/namespace/text_structure.rb +36 -0
- data/lib/elasticsearch/api/namespace/transform.rb +36 -0
- data/lib/elasticsearch/api/namespace/watcher.rb +36 -0
- data/lib/elasticsearch/api/namespace/xpack.rb +36 -0
- data/lib/elasticsearch/api/response.rb +48 -0
- data/lib/elasticsearch/api/utils.rb +4 -53
- data/lib/elasticsearch/api/version.rb +1 -1
- data/lib/elasticsearch/api.rb +26 -21
- data/spec/elasticsearch/api/actions/bulk_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/close_point_in_time_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/count_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/create_document_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/data_frame/update_data_frame_transform_spec.rb +81 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +2 -19
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +3 -16
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +10 -21
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +9 -9
- data/spec/elasticsearch/api/actions/features/get_features_spec.rb +11 -7
- data/spec/elasticsearch/api/actions/features/reset_features_spec.rb +11 -7
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/fleet/global_checkpoints_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +6 -18
- data/spec/elasticsearch/api/actions/get_document_spec.rb +6 -31
- data/spec/elasticsearch/api/actions/get_script_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/index_document_spec.rb +10 -28
- data/spec/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers_spec.rb +36 -0
- data/spec/elasticsearch/api/actions/indices/add_block_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/clone_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/data_streams_stats_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/disk_usage_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/field_usage_stats_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +2 -13
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +7 -22
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +8 -14
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +7 -12
- data/spec/elasticsearch/api/actions/{nodes/shutdown_spec.rb → indices/unfreeze_spec.rb} +27 -18
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/info_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/ingest/geo_ip_stats_spec.rb +5 -1
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/machine_learning/get_trained_model_deployment_stats_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part_spec.rb +62 -0
- data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary_spec.rb +54 -0
- data/spec/elasticsearch/api/actions/machine_learning/reset_job_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/set_upgrade_mode_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/machine_learning/start_trained_model_deployment_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/mget_spec.rb +5 -20
- data/spec/elasticsearch/api/actions/{snapshot/get_features_spec.rb → migration/get_feature_upgrade_status_spec.rb} +3 -7
- data/spec/elasticsearch/api/actions/migration/post_feature_upgrade_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/msearch_spec.rb +16 -14
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +4 -6
- data/spec/elasticsearch/api/actions/nodes/clear_repositories_metering_archive_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/nodes/get_repositories_metering_info_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/open_point_in_time_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/put_script_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/rank_eval_spec.rb +127 -0
- data/spec/elasticsearch/api/actions/reindex_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/scroll_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/search_mvt_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/search_spec.rb +2 -40
- data/spec/elasticsearch/api/actions/search_template_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/searchable_snapshots/cache_stats_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/searchable_snapshots/clear_cache_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/searchable_snapshots/mount_spec.rb +56 -0
- data/spec/elasticsearch/api/actions/searchable_snapshots/stats_spec.rb +43 -0
- data/spec/elasticsearch/api/actions/security/clear_cached_service_tokens_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/security/create_api_key_spec.rb +79 -0
- data/spec/elasticsearch/api/actions/security/create_service_token_spec.rb +54 -0
- data/spec/elasticsearch/api/actions/security/delete_service_token_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/{benchmark_spec.rb → security/enroll_kibana_spec.rb} +6 -6
- data/spec/elasticsearch/api/actions/security/get_api_key_spec.rb +56 -0
- data/spec/elasticsearch/api/actions/{remote/info_spec.rb → security/get_builtin_privileges_spec.rb} +4 -4
- data/spec/elasticsearch/api/actions/security/get_service_accounts_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/security/get_service_credentials_spec.rb +53 -0
- data/spec/elasticsearch/api/actions/security/invalidate_api_key_spec.rb +38 -0
- data/spec/elasticsearch/api/actions/security/query_api_keys_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/security/saml_authenticate_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_complete_logout_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_invalidate_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_logout_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_prepare_authentication_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_service_provider_metadata_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/shutdown/delete_node_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/shutdown/get_node_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/shutdown/put_node_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/clone_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/repository_analize_spec.rb +2 -4
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +7 -10
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +2 -3
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +6 -7
- data/spec/elasticsearch/api/actions/sql/delete_async_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/sql/get_async_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/sql/get_async_stats_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +7 -8
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +6 -7
- data/spec/elasticsearch/api/actions/terms_enum_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +6 -7
- data/spec/elasticsearch/api/actions/update_document_spec.rb +6 -20
- data/spec/elasticsearch/api/api_response_spec.rb +64 -0
- data/spec/elasticsearch/api/api_spec.rb +0 -3
- data/spec/elasticsearch/api/client_spec.rb +0 -4
- data/spec/elasticsearch/api/rest_api_yaml_spec.rb +78 -84
- data/spec/elasticsearch/api/utils_spec.rb +5 -68
- data/spec/{rest_yaml_tests_helper.rb → rest_api_tests_helper.rb} +36 -25
- data/spec/{skipped_tests.yml → skipped_tests_free.yml} +4 -9
- data/spec/skipped_tests_platinum.yml +59 -0
- data/spec/spec_helper.rb +13 -18
- data/spec/unit_tests_platinum/test_helper.rb +72 -0
- data/spec/unit_tests_platinum/unit/async_search/delete_test.rb +39 -0
- data/spec/unit_tests_platinum/unit/async_search/get_test.rb +39 -0
- data/spec/unit_tests_platinum/unit/async_search/status_test.rb +39 -0
- data/spec/unit_tests_platinum/unit/async_search/submit_test.rb +50 -0
- data/spec/unit_tests_platinum/unit/autoscaling/delete_autoscaling_policy_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_capacity_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_policy_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/autoscaling/put_autoscaling_policy_test.rb +52 -0
- data/spec/unit_tests_platinum/unit/enrich/delete_policy_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/eql/delete_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/eql/get_status_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/eql/get_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/eql/search_test.rb +52 -0
- data/spec/unit_tests_platinum/unit/graph/explore_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/explain_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/get_status_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/move_to_step.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/remove_policy_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/retry_policy_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/start_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/stop_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/indices/create_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/data_stream_stats_test.rb +54 -0
- data/spec/unit_tests_platinum/unit/indices/delete_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/get_data_stream_test.rb +50 -0
- data/spec/unit_tests_platinum/unit/indices/migrate_to_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/modify_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/promote_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/info_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/knn_search_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/license/delete_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/license/get_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/license/post_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/logstash/delete_pipeline_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/logstash/get_pipeline_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/logstash/put_pipeline_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/machine_learning/close_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_expired_data_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_filter_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_forecast_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_model_alias_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_model_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/flush_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/forecast_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_buckets_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_categories_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_datafeed_stats_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_datafeeds_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_filters_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_influencers_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_job_stats_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_jobs_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_model_snapshots_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_overall_buckets_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_records_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/open_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/post_data_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/preview_data_frame_analytics_test.rb +64 -0
- data/spec/unit_tests_platinum/unit/machine_learning/preview_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_filter_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_trained_model_alias_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/machine_learning/revert_model_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/start_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/stop_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_data_frame_analytics_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_filter_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_model_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/upgrade_job_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/validate_detector_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/validate_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/migration/deprecations_test.rb +42 -0
- data/spec/unit_tests_platinum/unit/monitoring/bulk_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/rollup/get_rollup_index_caps_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/rollup/rollup_test.rb +58 -0
- data/spec/unit_tests_platinum/unit/security/authenticate_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/change_password_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/security/clear_api_key_cache_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/security/clear_cached_privileges_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/security/clear_cached_realms_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/clear_cached_roles_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_privileges_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_role_mapping_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_role_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/disable_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/enable_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/get_privileges_test.rb +78 -0
- data/spec/unit_tests_platinum/unit/security/get_role_mapping_test.rb +54 -0
- data/spec/unit_tests_platinum/unit/security/get_role_test.rb +62 -0
- data/spec/unit_tests_platinum/unit/security/get_token_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/get_user_privileges_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/get_user_test.rb +61 -0
- data/spec/unit_tests_platinum/unit/security/grant_api_key_test.rb +41 -0
- data/spec/unit_tests_platinum/unit/security/has_privileges_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/security/invalidate_token_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_privileges_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_role_mapping_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_role_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/ssl/certificates_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/text_structure/find_structure_test.rb +40 -0
- data/spec/{elasticsearch/api/actions/abort_benchmark_spec.rb → unit_tests_platinum/unit/transform/upgrade_transforms_spec.rb} +5 -5
- data/spec/unit_tests_platinum/unit/usage_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/watcher/ack_watch_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/watcher/activate_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/deactivate_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/delete_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/execute_watch_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/watcher/get_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/put_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/query_watches_test.rb +52 -0
- data/spec/unit_tests_platinum/unit/watcher/start_test.rb +41 -0
- data/spec/unit_tests_platinum/unit/watcher/stats_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/stop_test.rb +43 -0
- data/utils/README.md +2 -10
- data/utils/thor/generate_source.rb +18 -34
- data/utils/thor/generator/endpoint_specifics.rb +1 -27
- data/utils/thor/generator/files_helper.rb +24 -37
- data/utils/thor/templates/_body.erb +34 -0
- data/utils/thor/templates/_documentation_top.erb +1 -2
- data/utils/thor/templates/_method_setup.erb +20 -32
- data/utils/thor/templates/_perform_request.erb +15 -21
- data/utils/thor/templates/method.erb +2 -7
- metadata +637 -79
- data/lib/elasticsearch/api/actions/benchmark.rb +0 -81
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/dangling_indices/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +0 -47
- data/lib/elasticsearch/api/actions/features/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +0 -56
- data/lib/elasticsearch/api/actions/params_registry.rb +0 -58
- data/lib/elasticsearch/api/actions/shutdown/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -60
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +0 -90
- data/utils/thor/templates/_params_registry.erb +0 -31
@@ -18,13 +18,11 @@
|
|
18
18
|
require 'spec_helper'
|
19
19
|
|
20
20
|
describe Elasticsearch::API::Utils do
|
21
|
-
|
22
21
|
let(:utils) do
|
23
22
|
Class.new { include Elasticsearch::API::Utils }.new
|
24
23
|
end
|
25
24
|
|
26
25
|
describe '#__escape' do
|
27
|
-
|
28
26
|
it 'encodes Unicode characters' do
|
29
27
|
expect(utils.__escape('中文')).to eq('%E4%B8%AD%E6%96%87')
|
30
28
|
end
|
@@ -53,7 +51,6 @@ describe Elasticsearch::API::Utils do
|
|
53
51
|
end
|
54
52
|
|
55
53
|
describe '#__listify' do
|
56
|
-
|
57
54
|
it 'creates a list from a single value' do
|
58
55
|
expect(utils.__listify('foo')).to eq('foo')
|
59
56
|
end
|
@@ -75,7 +72,6 @@ describe Elasticsearch::API::Utils do
|
|
75
72
|
end
|
76
73
|
|
77
74
|
context 'when the escape option is set to false' do
|
78
|
-
|
79
75
|
it 'does not escape the characters' do
|
80
76
|
expect(utils.__listify(['foo', 'bar^bam'], :escape => false)).to eq('foo,bar^bam')
|
81
77
|
end
|
@@ -83,7 +79,6 @@ describe Elasticsearch::API::Utils do
|
|
83
79
|
end
|
84
80
|
|
85
81
|
describe '#__pathify' do
|
86
|
-
|
87
82
|
it 'creates a path from a single value' do
|
88
83
|
expect(utils.__pathify('foo')).to eq('foo')
|
89
84
|
end
|
@@ -102,9 +97,7 @@ describe Elasticsearch::API::Utils do
|
|
102
97
|
end
|
103
98
|
|
104
99
|
describe '#__bulkify' do
|
105
|
-
|
106
100
|
context 'when the input is an array of hashes' do
|
107
|
-
|
108
101
|
let(:result) do
|
109
102
|
utils.__bulkify [
|
110
103
|
{ :index => { :_index => 'myindexA', :_type => 'mytype', :_id => '1', :data => { :title => 'Test' } } },
|
@@ -192,7 +185,6 @@ describe Elasticsearch::API::Utils do
|
|
192
185
|
end
|
193
186
|
|
194
187
|
context 'when the payload has nested :data options' do
|
195
|
-
|
196
188
|
let(:data) do
|
197
189
|
{ data: { a: 'b', data: { c: 'd' } } }
|
198
190
|
end
|
@@ -226,83 +218,28 @@ describe Elasticsearch::API::Utils do
|
|
226
218
|
end
|
227
219
|
|
228
220
|
context '#__validate_and_extract_params' do
|
229
|
-
|
230
221
|
it 'listify Arrays' do
|
231
|
-
expect(utils.
|
222
|
+
expect(utils.process_params({ foo: ['a', 'b'] })).to eq(foo: 'a,b')
|
232
223
|
end
|
233
224
|
|
234
225
|
it 'does not escape the parameters' do
|
235
|
-
expect(utils.
|
226
|
+
expect(utils.process_params({ foo: ['a.*', 'b.*'] })).to eq(foo: 'a.*,b.*')
|
236
227
|
end
|
237
228
|
|
238
229
|
context 'when the params are valid' do
|
239
|
-
|
240
230
|
it 'extracts the valid params from the hash' do
|
241
|
-
expect(utils.
|
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')
|
231
|
+
expect(utils.process_params({ foo: 'qux' })).to eq(foo: 'qux')
|
294
232
|
end
|
295
233
|
end
|
296
234
|
end
|
297
235
|
|
298
236
|
describe '#__extract_parts' do
|
299
|
-
|
300
237
|
it 'extracts parts with true value from a Hash' do
|
301
|
-
expect(utils.__extract_parts({ foo: true, moo: 'blah' }
|
238
|
+
expect(utils.__extract_parts({ foo: true, moo: 'blah' })).to eq(['foo', 'blah'])
|
302
239
|
end
|
303
240
|
|
304
241
|
it 'extracts parts with string value from a Hash' do
|
305
|
-
expect(utils.__extract_parts({ foo: 'qux', moo: 'blah' }
|
242
|
+
expect(utils.__extract_parts({ foo: 'qux', moo: 'blah' })).to eq(['qux', 'blah'])
|
306
243
|
end
|
307
244
|
end
|
308
245
|
|
@@ -15,54 +15,65 @@
|
|
15
15
|
# specific language governing permissions and limitations
|
16
16
|
# under the License.
|
17
17
|
|
18
|
-
require "#{File.expand_path(File.dirname('..')
|
19
|
-
require "#{File.expand_path(File.dirname('..')
|
18
|
+
require "#{File.expand_path(File.dirname('..'))}/api-spec-testing/test_file"
|
19
|
+
require "#{File.expand_path(File.dirname('..'))}/api-spec-testing/rspec_matchers"
|
20
|
+
require "#{File.expand_path(File.dirname('..'))}/api-spec-testing/wipe_cluster"
|
20
21
|
include Elasticsearch::RestAPIYAMLTests
|
21
22
|
|
22
|
-
TRANSPORT_OPTIONS = {}
|
23
23
|
PROJECT_PATH = File.join(File.dirname(__FILE__), '..')
|
24
|
+
host = ENV['TEST_ES_SERVER'] || 'http://localhost:9200'
|
25
|
+
raise URI::InvalidURIError unless host =~ /\A#{URI::DEFAULT_PARSER.make_regexp}\z/
|
24
26
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
27
|
+
test_suite = ENV['TEST_SUITE'] || 'free'
|
28
|
+
password = ENV['ELASTIC_PASSWORD'] || 'changeme'
|
29
|
+
uri = URI.parse(host)
|
30
|
+
|
31
|
+
if test_suite == 'platinum'
|
32
|
+
raw_certificate = File.read(File.join(PROJECT_PATH, '../.ci/certs/testnode.crt'))
|
33
|
+
certificate = OpenSSL::X509::Certificate.new(raw_certificate)
|
34
|
+
raw_key = File.read(File.join(PROJECT_PATH, '../.ci/certs/testnode.key'))
|
35
|
+
key = OpenSSL::PKey::RSA.new(raw_key)
|
36
|
+
ca_file = File.expand_path(File.join(PROJECT_PATH, '/.ci/certs/ca.crt'))
|
37
|
+
host = "https://elastic:#{password}@#{uri.host}:#{uri.port}".freeze
|
38
|
+
transport_options = { ssl: { verify: false, client_cert: certificate, client_key: key, ca_file: ca_file } }
|
32
39
|
else
|
33
|
-
|
40
|
+
host = "http://elastic:#{password}@#{uri.host}:#{uri.port}".freeze
|
41
|
+
transport_options = {}
|
34
42
|
end
|
35
43
|
|
36
|
-
|
37
|
-
URL = "http://#{TEST_HOST}:#{TEST_PORT}"
|
44
|
+
ADMIN_CLIENT = Elasticsearch::Client.new(host: host, transport_options: transport_options)
|
38
45
|
|
39
|
-
|
46
|
+
DEFAULT_CLIENT = if ENV['QUIET'] == 'true'
|
47
|
+
Elasticsearch::Client.new(host: host, transport_options: transport_options)
|
48
|
+
else
|
49
|
+
Elasticsearch::Client.new(
|
50
|
+
host: host,
|
51
|
+
tracer: Logger.new($stdout),
|
52
|
+
transport_options: transport_options
|
53
|
+
)
|
54
|
+
end
|
40
55
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
DEFAULT_CLIENT = Elasticsearch::Client.new(host: URL,
|
45
|
-
transport_options: TRANSPORT_OPTIONS,
|
46
|
-
tracer: Logger.new($stdout))
|
47
|
-
end
|
56
|
+
unless ADMIN_CLIENT.ping
|
57
|
+
raise('Couldn\'t connect to Elasticsearch cluster')
|
58
|
+
exit
|
48
59
|
end
|
49
60
|
|
50
|
-
YAML_FILES_DIRECTORY = "#{PROJECT_PATH}/../tmp/rest-api-spec/test
|
61
|
+
YAML_FILES_DIRECTORY = "#{PROJECT_PATH}/../tmp/rest-api-spec/test/#{test_suite}".freeze
|
51
62
|
|
52
63
|
SINGLE_TEST = if ENV['SINGLE_TEST'] && !ENV['SINGLE_TEST'].empty?
|
53
64
|
test_target = ENV['SINGLE_TEST']
|
54
65
|
|
55
66
|
if test_target.match?(/\.yml$/)
|
56
|
-
["#{PROJECT_PATH}/../tmp/rest-api-spec/test
|
67
|
+
["#{PROJECT_PATH}/../tmp/rest-api-spec/test/#{test_suite}/#{test_target}"]
|
57
68
|
else
|
58
69
|
Dir.glob(
|
59
|
-
["#{PROJECT_PATH}/../tmp/rest-api-spec/test
|
70
|
+
["#{PROJECT_PATH}/../tmp/rest-api-spec/test/#{test_suite}/#{test_target}/*.yml"]
|
60
71
|
)
|
61
72
|
end
|
62
73
|
end
|
63
74
|
|
64
75
|
# Skipped tests
|
65
|
-
file = File.expand_path("#{__dir__}/
|
76
|
+
file = File.expand_path("#{__dir__}/skipped_tests_#{test_suite}.yml")
|
66
77
|
skipped_tests = YAML.load_file(file)
|
67
78
|
|
68
79
|
# The directory of rest api YAML files.
|
@@ -8,11 +8,6 @@
|
|
8
8
|
:file: 'create/15_without_id.yml'
|
9
9
|
:description: 'Create without ID'
|
10
10
|
|
11
|
-
# No error is raised
|
12
|
-
-
|
13
|
-
:file: 'create/15_without_id_with_types.yml'
|
14
|
-
:description: 'Create without ID'
|
15
|
-
|
16
11
|
# Error message doesn't match
|
17
12
|
-
|
18
13
|
:file: 'tasks.get/10_basic.yml'
|
@@ -20,10 +15,10 @@
|
|
20
15
|
|
21
16
|
# Figure out how to match response when there is an error
|
22
17
|
-
|
23
|
-
:file: '
|
18
|
+
:file: 'cat.templates/10_basic.yml'
|
24
19
|
:description: '*'
|
25
20
|
|
26
|
-
#
|
21
|
+
# https://github.com/elastic/elasticsearch-ruby/issues/1469
|
27
22
|
-
|
28
|
-
:file: '
|
29
|
-
:description: '
|
23
|
+
:file: 'indices.get_alias/10_basic.yml'
|
24
|
+
:description: 'Get alias against closed indices'
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# Response from Elasticsearch includes the ca.crt, so length doesn't match.
|
2
|
+
-
|
3
|
+
:file: 'ssl/10_basic.yml'
|
4
|
+
:description: 'Test get SSL certificates'
|
5
|
+
|
6
|
+
# TODO: Failing due to processing of regexp in test
|
7
|
+
-
|
8
|
+
:file: 'ml/explain_data_frame_analytics.yml'
|
9
|
+
:description: 'Test non-empty data frame given body'
|
10
|
+
|
11
|
+
# TODO https://github.com/elastic/elasticsearch-ruby/issues/852
|
12
|
+
-
|
13
|
+
:file: 'analytics/usage.yml'
|
14
|
+
:description: 'Usage stats on analytics indices'
|
15
|
+
|
16
|
+
# TODO https://github.com/elastic/elasticsearch-ruby/issues/1269
|
17
|
+
-
|
18
|
+
:file: 'searchable_snapshots/10_usage.yml'
|
19
|
+
:description: 'Tests searchable snapshots usage stats with full_copy and shared_cache indices'
|
20
|
+
|
21
|
+
# TODO https://github.com/elastic/elasticsearch-ruby/issues/1291
|
22
|
+
-
|
23
|
+
:file: 'service_accounts/10_basic.yml'
|
24
|
+
:description: 'Test service account tokens'
|
25
|
+
|
26
|
+
# TODO https://github.com/elastic/elasticsearch-ruby/issues/1340
|
27
|
+
-
|
28
|
+
:file: 'transform/transforms_start_stop.yml'
|
29
|
+
:description: '*'
|
30
|
+
-
|
31
|
+
:file: 'transform/transforms_cat_apis.yml'
|
32
|
+
:description: '*'
|
33
|
+
-
|
34
|
+
:file: 'transform/transforms_crud.yml'
|
35
|
+
:description: '*'
|
36
|
+
-
|
37
|
+
:file: 'transform/transforms_force_delete.yml'
|
38
|
+
:description: '*'
|
39
|
+
-
|
40
|
+
:file: 'transform/transforms_stats.yml'
|
41
|
+
:description: '*'
|
42
|
+
-
|
43
|
+
:file: 'transform/transforms_stats_continuous.yml'
|
44
|
+
:description: '*'
|
45
|
+
-
|
46
|
+
:file: 'transform/transforms_update.yml'
|
47
|
+
:description: '*'
|
48
|
+
-
|
49
|
+
:file: 'transform/preview_transforms.yml'
|
50
|
+
:description: 'Test preview transform by id'
|
51
|
+
|
52
|
+
-
|
53
|
+
:file: 'transform/transforms_upgrade.yml'
|
54
|
+
:description: 'Test upgrade transform'
|
55
|
+
|
56
|
+
# TODO: https://github.com/elastic/elasticsearch-ruby/issues/1539
|
57
|
+
-
|
58
|
+
:file: 'ml/categorization_agg.yml'
|
59
|
+
:description: 'Test categorization aggregation with poor settings'
|
data/spec/spec_helper.rb
CHANGED
@@ -24,25 +24,16 @@ if defined?(JRUBY_VERSION)
|
|
24
24
|
else
|
25
25
|
require 'pry-byebug'
|
26
26
|
end
|
27
|
-
require '
|
28
|
-
require 'elasticsearch'
|
29
|
-
require 'elasticsearch-api'
|
30
|
-
require 'elasticsearch-transport'
|
27
|
+
require 'yaml'
|
31
28
|
require 'jbuilder'
|
32
29
|
require 'jsonify'
|
33
|
-
require '
|
30
|
+
require 'elasticsearch'
|
31
|
+
require 'elasticsearch-api'
|
32
|
+
require 'openssl'
|
33
|
+
require 'logger'
|
34
34
|
|
35
35
|
tracer = ::Logger.new(STDERR)
|
36
|
-
tracer.formatter = lambda { |s, d, p, m| "#{m.gsub(/^.*$/) { |n| ' ' + n }
|
37
|
-
|
38
|
-
unless defined?(ELASTICSEARCH_URL)
|
39
|
-
ELASTICSEARCH_URL = ENV['ELASTICSEARCH_URL'] ||
|
40
|
-
ENV['TEST_ES_SERVER'] ||
|
41
|
-
"localhost:#{(ENV['TEST_CLUSTER_PORT'] || 9200)}"
|
42
|
-
end
|
43
|
-
|
44
|
-
DEFAULT_CLIENT = Elasticsearch::Client.new(host: ELASTICSEARCH_URL,
|
45
|
-
tracer: (tracer unless ENV['QUIET']))
|
36
|
+
tracer.formatter = lambda { |s, d, p, m| "#{m.gsub(/^.*$/) { |n| ' ' + n } }\n" }
|
46
37
|
|
47
38
|
module HelperModule
|
48
39
|
def self.included(context)
|
@@ -66,9 +57,13 @@ end
|
|
66
57
|
|
67
58
|
RSpec.configure do |config|
|
68
59
|
config.include(HelperModule)
|
69
|
-
config.
|
70
|
-
|
71
|
-
|
60
|
+
config.add_formatter('documentation')
|
61
|
+
if ENV['TEST_SUITE'] == 'platinum'
|
62
|
+
config.add_formatter('RspecJunitFormatter', 'tmp/elasticsearch-platinum-junit.xml')
|
63
|
+
else
|
64
|
+
config.add_formatter('RspecJunitFormatter', 'tmp/elasticsearch-api-junit.xml')
|
65
|
+
end
|
66
|
+
config.color_mode = :on
|
72
67
|
end
|
73
68
|
|
74
69
|
class NotFound < StandardError; end
|
@@ -0,0 +1,72 @@
|
|
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
|
+
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
19
|
+
|
20
|
+
require 'pathname'
|
21
|
+
require 'minitest/autorun'
|
22
|
+
require 'minitest/reporters'
|
23
|
+
require 'shoulda/context'
|
24
|
+
require 'mocha/minitest'
|
25
|
+
require 'ansi'
|
26
|
+
require 'elasticsearch'
|
27
|
+
require 'elasticsearch/api'
|
28
|
+
|
29
|
+
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
|
30
|
+
|
31
|
+
module Minitest
|
32
|
+
class Test
|
33
|
+
def assert_nothing_raised(*args)
|
34
|
+
begin
|
35
|
+
line = __LINE__
|
36
|
+
yield
|
37
|
+
rescue Exception => e
|
38
|
+
raise MiniTest::Assertion, "Exception raised:\n<#{e.class}>", e.backtrace
|
39
|
+
end
|
40
|
+
true
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
module Elasticsearch
|
46
|
+
module Test
|
47
|
+
class FakeClient
|
48
|
+
include Elasticsearch::API
|
49
|
+
|
50
|
+
def perform_request(method, path, params, body)
|
51
|
+
puts 'PERFORMING REQUEST:', "--> #{method.to_s.upcase} #{path} #{params} #{body}"
|
52
|
+
FakeResponse.new(200, 'FAKE', {})
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
FakeResponse = Struct.new(:status, :body, :headers) do
|
57
|
+
def status
|
58
|
+
values[0] || 200
|
59
|
+
end
|
60
|
+
|
61
|
+
def body
|
62
|
+
values[1] || '{}'
|
63
|
+
end
|
64
|
+
|
65
|
+
def headers
|
66
|
+
values[2] || {}
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
class NotFound < StandardError; end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,39 @@
|
|
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 'test_helper'
|
19
|
+
|
20
|
+
module Elasticsearch
|
21
|
+
module Test
|
22
|
+
class XPackAsyncSearchDelete < Minitest::Test
|
23
|
+
subject { FakeClient.new }
|
24
|
+
|
25
|
+
context 'XPack: Async Search Delete' do
|
26
|
+
should 'perform correct request' do
|
27
|
+
subject.expects(:perform_request).with do |method, url, params, body|
|
28
|
+
assert_equal('DELETE', method)
|
29
|
+
assert_equal('_async_search/foo', url)
|
30
|
+
assert_equal({}, params)
|
31
|
+
assert_nil(body)
|
32
|
+
end.returns(FakeResponse.new)
|
33
|
+
|
34
|
+
subject.async_search.delete(id: 'foo')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,39 @@
|
|
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 'test_helper'
|
19
|
+
|
20
|
+
module Elasticsearch
|
21
|
+
module Test
|
22
|
+
class XPackAsyncSearchGet < Minitest::Test
|
23
|
+
subject { FakeClient.new }
|
24
|
+
|
25
|
+
context 'XPack: Async Search Get' do
|
26
|
+
should 'perform correct request' do
|
27
|
+
subject.expects(:perform_request).with do |method, url, params, body|
|
28
|
+
assert_equal('GET', method)
|
29
|
+
assert_equal('_async_search/foo', url)
|
30
|
+
assert_equal({}, params)
|
31
|
+
assert_nil(body)
|
32
|
+
end.returns(FakeResponse.new)
|
33
|
+
|
34
|
+
subject.async_search.get(id: 'foo')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,39 @@
|
|
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 'test_helper'
|
19
|
+
|
20
|
+
module Elasticsearch
|
21
|
+
module Test
|
22
|
+
class XPackAsyncSearchStatus < Minitest::Test
|
23
|
+
subject { FakeClient.new }
|
24
|
+
|
25
|
+
context 'XPack: Async Search Status' do
|
26
|
+
should 'perform correct request' do
|
27
|
+
subject.expects(:perform_request).with do |method, url, params, body|
|
28
|
+
assert_equal('GET', method)
|
29
|
+
assert_equal('_async_search/status/foo', url)
|
30
|
+
assert_equal({}, params)
|
31
|
+
assert_nil(body)
|
32
|
+
end.returns(FakeResponse.new)
|
33
|
+
|
34
|
+
subject.async_search.status(id: 'foo')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,50 @@
|
|
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 'test_helper'
|
19
|
+
|
20
|
+
module Elasticsearch
|
21
|
+
module Test
|
22
|
+
class XPackAsyncSearchSubmit < Minitest::Test
|
23
|
+
subject { FakeClient.new }
|
24
|
+
|
25
|
+
context 'XPack: Async Search Submit' do
|
26
|
+
should 'perform correct request' do
|
27
|
+
subject.expects(:perform_request).with do |method, url, params, body|
|
28
|
+
assert_equal('POST', method)
|
29
|
+
assert_equal('_async_search', url)
|
30
|
+
assert_equal({}, params)
|
31
|
+
assert_nil(body)
|
32
|
+
end.returns(FakeResponse.new)
|
33
|
+
|
34
|
+
subject.async_search.submit
|
35
|
+
end
|
36
|
+
|
37
|
+
should 'perform correct request with index' do
|
38
|
+
subject.expects(:perform_request).with do |method, url, params, body|
|
39
|
+
assert_equal('POST', method)
|
40
|
+
assert_equal('foo/_async_search', url)
|
41
|
+
assert_equal({}, params)
|
42
|
+
assert_nil(body)
|
43
|
+
end.returns(FakeResponse.new)
|
44
|
+
|
45
|
+
subject.async_search.submit(index: 'foo')
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
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 'test_helper'
|
19
|
+
|
20
|
+
module Elasticsearch
|
21
|
+
module Test
|
22
|
+
class XPackAutoscalingDeleteAutoscalingPolicyTest < Minitest::Test
|
23
|
+
subject { FakeClient.new }
|
24
|
+
|
25
|
+
context 'XPack: Get Autoscaling Policy' do
|
26
|
+
should 'perform correct request' do
|
27
|
+
subject.expects(:perform_request).with do |method, url, params, body|
|
28
|
+
assert_equal('DELETE', method)
|
29
|
+
assert_equal('_autoscaling/policy/a_policy', url)
|
30
|
+
assert_equal({}, params)
|
31
|
+
assert_nil(body)
|
32
|
+
true
|
33
|
+
end.returns(FakeResponse.new)
|
34
|
+
|
35
|
+
subject.autoscaling.delete_autoscaling_policy(name: 'a_policy')
|
36
|
+
end
|
37
|
+
|
38
|
+
should 'raise argument error without name' do
|
39
|
+
assert_raises ArgumentError do
|
40
|
+
subject.autoscaling.delete_autoscaling_policy
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|