elasticsearch-dsl 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +27 -14
- data/README.md +3 -4
- data/Rakefile +16 -19
- data/elasticsearch-dsl.gemspec +39 -25
- data/lib/elasticsearch-dsl.rb +16 -3
- data/lib/elasticsearch/dsl.rb +16 -3
- data/lib/elasticsearch/dsl/search.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregation.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/avg.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/cardinality.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/children.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/composite.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/date_histogram.rb +21 -7
- data/lib/elasticsearch/dsl/search/aggregations/date_range.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/extended_stats.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/filter.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/filters.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/geo_bounds.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/geo_distance.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/geohash_grid.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/global.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/histogram.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/ip_range.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/max.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/min.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/missing.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/nested.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/percentile_ranks.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/percentiles.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/avg_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_script.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_selector.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/bucket_sort.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/cumulative_sum.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/derivative.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/extended_stats_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/max_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/min_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/moving_avg.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/percentiles_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/serial_diff.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/stats_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/pipeline/sum_bucket.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/range.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/reverse_nested.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/scripted_metric.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/significant_terms.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/significant_text.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/stats.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/sum.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/terms.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/top_hits.rb +16 -3
- data/lib/elasticsearch/dsl/search/aggregations/value_count.rb +16 -3
- data/lib/elasticsearch/dsl/search/base_aggregation_component.rb +16 -3
- data/lib/elasticsearch/dsl/search/base_component.rb +16 -3
- data/lib/elasticsearch/dsl/search/base_compound_filter_component.rb +16 -3
- data/lib/elasticsearch/dsl/search/collapse.rb +16 -3
- data/lib/elasticsearch/dsl/search/filter.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/and.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/bool.rb +18 -3
- data/lib/elasticsearch/dsl/search/filters/exists.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/geo_bounding_box.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/geo_distance.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/geo_distance_range.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/geo_polygon.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/geo_shape.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/geohash_cell.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/has_child.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/has_parent.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/ids.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/indices.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/limit.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/match_all.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/missing.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/nested.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/not.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/or.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/prefix.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/query.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/range.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/regexp.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/script.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/term.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/terms.rb +16 -3
- data/lib/elasticsearch/dsl/search/filters/type.rb +16 -3
- data/lib/elasticsearch/dsl/search/highlight.rb +16 -3
- data/lib/elasticsearch/dsl/search/options.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/bool.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/boosting.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/common.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/constant_score.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/dis_max.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/exists.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/filtered.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/function_score.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/fuzzy.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/fuzzy_like_this.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/fuzzy_like_this_field.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/geo_shape.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/has_child.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/has_parent.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/ids.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/indices.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/inner_hits.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/match.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/match_all.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/match_phrase.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/match_phrase_prefix.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/more_like_this.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/multi_match.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/nested.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/prefix.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/query_string.rb +17 -6
- data/lib/elasticsearch/dsl/search/queries/range.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/regexp.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/simple_query_string.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/span_first.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/span_multi.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/span_near.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/span_not.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/span_or.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/span_term.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/template.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/term.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/terms.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/top_children.rb +16 -3
- data/lib/elasticsearch/dsl/search/queries/wildcard.rb +16 -3
- data/lib/elasticsearch/dsl/search/query.rb +16 -3
- data/lib/elasticsearch/dsl/search/sort.rb +16 -3
- data/lib/elasticsearch/dsl/search/suggest.rb +16 -3
- data/lib/elasticsearch/dsl/utils.rb +16 -3
- data/lib/elasticsearch/dsl/version.rb +17 -4
- data/spec/elasticsearch/dsl/search/aggregations/avg_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/cardinality_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/children_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/composite_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/date_histogram_spec.rb +30 -24
- data/spec/elasticsearch/dsl/search/aggregations/date_range_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/extended_stats_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/filter_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/filters_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/geo_bounds_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/geo_distance_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/geo_grid_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/global_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/historgram_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/ip_range_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/max_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/min_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/missing_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/nested_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/percentile_ranks_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/percentiles_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/avg_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_script_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_selector_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/bucket_sort_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/cumulative_sum_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/derivative_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/extended_stats_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/max_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/min_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/moving_avg_test_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/percentiles_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/serial_diff_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/stats_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/pipeline/sum_bucket_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/range_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/reverse_nested_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/scripted_metric_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/significant_terms_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/significant_text_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/stats_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/sum_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/terms_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/top_hits_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/aggregations/value_count_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/collapse_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/and_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/bool_spec.rb +30 -3
- data/spec/elasticsearch/dsl/search/filters/exists_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/geo_bounding_box_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/geo_distance_range_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/geo_distance_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/geo_polygon_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/geo_shape_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/geohash_cell_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/has_child_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/has_parent_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/ids_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/indices_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/limit_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/match_all_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/missing_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/nested_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/not_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/or_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/prefix_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/query_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/range_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/regexp_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/script_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/term_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/terms_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/filters/type_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/bool_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/boosting_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/common_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/constant_score_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/dis_max_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/exists_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/filtered_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/function_score_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/fuzzy_like_this_field_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/fuzzy_like_this_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/fuzzy_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/geo_shape_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/has_child_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/has_parent_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/ids_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/indices_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/inner_hits_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/match_all_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/match_phrase_prefix_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/match_phrase_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/match_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/more_like_this_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/multi_match_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/nested_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/prefix_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/query_string_spec.rb +21 -12
- data/spec/elasticsearch/dsl/search/queries/range_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/regexp_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/simple_query_string_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/span_first_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/span_multi_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/span_near_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/span_not_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/span_or_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/span_term_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/template_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/term_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/terms_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/top_children_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search/queries/wildcard_spec.rb +16 -3
- data/spec/elasticsearch/dsl/search_spec.rb +16 -3
- data/spec/spec_helper.rb +16 -3
- data/test/integration/search_aggregation_children_test.rb +16 -7
- data/test/integration/search_aggregation_geo_test.rb +16 -7
- data/test/integration/search_aggregation_nested_test.rb +16 -7
- data/test/integration/search_aggregations_test.rb +16 -3
- data/test/integration/search_filters_test.rb +16 -7
- data/test/integration/search_options_test.rb +16 -3
- data/test/integration/search_query_test.rb +16 -7
- data/test/integration/search_size_from_test.rb +16 -3
- data/test/integration/search_sort_test.rb +16 -7
- data/test/integration/search_suggest_test.rb +16 -7
- data/test/integration/search_test.rb +16 -7
- data/test/test_helper.rb +21 -26
- data/test/unit/dsl_test.rb +16 -3
- data/test/unit/search_aggregation_test.rb +16 -3
- data/test/unit/search_base_aggregation_component_test.rb +16 -3
- data/test/unit/search_base_component_test.rb +16 -3
- data/test/unit/search_filter_test.rb +16 -3
- data/test/unit/search_highlight_test.rb +16 -3
- data/test/unit/search_options_test.rb +16 -3
- data/test/unit/search_query_test.rb +16 -3
- data/test/unit/search_size_from_test.rb +16 -3
- data/test/unit/search_sort_test.rb +16 -3
- data/test/unit/search_suggest_test.rb +16 -3
- data/test/unit/search_test.rb +16 -3
- data/test/unit/utils_test.rb +16 -3
- metadata +39 -49
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -10,10 +23,6 @@ module Elasticsearch
|
|
10
23
|
include Elasticsearch::DSL::Search
|
11
24
|
|
12
25
|
context "A nested aggregation" do
|
13
|
-
startup do
|
14
|
-
Elasticsearch::Extensions::Test::Cluster.start(number_of_nodes: 1) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
15
|
-
end
|
16
|
-
|
17
26
|
setup do
|
18
27
|
@client.indices.create index: 'products-test', body: {
|
19
28
|
mappings: {
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
# encoding: UTF-8
|
6
19
|
|
@@ -12,10 +25,6 @@ module Elasticsearch
|
|
12
25
|
include Elasticsearch::DSL::Search
|
13
26
|
|
14
27
|
context "Filters integration" do
|
15
|
-
startup do
|
16
|
-
Elasticsearch::Extensions::Test::Cluster.start(number_of_nodes: 1) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
17
|
-
end
|
18
|
-
|
19
28
|
setup do
|
20
29
|
@client.indices.create index: 'test'
|
21
30
|
@client.index index: 'test', id: 1,
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -10,10 +23,6 @@ module Elasticsearch
|
|
10
23
|
include Elasticsearch::DSL::Search
|
11
24
|
|
12
25
|
context "Queries integration" do
|
13
|
-
startup do
|
14
|
-
Elasticsearch::Extensions::Test::Cluster.start(number_of_nodes: 1) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
15
|
-
end
|
16
|
-
|
17
26
|
setup do
|
18
27
|
@client.indices.create index: 'test'
|
19
28
|
@client.index index: 'test', id: '1', body: { title: 'Test', tags: ['one'] }
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -10,10 +23,6 @@ module Elasticsearch
|
|
10
23
|
include Elasticsearch::DSL::Search
|
11
24
|
|
12
25
|
context "Sorting integration" do
|
13
|
-
startup do
|
14
|
-
Elasticsearch::Extensions::Test::Cluster.start(number_of_nodes: 1) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
15
|
-
end
|
16
|
-
|
17
26
|
setup do
|
18
27
|
@client.indices.create index: 'test'
|
19
28
|
@client.index index: 'test', id: '1', body: { tags: ['one'], clicks: 15 }
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
# encoding: UTF-8
|
6
19
|
|
@@ -12,10 +25,6 @@ module Elasticsearch
|
|
12
25
|
include Elasticsearch::DSL::Search
|
13
26
|
|
14
27
|
context "Suggest integration" do
|
15
|
-
startup do
|
16
|
-
Elasticsearch::Extensions::Test::Cluster.start(number_of_nodes: 1) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
17
|
-
end
|
18
|
-
|
19
28
|
setup do
|
20
29
|
@client.indices.create index: 'test', body: {
|
21
30
|
mappings: {
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -37,10 +50,6 @@ module Elasticsearch
|
|
37
50
|
end
|
38
51
|
|
39
52
|
context "The Search class" do
|
40
|
-
startup do
|
41
|
-
Elasticsearch::Extensions::Test::Cluster.start(number_of_nodes: 1) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
42
|
-
end
|
43
|
-
|
44
53
|
setup do
|
45
54
|
@client.indices.create index: 'test'
|
46
55
|
@client.index index: 'test', id: '1', body: { title: 'Test', tags: ['one'] }
|
data/test/test_helper.rb
CHANGED
@@ -1,11 +1,26 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
ELASTICSEARCH_HOSTS = if hosts = ENV['TEST_ES_SERVER'] || ENV['ELASTICSEARCH_HOSTS']
|
6
19
|
hosts.split(',').map do |host|
|
7
20
|
/(http\:\/\/)?(\S+)/.match(host)[2]
|
8
21
|
end
|
22
|
+
else
|
23
|
+
['localhost:9200']
|
9
24
|
end.freeze
|
10
25
|
|
11
26
|
TEST_HOST, TEST_PORT = ELASTICSEARCH_HOSTS.first.split(':') if ELASTICSEARCH_HOSTS
|
@@ -17,23 +32,17 @@ if ENV['COVERAGE'] || ENV['CI']
|
|
17
32
|
SimpleCov.start { add_filter "/test|test_" }
|
18
33
|
end
|
19
34
|
|
20
|
-
at_exit { Elasticsearch::Test::IntegrationTestCase.__run_at_exit_hooks }
|
21
|
-
|
22
35
|
require 'minitest/autorun'
|
23
36
|
require 'shoulda-context'
|
24
37
|
require 'mocha/setup'
|
25
38
|
|
26
39
|
require 'minitest/reporters'
|
27
40
|
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
|
28
|
-
# Minitest::Reporters.use! [ Minitest::Reporters::SpecReporter.new,
|
29
|
-
# Minitest::Reporters::JUnitReporter.new,
|
30
|
-
# Minitest::Reporters::HtmlReporter.new ]
|
31
41
|
|
32
42
|
require 'elasticsearch'
|
33
|
-
require 'elasticsearch/extensions/test/cluster'
|
34
|
-
require 'elasticsearch/extensions/test/startup_shutdown'
|
35
|
-
|
36
43
|
require 'elasticsearch/dsl'
|
44
|
+
require 'logger'
|
45
|
+
require 'ansi'
|
37
46
|
|
38
47
|
module Elasticsearch
|
39
48
|
module Test
|
@@ -54,20 +63,6 @@ module Elasticsearch
|
|
54
63
|
alias_method :assert_not_nil, :refute_nil
|
55
64
|
alias_method :assert_raise, :assert_raises
|
56
65
|
|
57
|
-
include Elasticsearch::Extensions::Test
|
58
|
-
extend StartupShutdown
|
59
|
-
|
60
|
-
startup do
|
61
|
-
Cluster.start(number_of_nodes: 1) if ENV['SERVER'] \
|
62
|
-
&& ! Elasticsearch::Extensions::Test::Cluster.running?(number_of_nodes: 1)
|
63
|
-
end
|
64
|
-
|
65
|
-
shutdown do
|
66
|
-
Cluster.stop if ENV['SERVER'] \
|
67
|
-
&& started? \
|
68
|
-
&& Elasticsearch::Extensions::Test::Cluster.running?
|
69
|
-
end
|
70
|
-
|
71
66
|
def setup
|
72
67
|
@port = (ENV['TEST_CLUSTER_PORT'] || 9250).to_i
|
73
68
|
|
@@ -82,7 +77,7 @@ module Elasticsearch
|
|
82
77
|
ANSI.ansi(severity[0] + ' ', color, :faint) + ANSI.ansi(msg, :white, :faint) + "\n"
|
83
78
|
end
|
84
79
|
|
85
|
-
@client = Elasticsearch::Client.new
|
80
|
+
@client = Elasticsearch::Client.new(host: "#{TEST_HOST}:#{TEST_PORT}", logger: (ENV['QUIET'] ? nil : @logger))
|
86
81
|
@version = @client.info['version']['number']
|
87
82
|
end
|
88
83
|
|
data/test/unit/dsl_test.rb
CHANGED
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|
@@ -1,6 +1,19 @@
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
2
|
-
#
|
3
|
-
#
|
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.
|
4
17
|
|
5
18
|
require 'test_helper'
|
6
19
|
|