elasticsearch-dsl 0.1.6 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Gemfile +30 -8
- data/LICENSE.txt +199 -10
- data/README.md +62 -27
- data/Rakefile +29 -17
- data/elasticsearch-dsl.gemspec +40 -22
- data/lib/elasticsearch/dsl/search/aggregation.rb +21 -2
- data/lib/elasticsearch/dsl/search/aggregations/avg.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/cardinality.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/children.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/composite.rb +60 -0
- data/lib/elasticsearch/dsl/search/aggregations/date_histogram.rb +23 -5
- data/lib/elasticsearch/dsl/search/aggregations/date_range.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/extended_stats.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/filter.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/filters.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/geo_bounds.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/geo_distance.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/geohash_grid.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/global.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/histogram.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/ip_range.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/max.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/min.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/missing.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/nested.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/percentile_ranks.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/percentiles.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/avg_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_script.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_selector.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_sort.rb +106 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/cumulative_sum.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/derivative.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/extended_stats_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/max_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/min_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/moving_avg.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/percentiles_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/serial_diff.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/stats_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/sum_bucket.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/range.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/reverse_nested.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/scripted_metric.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/significant_terms.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/significant_text.rb +62 -0
- data/lib/elasticsearch/dsl/search/aggregations/stats.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/sum.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/terms.rb +17 -0
- data/lib/elasticsearch/dsl/search/aggregations/top_hits.rb +18 -1
- data/lib/elasticsearch/dsl/search/aggregations/value_count.rb +18 -1
- data/lib/elasticsearch/dsl/search/base_aggregation_component.rb +20 -1
- data/lib/elasticsearch/dsl/search/base_component.rb +30 -1
- data/lib/elasticsearch/dsl/search/base_compound_filter_component.rb +20 -1
- data/lib/elasticsearch/dsl/search/collapse.rb +95 -0
- data/lib/elasticsearch/dsl/search/filter.rb +21 -2
- data/lib/elasticsearch/dsl/search/filters/and.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/bool.rb +23 -4
- data/lib/elasticsearch/dsl/search/filters/exists.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/geo_bounding_box.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/geo_distance.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/geo_distance_range.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/geo_polygon.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/geo_shape.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/geohash_cell.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/has_child.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/has_parent.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/ids.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/indices.rb +19 -2
- data/lib/elasticsearch/dsl/search/filters/limit.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/match_all.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/missing.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/nested.rb +27 -1
- data/lib/elasticsearch/dsl/search/filters/not.rb +21 -2
- data/lib/elasticsearch/dsl/search/filters/or.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/prefix.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/query.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/range.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/regexp.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/script.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/term.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/terms.rb +18 -1
- data/lib/elasticsearch/dsl/search/filters/type.rb +18 -1
- data/lib/elasticsearch/dsl/search/highlight.rb +18 -1
- data/lib/elasticsearch/dsl/search/options.rb +20 -2
- data/lib/elasticsearch/dsl/search/queries/bool.rb +24 -7
- data/lib/elasticsearch/dsl/search/queries/boosting.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/common.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/constant_score.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/dis_max.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/exists.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/filtered.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/function_score.rb +19 -1
- data/lib/elasticsearch/dsl/search/queries/fuzzy.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/fuzzy_like_this.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/fuzzy_like_this_field.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/geo_shape.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/has_child.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/has_parent.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/ids.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/indices.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/inner_hits.rb +133 -0
- data/lib/elasticsearch/dsl/search/queries/match.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/match_all.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/match_phrase.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/match_phrase_prefix.rb +17 -0
- data/lib/elasticsearch/dsl/search/queries/more_like_this.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/multi_match.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/nested.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/prefix.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/query_string.rb +20 -4
- data/lib/elasticsearch/dsl/search/queries/range.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/regexp.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/simple_query_string.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/span_first.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/span_multi.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/span_near.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/span_not.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/span_or.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/span_term.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/template.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/term.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/terms.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/top_children.rb +18 -1
- data/lib/elasticsearch/dsl/search/queries/wildcard.rb +18 -1
- data/lib/elasticsearch/dsl/search/query.rb +21 -2
- data/lib/elasticsearch/dsl/search/sort.rb +18 -1
- data/lib/elasticsearch/dsl/search/suggest.rb +18 -1
- data/lib/elasticsearch/dsl/search.rb +46 -4
- data/lib/elasticsearch/dsl/utils.rb +17 -0
- data/lib/elasticsearch/dsl/version.rb +18 -1
- data/lib/elasticsearch/dsl.rb +19 -1
- data/lib/elasticsearch-dsl.rb +17 -0
- data/spec/elasticsearch/dsl/search/aggregations/avg_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/cardinality_spec.rb +110 -0
- data/spec/elasticsearch/dsl/search/aggregations/children_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/aggregations/composite_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/date_histogram_spec.rb +182 -0
- data/spec/elasticsearch/dsl/search/aggregations/date_range_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/aggregations/extended_stats_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/filter_spec.rb +48 -0
- data/spec/elasticsearch/dsl/search/aggregations/filters_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/aggregations/geo_bounds_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/aggregations/geo_distance_spec.rb +113 -0
- data/spec/elasticsearch/dsl/search/aggregations/geo_grid_spec.rb +100 -0
- data/spec/elasticsearch/dsl/search/aggregations/global_spec.rb +62 -0
- data/spec/elasticsearch/dsl/search/aggregations/historgram_spec.rb +122 -0
- data/spec/elasticsearch/dsl/search/aggregations/ip_range_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/aggregations/max_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/min_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/missing_spec.rb +81 -0
- data/spec/elasticsearch/dsl/search/aggregations/nested_spec.rb +86 -0
- data/spec/elasticsearch/dsl/search/aggregations/percentile_ranks_spec.rb +126 -0
- data/spec/elasticsearch/dsl/search/aggregations/percentiles_spec.rb +125 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/avg_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_script_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_selector_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_sort_spec.rb +104 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/cumulative_sum_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/derivative_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/extended_stats_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/max_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/min_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/moving_avg_test_spec.rb +132 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/percentiles_bucket_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/serial_diff_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/stats_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/sum_bucket_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/range_spec.rb +119 -0
- data/spec/elasticsearch/dsl/search/aggregations/reverse_nested_spec.rb +32 -0
- data/spec/elasticsearch/dsl/search/aggregations/scripted_metric_spec.rb +121 -0
- data/spec/elasticsearch/dsl/search/aggregations/significant_terms_spec.rb +176 -0
- data/spec/elasticsearch/dsl/search/aggregations/significant_text_spec.rb +176 -0
- data/spec/elasticsearch/dsl/search/aggregations/stats_spec.rb +56 -0
- data/spec/elasticsearch/dsl/search/aggregations/sum_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/aggregations/terms_spec.rb +165 -0
- data/spec/elasticsearch/dsl/search/aggregations/top_hits_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/aggregations/value_count_spec.rb +43 -0
- data/spec/elasticsearch/dsl/search/collapse_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/filters/and_spec.rb +74 -0
- data/spec/elasticsearch/dsl/search/filters/bool_spec.rb +213 -0
- data/spec/elasticsearch/dsl/search/filters/exists_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/geo_bounding_box_spec.rb +144 -0
- data/spec/elasticsearch/dsl/search/filters/geo_distance_range_spec.rb +103 -0
- data/spec/elasticsearch/dsl/search/filters/geo_distance_spec.rb +126 -0
- data/spec/elasticsearch/dsl/search/filters/geo_polygon_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/geo_shape_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/filters/geohash_cell_spec.rb +99 -0
- data/spec/elasticsearch/dsl/search/filters/has_child_spec.rb +139 -0
- data/spec/elasticsearch/dsl/search/filters/has_parent_spec.rb +128 -0
- data/spec/elasticsearch/dsl/search/filters/ids_spec.rb +78 -0
- data/spec/elasticsearch/dsl/search/filters/indices_spec.rb +109 -0
- data/spec/elasticsearch/dsl/search/filters/limit_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/match_all_spec.rb +32 -0
- data/spec/elasticsearch/dsl/search/filters/missing_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/filters/nested_spec.rb +91 -0
- data/spec/elasticsearch/dsl/search/filters/not_spec.rb +59 -0
- data/spec/elasticsearch/dsl/search/filters/or_spec.rb +75 -0
- data/spec/elasticsearch/dsl/search/filters/prefix_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/filters/query_spec.rb +59 -0
- data/spec/elasticsearch/dsl/search/filters/range_spec.rb +111 -0
- data/spec/elasticsearch/dsl/search/filters/regexp_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/filters/script_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/filters/term_spec.rb +57 -0
- data/spec/elasticsearch/dsl/search/filters/terms_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/filters/type_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/queries/bool_spec.rb +267 -0
- data/spec/elasticsearch/dsl/search/queries/boosting_spec.rb +90 -0
- data/spec/elasticsearch/dsl/search/queries/common_spec.rb +132 -0
- data/spec/elasticsearch/dsl/search/queries/constant_score_spec.rb +90 -0
- data/spec/elasticsearch/dsl/search/queries/dis_max_spec.rb +88 -0
- data/spec/elasticsearch/dsl/search/queries/exists_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/queries/filtered_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/queries/function_score_spec.rb +175 -0
- data/spec/elasticsearch/dsl/search/queries/fuzzy_like_this_field_spec.rb +132 -0
- data/spec/elasticsearch/dsl/search/queries/fuzzy_like_this_spec.rb +134 -0
- data/spec/elasticsearch/dsl/search/queries/fuzzy_spec.rb +110 -0
- data/spec/elasticsearch/dsl/search/queries/geo_shape_spec.rb +77 -0
- data/spec/elasticsearch/dsl/search/queries/has_child_spec.rb +126 -0
- data/spec/elasticsearch/dsl/search/queries/has_parent_spec.rb +100 -0
- data/spec/elasticsearch/dsl/search/queries/ids_spec.rb +78 -0
- data/spec/elasticsearch/dsl/search/queries/indices_spec.rb +89 -0
- data/spec/elasticsearch/dsl/search/queries/inner_hits_spec.rb +144 -0
- data/spec/elasticsearch/dsl/search/queries/match_all_spec.rb +66 -0
- data/spec/elasticsearch/dsl/search/queries/match_phrase_prefix_spec.rb +103 -0
- data/spec/elasticsearch/dsl/search/queries/match_phrase_spec.rb +114 -0
- data/spec/elasticsearch/dsl/search/queries/match_spec.rb +107 -0
- data/spec/elasticsearch/dsl/search/queries/more_like_this_spec.rb +87 -0
- data/spec/elasticsearch/dsl/search/queries/multi_match_spec.rb +74 -0
- data/spec/elasticsearch/dsl/search/queries/nested_spec.rb +98 -0
- data/spec/elasticsearch/dsl/search/queries/prefix_spec.rb +70 -0
- data/spec/elasticsearch/dsl/search/queries/query_string_spec.rb +85 -0
- data/spec/elasticsearch/dsl/search/queries/range_spec.rb +78 -0
- data/spec/elasticsearch/dsl/search/queries/regexp_spec.rb +82 -0
- data/spec/elasticsearch/dsl/search/queries/simple_query_string_spec.rb +74 -0
- data/spec/elasticsearch/dsl/search/queries/span_first_spec.rb +69 -0
- data/spec/elasticsearch/dsl/search/queries/span_multi_spec.rb +69 -0
- data/spec/elasticsearch/dsl/search/queries/span_near_spec.rb +72 -0
- data/spec/elasticsearch/dsl/search/queries/span_not_spec.rb +73 -0
- data/spec/elasticsearch/dsl/search/queries/span_or_spec.rb +69 -0
- data/spec/elasticsearch/dsl/search/queries/span_term_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/queries/template_spec.rb +84 -0
- data/spec/elasticsearch/dsl/search/queries/term_spec.rb +57 -0
- data/spec/elasticsearch/dsl/search/queries/terms_spec.rb +46 -0
- data/spec/elasticsearch/dsl/search/queries/top_children_spec.rb +93 -0
- data/spec/elasticsearch/dsl/search/queries/wildcard_spec.rb +81 -0
- data/spec/elasticsearch/dsl/search_spec.rb +385 -0
- data/spec/spec_helper.rb +24 -0
- data/test/integration/search_aggregation_children_test.rb +44 -37
- data/test/integration/search_aggregation_geo_test.rb +27 -16
- data/test/integration/search_aggregation_nested_test.rb +32 -20
- data/test/integration/search_aggregations_test.rb +28 -13
- data/test/integration/search_filters_test.rb +33 -22
- data/test/integration/search_options_test.rb +20 -3
- data/test/integration/search_query_test.rb +24 -11
- data/test/integration/search_size_from_test.rb +22 -5
- data/test/integration/search_sort_test.rb +20 -7
- data/test/integration/search_suggest_test.rb +30 -19
- data/test/integration/search_test.rb +21 -8
- data/test/test_helper.rb +30 -23
- data/test/unit/dsl_test.rb +17 -0
- data/test/unit/search_aggregation_test.rb +17 -0
- data/test/unit/search_base_aggregation_component_test.rb +17 -0
- data/test/unit/search_base_component_test.rb +17 -0
- data/test/unit/search_filter_test.rb +17 -0
- data/test/unit/search_highlight_test.rb +17 -0
- data/test/unit/search_options_test.rb +25 -0
- data/test/unit/search_query_test.rb +17 -0
- data/test/unit/search_size_from_test.rb +17 -0
- data/test/unit/search_sort_test.rb +17 -0
- data/test/unit/search_suggest_test.rb +17 -0
- data/test/unit/search_test.rb +24 -0
- data/test/unit/utils_test.rb +17 -0
- metadata +278 -270
- data/test/unit/aggregations/avg_test.rb +0 -24
- data/test/unit/aggregations/cardinality_test.rb +0 -40
- data/test/unit/aggregations/children_test.rb +0 -36
- data/test/unit/aggregations/date_histogram_test.rb +0 -49
- data/test/unit/aggregations/date_range_test.rb +0 -42
- data/test/unit/aggregations/extended_stats_test.rb +0 -24
- data/test/unit/aggregations/filter_test.rb +0 -31
- data/test/unit/aggregations/filters_test.rb +0 -52
- data/test/unit/aggregations/geo_bounds_test.rb +0 -37
- data/test/unit/aggregations/geo_distance_test.rb +0 -45
- data/test/unit/aggregations/geohash_grid_test.rb +0 -40
- data/test/unit/aggregations/global_test.rb +0 -38
- data/test/unit/aggregations/histogram_test.rb +0 -42
- data/test/unit/aggregations/ip_range_test.rb +0 -41
- data/test/unit/aggregations/max_test.rb +0 -24
- data/test/unit/aggregations/min_test.rb +0 -24
- data/test/unit/aggregations/missing_test.rb +0 -39
- data/test/unit/aggregations/nested_test.rb +0 -48
- data/test/unit/aggregations/percentile_ranks_test.rb +0 -41
- data/test/unit/aggregations/percentiles_test.rb +0 -40
- data/test/unit/aggregations/pipeline/avg_bucket_test.rb +0 -39
- data/test/unit/aggregations/pipeline/bucket_script_test.rb +0 -39
- data/test/unit/aggregations/pipeline/bucket_selector_test.rb +0 -38
- data/test/unit/aggregations/pipeline/cumulative_sum_test.rb +0 -37
- data/test/unit/aggregations/pipeline/derivative_test.rb +0 -39
- data/test/unit/aggregations/pipeline/extended_stats_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/max_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/min_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/moving_avg_test.rb +0 -41
- data/test/unit/aggregations/pipeline/percentiles_bucket_test.rb +0 -39
- data/test/unit/aggregations/pipeline/serial_diff_test.rb +0 -39
- data/test/unit/aggregations/pipeline/stats_bucket_test.rb +0 -38
- data/test/unit/aggregations/pipeline/sum_bucket_test.rb +0 -38
- data/test/unit/aggregations/range_test.rb +0 -59
- data/test/unit/aggregations/reverse_nested_test.rb +0 -20
- data/test/unit/aggregations/scripted_metric_test.rb +0 -41
- data/test/unit/aggregations/significant_terms_test.rb +0 -46
- data/test/unit/aggregations/stats_test.rb +0 -32
- data/test/unit/aggregations/sum_test.rb +0 -24
- data/test/unit/aggregations/terms_test.rb +0 -51
- data/test/unit/aggregations/top_hits_test.rb +0 -38
- data/test/unit/aggregations/value_count_test.rb +0 -24
- data/test/unit/filters/and_test.rb +0 -69
- data/test/unit/filters/bool_test.rb +0 -98
- data/test/unit/filters/exists_test.rb +0 -36
- data/test/unit/filters/geo_bounding_box_test.rb +0 -45
- data/test/unit/filters/geo_distance_range_test.rb +0 -51
- data/test/unit/filters/geo_distance_test.rb +0 -58
- data/test/unit/filters/geo_polygon_test.rb +0 -36
- data/test/unit/filters/geo_shape_test.rb +0 -37
- data/test/unit/filters/geohash_cell_test.rb +0 -43
- data/test/unit/filters/has_child_test.rb +0 -54
- data/test/unit/filters/has_parent_test.rb +0 -54
- data/test/unit/filters/ids_test.rb +0 -38
- data/test/unit/filters/indices_test.rb +0 -52
- data/test/unit/filters/limit_test.rb +0 -36
- data/test/unit/filters/match_all_test.rb +0 -20
- data/test/unit/filters/missing_test.rb +0 -38
- data/test/unit/filters/nested_test.rb +0 -40
- data/test/unit/filters/not_test.rb +0 -35
- data/test/unit/filters/or_test.rb +0 -53
- data/test/unit/filters/prefix_test.rb +0 -25
- data/test/unit/filters/query_test.rb +0 -33
- data/test/unit/filters/range_test.rb +0 -48
- data/test/unit/filters/regexp_test.rb +0 -42
- data/test/unit/filters/script_test.rb +0 -38
- data/test/unit/filters/term_test.rb +0 -27
- data/test/unit/filters/terms_test.rb +0 -24
- data/test/unit/filters/type_test.rb +0 -36
- data/test/unit/queries/bool_test.rb +0 -147
- data/test/unit/queries/boosting_test.rb +0 -41
- data/test/unit/queries/common_test.rb +0 -42
- data/test/unit/queries/constant_score_test.rb +0 -47
- data/test/unit/queries/dis_max_test.rb +0 -38
- data/test/unit/queries/exists_test.rb +0 -36
- data/test/unit/queries/filtered_test.rb +0 -51
- data/test/unit/queries/function_score_test.rb +0 -70
- data/test/unit/queries/fuzzy_like_this_field_test.rb +0 -42
- data/test/unit/queries/fuzzy_like_this_test.rb +0 -44
- data/test/unit/queries/fuzzy_test.rb +0 -40
- data/test/unit/queries/geo_shape_test.rb +0 -37
- data/test/unit/queries/has_child_test.rb +0 -55
- data/test/unit/queries/has_parent_test.rb +0 -41
- data/test/unit/queries/ids_test.rb +0 -38
- data/test/unit/queries/indices_test.rb +0 -39
- data/test/unit/queries/match_all_test.rb +0 -36
- data/test/unit/queries/match_phrase_prefix_test.rb +0 -62
- data/test/unit/queries/match_phrase_test.rb +0 -63
- data/test/unit/queries/match_test.rb +0 -65
- data/test/unit/queries/more_like_this_test.rb +0 -53
- data/test/unit/queries/multi_match_test.rb +0 -42
- data/test/unit/queries/nested_test.rb +0 -52
- data/test/unit/queries/prefix_test.rb +0 -37
- data/test/unit/queries/query_string_test.rb +0 -56
- data/test/unit/queries/range_test.rb +0 -41
- data/test/unit/queries/regexp_test.rb +0 -43
- data/test/unit/queries/simple_query_string_test.rb +0 -41
- data/test/unit/queries/span_first_test.rb +0 -36
- data/test/unit/queries/span_multi_test.rb +0 -36
- data/test/unit/queries/span_near_test.rb +0 -39
- data/test/unit/queries/span_not_test.rb +0 -40
- data/test/unit/queries/span_or_test.rb +0 -36
- data/test/unit/queries/span_term_test.rb +0 -24
- data/test/unit/queries/template_test.rb +0 -43
- data/test/unit/queries/term_test.rb +0 -27
- data/test/unit/queries/terms_test.rb +0 -24
- data/test/unit/queries/top_children_test.rb +0 -53
- data/test/unit/queries/wildcard_test.rb +0 -43
@@ -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 DSL
|
3
20
|
module Search
|
@@ -8,7 +25,7 @@ module Elasticsearch
|
|
8
25
|
|
9
26
|
# Wraps the `query` part of a search definition
|
10
27
|
#
|
11
|
-
# @see
|
28
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
|
12
29
|
#
|
13
30
|
class Query
|
14
31
|
def initialize(*args, &block)
|
@@ -23,8 +40,10 @@ module Elasticsearch
|
|
23
40
|
klass = Utils.__camelize(name)
|
24
41
|
if Queries.const_defined? klass
|
25
42
|
@value = Queries.const_get(klass).new *args, &block
|
43
|
+
elsif @block
|
44
|
+
@block.binding.eval('self').send(name, *args, &block)
|
26
45
|
else
|
27
|
-
|
46
|
+
super
|
28
47
|
end
|
29
48
|
end
|
30
49
|
|
@@ -1,10 +1,27 @@
|
|
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 DSL
|
3
20
|
module Search
|
4
21
|
|
5
22
|
# Wraps the `sort` part of a search definition
|
6
23
|
#
|
7
|
-
# @see
|
24
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-sort.html
|
8
25
|
#
|
9
26
|
class Sort
|
10
27
|
include BaseComponent
|
@@ -1,10 +1,27 @@
|
|
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 DSL
|
3
20
|
module Search
|
4
21
|
|
5
22
|
# Wraps the `suggest` part of a search definition
|
6
23
|
#
|
7
|
-
# @see
|
24
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters.html
|
8
25
|
#
|
9
26
|
class Suggest
|
10
27
|
include BaseComponent
|
@@ -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 DSL
|
3
20
|
|
@@ -15,16 +32,18 @@ module Elasticsearch
|
|
15
32
|
# match title: 'test'
|
16
33
|
# end
|
17
34
|
# end
|
35
|
+
# definition.to_hash
|
36
|
+
# => {:query=>{:match=>{:title=>"test"}}}
|
18
37
|
#
|
19
38
|
# @example Using the class imperatively
|
20
39
|
#
|
21
40
|
# definition = Search.new
|
22
|
-
# query =
|
41
|
+
# query = Queries::Match.new title: 'test'
|
23
42
|
# definition.query query
|
24
43
|
# definition.to_hash
|
25
|
-
# # =>
|
44
|
+
# # => {:query=>{:match=>{:title=>"test"}}}
|
26
45
|
#
|
27
|
-
# @see
|
46
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search.html
|
28
47
|
#
|
29
48
|
def search(*args, &block)
|
30
49
|
Search.new(*args, &block)
|
@@ -39,7 +58,8 @@ module Elasticsearch
|
|
39
58
|
|
40
59
|
def initialize(*args, &block)
|
41
60
|
@options = Options.new *args
|
42
|
-
block
|
61
|
+
@block = block
|
62
|
+
@block.arity < 1 ? self.instance_eval(&@block) : @block.call(self) if @block
|
43
63
|
end
|
44
64
|
|
45
65
|
# DSL method for building or accessing the `query` part of a search definition
|
@@ -146,6 +166,19 @@ module Elasticsearch
|
|
146
166
|
end
|
147
167
|
end
|
148
168
|
|
169
|
+
# DSL method for building the `collapse` part of a search definition
|
170
|
+
#
|
171
|
+
# @return [self, Collapse]
|
172
|
+
#
|
173
|
+
def collapse(*args, &block)
|
174
|
+
if !args.empty? || block
|
175
|
+
@collapse = Collapse.new(*args, &block)
|
176
|
+
self
|
177
|
+
else
|
178
|
+
@collapse
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
149
182
|
# DSL method for building the `sort` part of a search definition
|
150
183
|
#
|
151
184
|
# @return [self]
|
@@ -159,6 +192,12 @@ module Elasticsearch
|
|
159
192
|
end
|
160
193
|
end
|
161
194
|
|
195
|
+
# Set the sort part of a search definition
|
196
|
+
#
|
197
|
+
def sort=(value)
|
198
|
+
@sort = value
|
199
|
+
end
|
200
|
+
|
162
201
|
# DSL method for building the `stored_fields` part of a search definition
|
163
202
|
#
|
164
203
|
# @return [self]
|
@@ -225,6 +264,8 @@ module Elasticsearch
|
|
225
264
|
if @options.respond_to? name
|
226
265
|
@options.__send__ name, *args, &block
|
227
266
|
self
|
267
|
+
elsif @block
|
268
|
+
@block.binding.eval('self').send(name, *args, &block)
|
228
269
|
else
|
229
270
|
super
|
230
271
|
end
|
@@ -246,6 +287,7 @@ module Elasticsearch
|
|
246
287
|
hash.update(from: @from) if @from
|
247
288
|
hash.update(suggest: @suggest.reduce({}) { |sum,item| sum.update item.last.to_hash }) if @suggest
|
248
289
|
hash.update(highlight: @highlight.to_hash) if @highlight
|
290
|
+
hash.update(collapse: @collapse.to_hash) if @collapse
|
249
291
|
hash.update(@options) unless @options.empty?
|
250
292
|
hash
|
251
293
|
end
|
@@ -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 DSL
|
3
20
|
|
@@ -1,5 +1,22 @@
|
|
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 DSL
|
3
|
-
VERSION = "0.1.
|
20
|
+
VERSION = "0.1.10"
|
4
21
|
end
|
5
22
|
end
|
data/lib/elasticsearch/dsl.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 'elasticsearch/dsl/version'
|
2
19
|
|
3
20
|
require 'elasticsearch/dsl/utils'
|
@@ -5,6 +22,7 @@ require 'elasticsearch/dsl/search/base_component'
|
|
5
22
|
require 'elasticsearch/dsl/search/base_compound_filter_component'
|
6
23
|
require 'elasticsearch/dsl/search/base_aggregation_component'
|
7
24
|
require 'elasticsearch/dsl/search/query'
|
25
|
+
require 'elasticsearch/dsl/search/collapse'
|
8
26
|
require 'elasticsearch/dsl/search/filter'
|
9
27
|
require 'elasticsearch/dsl/search/aggregation'
|
10
28
|
require 'elasticsearch/dsl/search/highlight'
|
@@ -37,7 +55,7 @@ module Elasticsearch
|
|
37
55
|
# # => { query: { match: { title: "test"} } }
|
38
56
|
#
|
39
57
|
# @see Search
|
40
|
-
# @see
|
58
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/guide/current/query-dsl-intro.html
|
41
59
|
#
|
42
60
|
module DSL
|
43
61
|
def self.included(base)
|
data/lib/elasticsearch-dsl.rb
CHANGED
@@ -1 +1,18 @@
|
|
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 'elasticsearch/dsl'
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe Elasticsearch::DSL::Search::Aggregations::Avg do
|
21
|
+
|
22
|
+
let(:search) do
|
23
|
+
described_class.new
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#to_hash' do
|
27
|
+
|
28
|
+
it 'can be converted to a hash' do
|
29
|
+
expect(search.to_hash).to eq(avg: {})
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context '#initialize' do
|
34
|
+
|
35
|
+
let(:search) do
|
36
|
+
described_class.new(foo: 'bar')
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'takes a hash' do
|
40
|
+
expect(search.to_hash).to eq(avg: { foo: 'bar' })
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe Elasticsearch::DSL::Search::Aggregations::Cardinality do
|
21
|
+
|
22
|
+
let(:search) do
|
23
|
+
described_class.new
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#to_hash' do
|
27
|
+
|
28
|
+
it 'can be converted to a hash' do
|
29
|
+
expect(search.to_hash).to eq(cardinality: {})
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'when options methods are called' do
|
34
|
+
|
35
|
+
let(:search) do
|
36
|
+
described_class.new(:foo)
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#field' do
|
40
|
+
|
41
|
+
before do
|
42
|
+
search.field('bar')
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'applies the option' do
|
46
|
+
expect(search.to_hash[:cardinality][:foo][:field]).to eq('bar')
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe '#precision_threshold' do
|
51
|
+
|
52
|
+
before do
|
53
|
+
search.precision_threshold('bar')
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'applies the option' do
|
57
|
+
expect(search.to_hash[:cardinality][:foo][:precision_threshold]).to eq('bar')
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
describe '#rehash' do
|
62
|
+
|
63
|
+
before do
|
64
|
+
search.rehash('skip')
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'applies the option' do
|
68
|
+
expect(search.to_hash[:cardinality][:foo][:rehash]).to eq('skip')
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe '#script' do
|
73
|
+
|
74
|
+
before do
|
75
|
+
search.script('bar')
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'applies the option' do
|
79
|
+
expect(search.to_hash[:cardinality][:foo][:script]).to eq('bar')
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe '#params' do
|
84
|
+
|
85
|
+
before do
|
86
|
+
search.params('bar')
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'applies the option' do
|
90
|
+
expect(search.to_hash[:cardinality][:foo][:params]).to eq('bar')
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
describe '#initialize' do
|
96
|
+
|
97
|
+
context 'when a block is provided' do
|
98
|
+
|
99
|
+
let(:search) do
|
100
|
+
described_class.new(:foo) do
|
101
|
+
field 'bar'
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
it 'executes the block' do
|
106
|
+
expect(search.to_hash).to eq({ cardinality: { foo: { field: 'bar' } } })
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe Elasticsearch::DSL::Search::Aggregations::Children do
|
21
|
+
|
22
|
+
let(:search) do
|
23
|
+
described_class.new
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#to_hash' do
|
27
|
+
|
28
|
+
it 'can be converted to a hash' do
|
29
|
+
expect(search.to_hash).to eq(children: {})
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'when options methods are called' do
|
34
|
+
|
35
|
+
let(:search) do
|
36
|
+
described_class.new(:foo)
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#type' do
|
40
|
+
|
41
|
+
before do
|
42
|
+
search.type('bar')
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'applies the option' do
|
46
|
+
expect(search.to_hash[:children][:foo][:type]).to eq('bar')
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe '#initialize' do
|
52
|
+
|
53
|
+
context 'when a block is provided' do
|
54
|
+
|
55
|
+
let(:search) do
|
56
|
+
described_class.new(:foo) do
|
57
|
+
type 'bar'
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'executes the block' do
|
62
|
+
expect(search.to_hash).to eq({ children: { foo: { type: 'bar' } } })
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe Elasticsearch::DSL::Search::Aggregations::Composite do
|
21
|
+
|
22
|
+
let(:search) do
|
23
|
+
described_class.new
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#to_hash' do
|
27
|
+
|
28
|
+
it 'can be converted to a hash' do
|
29
|
+
expect(search.to_hash).to eq(composite: {})
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'when options methods are called' do
|
34
|
+
|
35
|
+
let(:search) do
|
36
|
+
described_class.new(:foo)
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#size' do
|
40
|
+
|
41
|
+
before do
|
42
|
+
search.size(2_000)
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'applies the option' do
|
46
|
+
expect(search.to_hash[:composite][:foo][:size]).to eq(2_000)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe '#sources' do
|
51
|
+
|
52
|
+
before do
|
53
|
+
search.sources('bar')
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'applies the option' do
|
57
|
+
expect(search.to_hash[:composite][:foo][:sources]).to eq('bar')
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
describe '#after' do
|
62
|
+
context 'when after is not given' do
|
63
|
+
before do
|
64
|
+
search.size(2_000)
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'applies the option' do
|
68
|
+
expect(search.to_hash[:composite][:foo].keys).not_to include(:after)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
context 'when after is given' do
|
73
|
+
before do
|
74
|
+
search.after('fake_after_key')
|
75
|
+
end
|
76
|
+
|
77
|
+
it 'applies the option' do
|
78
|
+
expect(search.to_hash[:composite][:foo][:after]).to eq('fake_after_key')
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe '#initialize' do
|
85
|
+
|
86
|
+
context 'when a block is provided' do
|
87
|
+
|
88
|
+
let(:search) do
|
89
|
+
described_class.new(:foo) do
|
90
|
+
size 2_000
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
it 'executes the block' do
|
95
|
+
expect(search.to_hash).to eq({ composite: { foo: { size: 2_000 } } })
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|