forked from elastic/elasticsearch-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_spec.rb
179 lines (136 loc) · 4.23 KB
/
find_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
require 'spec_helper'
describe Elasticsearch::Persistence::Repository::Find do
after do
begin; repository.delete_index!; rescue; end
end
let(:repository) do
DEFAULT_REPOSITORY
end
describe '#exists?' do
context 'when the document exists' do
let(:id) do
repository.save(a: 1)['_id']
end
it 'returns true' do
expect(repository.exists?(id)).to be(true)
end
end
context 'when the document does not exist' do
it 'returns false' do
expect(repository.exists?('1')).to be(false)
end
end
context 'when options are provided' do
let(:id) do
repository.save(a: 1)['_id']
end
it 'applies the options' do
expect(repository.exists?(id, type: 'other_type')).to be(false)
end
end
end
describe '#find' do
context 'when options are not provided' do
context 'when a single id is provided' do
let!(:id) do
repository.save(a: 1)['_id']
end
it 'retrieves the document' do
expect(repository.find(id)).to eq('a' => 1)
end
end
context 'when an array of ids is provided' do
let!(:ids) do
3.times.collect do |i|
repository.save(a: i)['_id']
end
end
it 'retrieves the documents' do
expect(repository.find(ids)).to eq([{ 'a' =>0 },
{ 'a' => 1 },
{ 'a' => 2 }])
end
context 'when some documents are found and some are not' do
before do
ids[1] = 22
ids
end
it 'returns nil in the result list for the documents not found' do
expect(repository.find(ids)).to eq([{ 'a' =>0 },
nil,
{ 'a' => 2 }])
end
end
end
context 'when multiple ids are provided' do
let!(:ids) do
3.times.collect do |i|
repository.save(a: i)['_id']
end
end
it 'retrieves the documents' do
expect(repository.find(*ids)).to eq([{ 'a' =>0 },
{ 'a' => 1 },
{ 'a' => 2 }])
end
end
context 'when the document cannot be found' do
before do
begin; repository.create_index!; rescue; end
end
it 'raises a DocumentNotFound exception' do
expect {
repository.find(1)
}.to raise_exception(Elasticsearch::Persistence::Repository::DocumentNotFound)
end
end
end
context 'when options are provided' do
context 'when a single id is passed' do
let!(:id) do
repository.save(a: 1)['_id']
end
it 'applies the options' do
expect {
repository.find(id, type: 'none')
}.to raise_exception(Elasticsearch::Persistence::Repository::DocumentNotFound)
end
end
context 'when an array of ids is passed' do
let!(:ids) do
3.times.collect do |i|
repository.save(a: i)['_id']
end
end
it 'applies the options' do
expect(repository.find(ids, type: 'none')).to eq([nil, nil, nil])
end
end
context 'when multiple ids are passed' do
let!(:ids) do
3.times.collect do |i|
repository.save(a: i)['_id']
end
end
it 'applies the options' do
expect(repository.find(*ids, type: 'none')).to eq([nil, nil, nil])
end
end
end
context 'when a document_type is defined on the class' do
let(:repository) do
MyTestRepository.new(document_type:'other_type', client: DEFAULT_CLIENT, index_name: 'test')
end
let!(:ids) do
3.times.collect do |i|
repository.save(a: i)['_id']
end
end
it 'uses the document type in the query' do
expect(repository.find(ids)).to eq([{ 'a' =>0 },
{ 'a' => 1 },
{ 'a' => 2 }])
end
end
end
end