Skip to content

Commit e9052ae

Browse files
nipe0324karmi
authored andcommitted
[MODEL] Added a suggest method to wrap the suggestions in response
Instead of: @articles.response.response['suggest'] let's have: @articles.response.suggest Closes elastic#483
1 parent eab4058 commit e9052ae

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

elasticsearch-model/lib/elasticsearch/model/response.rb

+6
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ def shards
7171
def aggregations
7272
response['aggregations'] ? Hashie::Mash.new(response['aggregations']) : nil
7373
end
74+
75+
# Returns a Hashie::Mash of the suggest
76+
#
77+
def suggest
78+
response['suggest'] ? Hashie::Mash.new(response['suggest']) : nil
79+
end
7480
end
7581
end
7682
end

elasticsearch-model/test/integration/active_record_basic_test.rb

+16-4
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,19 @@ class ::Article < ActiveRecord::Base
2222

2323
settings index: { number_of_shards: 1, number_of_replicas: 0 } do
2424
mapping do
25-
indexes :title, type: 'string', analyzer: 'snowball'
26-
indexes :body, type: 'string'
27-
indexes :created_at, type: 'date'
25+
indexes :title, type: 'string', analyzer: 'snowball'
26+
indexes :suggest_title, type: 'completion'
27+
indexes :body, type: 'string'
28+
indexes :created_at, type: 'date'
2829
end
2930
end
31+
32+
def as_indexed_json(options = {})
33+
attributes
34+
.symbolize_keys
35+
.slice(:title, :body, :created_at)
36+
.merge(suggest_title: title)
37+
end
3038
end
3139

3240
Article.delete_all
@@ -210,10 +218,14 @@ class ::Article < ActiveRecord::Base
210218

211219
should "allow dot access to response" do
212220
response = Article.search query: { match: { title: { query: 'test' } } },
213-
aggregations: { dates: { date_histogram: { field: 'created_at', interval: 'hour' } } }
221+
aggregations: { dates: { date_histogram: { field: 'created_at', interval: 'hour' } } },
222+
suggest: { title_suggest: { text: 'test', completion: { field: 'suggest_title' } } }
214223

215224
response.response.respond_to?(:aggregations)
216225
assert_equal 2, response.response.aggregations.dates.buckets.first.doc_count
226+
227+
response.response.respond_to?(:suggest)
228+
assert_equal 2, response.response.suggest.title_suggest.first.options.size
217229
end
218230
end
219231

elasticsearch-model/test/unit/response_test.rb

+11-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ def self.document_type; 'bar'; end
88
end
99

1010
RESPONSE = { 'took' => '5', 'timed_out' => false, '_shards' => {'one' => 'OK'}, 'hits' => { 'hits' => [] },
11-
'aggregations' => {'foo' => {'bar' => 10}}}
11+
'aggregations' => {'foo' => {'bar' => 10}},
12+
'suggest' => {'my_suggest' => []}}
1213

1314
setup do
1415
@search = Elasticsearch::Model::Searching::SearchRequest.new OriginClass, '*'
@@ -73,5 +74,14 @@ def self.document_type; 'bar'; end
7374
assert_kind_of Hashie::Mash, response.aggregations.foo
7475
assert_equal 10, response.aggregations.foo.bar
7576
end
77+
78+
should "access the suggest" do
79+
@search.expects(:execute!).returns(RESPONSE)
80+
81+
response = Elasticsearch::Model::Response::Response.new OriginClass, @search
82+
assert_respond_to response, :suggest
83+
assert_kind_of Hashie::Mash, response.suggest
84+
assert_equal [], response.suggest.my_suggest
85+
end
7686
end
7787
end

0 commit comments

Comments
 (0)