Skip to content

Commit 700ea70

Browse files
committed
[DSL] Further updates to collapse field support
1 parent 2126997 commit 700ea70

File tree

4 files changed

+125
-34
lines changed

4 files changed

+125
-34
lines changed

lib/elasticsearch/dsl/search/base_component.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ def name
141141
# @return [self]
142142
#
143143
def call
144-
@block.arity < 1 ? self.instance_eval(&@block) : @block.call(self) if @block
144+
if @block
145+
@block.arity < 1 ? self.instance_eval(&@block) : @block.call(self)
146+
end
145147
self
146148
end
147149

lib/elasticsearch/dsl/search/queries/collapse.rb

+3-4
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class Collapse
2323
include BaseComponent
2424

2525
def initialize(field, &block)
26-
@value = { field: field }
27-
super
26+
@hash = { field: field }
27+
@block = block
2828
end
2929

3030
def inner_hits(name=nil, &block)
@@ -37,12 +37,11 @@ def inner_hits(name=nil, &block)
3737
end
3838

3939
def max_concurrent_group_searches(max)
40-
@value[:max_concurrent_group_searches] = max
40+
@hash[:max_concurrent_group_searches] = max
4141
end
4242

4343
def to_hash
4444
call
45-
@hash = @value
4645
@hash[:inner_hits] = @inner_hits.to_hash if @inner_hits
4746
@hash
4847
end

spec/elasticsearch/dsl/search/queries/collapse_spec.rb

+23-29
Original file line numberDiff line numberDiff line change
@@ -23,53 +23,47 @@
2323

2424
describe '#initialize' do
2525

26-
let(:s) do
27-
search do
28-
collapse :user
29-
end
26+
let(:coll) do
27+
Elasticsearch::DSL::Search::Collapse.new :user
3028
end
3129

3230
let(:expected_hash) do
33-
{ collapse: { field: :user } }
31+
{ field: :user }
3432
end
3533

3634
it 'sets the field' do
37-
expect(s.to_hash).to eq(expected_hash)
35+
expect(coll.to_hash).to eq(expected_hash)
3836
end
3937
end
4038

4139
describe '#max_concurrent_group_searches' do
4240

43-
let(:s) do
44-
search do
45-
collapse :user do
46-
max_concurrent_group_searches 4
47-
end
41+
let(:coll) do
42+
Elasticsearch::DSL::Search::Collapse.new :user do
43+
max_concurrent_group_searches 4
4844
end
4945
end
5046

5147
it 'sets the field' do
52-
expect(s.to_hash[:collapse][:field]).to eq(:user)
48+
expect(coll.to_hash[:field]).to eq(:user)
5349
end
5450

55-
it 'sets the max_concurrent_group_searches options' do
56-
expect(s.to_hash[:collapse][:max_concurrent_group_searches]).to eq(4)
51+
it 'sets the max_concurrent_group_searches option' do
52+
expect(coll.to_hash[:max_concurrent_group_searches]).to eq(4)
5753
end
5854
end
5955

6056
describe '#inner_hits' do
6157

62-
let(:s) do
63-
search do
64-
collapse :user do
65-
max_concurrent_group_searches 4
66-
inner_hits 'last_tweet' do
67-
size 10
68-
from 5
69-
sort do
70-
by :date, order: 'desc'
71-
by :likes, order: 'asc'
72-
end
58+
let(:coll) do
59+
Elasticsearch::DSL::Search::Collapse.new :user do
60+
max_concurrent_group_searches 4
61+
inner_hits 'last_tweet' do
62+
size 10
63+
from 5
64+
sort do
65+
by :date, order: 'desc'
66+
by :likes, order: 'asc'
7367
end
7468
end
7569
end
@@ -85,15 +79,15 @@
8579
end
8680

8781
it 'sets the field' do
88-
expect(s.to_hash[:collapse][:field]).to eq(:user)
82+
expect(coll.to_hash[:field]).to eq(:user)
8983
end
9084

91-
it 'sets the max_concurrent_group_searches options' do
92-
expect(s.to_hash[:collapse][:max_concurrent_group_searches]).to eq(4)
85+
it 'sets the max_concurrent_group_searches option' do
86+
expect(coll.to_hash[:max_concurrent_group_searches]).to eq(4)
9387
end
9488

9589
it 'sets the inner_hits' do
96-
expect(s.to_hash[:collapse][:inner_hits]).to eq(inner_hits_hash)
90+
expect(coll.to_hash[:inner_hits]).to eq(inner_hits_hash)
9791
end
9892
end
9993
end

spec/elasticsearch/dsl/search_spec.rb

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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 do
21+
22+
include Elasticsearch::DSL
23+
24+
describe '#initialize' do
25+
26+
let(:s) do
27+
search do
28+
query do
29+
match title: 'test'
30+
end
31+
end
32+
end
33+
34+
let(:expected_hash) do
35+
{ query: { match: { title: 'test' } } }
36+
end
37+
38+
it 'creates the search definition' do
39+
expect(s.to_hash).to eq(expected_hash)
40+
end
41+
end
42+
43+
describe '#collapse' do
44+
45+
let(:s) do
46+
search do
47+
query do
48+
match title: 'test'
49+
end
50+
collapse :user do
51+
max_concurrent_group_searches 4
52+
inner_hits 'last_tweet' do
53+
size 10
54+
from 5
55+
sort do
56+
by :date, order: 'desc'
57+
by :likes, order: 'asc'
58+
end
59+
end
60+
end
61+
end
62+
end
63+
64+
let(:inner_hits_hash) do
65+
{ name: 'last_tweet',
66+
size: 10,
67+
from: 5,
68+
sort: [ { date: { order: 'desc' } },
69+
{ likes: { order: 'asc' } }]
70+
}
71+
end
72+
73+
let(:expected_hash) do
74+
{ query: { match: { title: 'test' } },
75+
collapse: { field: :user,
76+
max_concurrent_group_searches: 4,
77+
inner_hits: inner_hits_hash } }
78+
end
79+
80+
it 'sets the field name' do
81+
expect(s.to_hash[:collapse][:field]).to eq(:user)
82+
end
83+
84+
it 'sets the max_concurrent_group_searches option' do
85+
expect(s.to_hash[:collapse][:max_concurrent_group_searches]).to eq(4)
86+
end
87+
88+
it 'sets the inner_hits' do
89+
expect(s.to_hash[:collapse][:inner_hits]).to eq(inner_hits_hash)
90+
end
91+
92+
it 'constructs the correct hash' do
93+
expect(s.to_hash).to eq(expected_hash)
94+
end
95+
end
96+
end

0 commit comments

Comments
 (0)