Skip to content

Commit 39c1456

Browse files
committed
[MODEL] Added an integration test for the eager loading in 22a4c1c
Related: elastic#472
1 parent 15be8e8 commit 39c1456

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

elasticsearch-model/test/integration/active_record_associations_test.rb

+20-1
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,16 @@ def as_indexed_json(options={})
133133
# Include the search integration
134134
#
135135
Post.__send__ :include, Searchable
136+
Comment.__send__ :include, Elasticsearch::Model
137+
Comment.__send__ :include, Elasticsearch::Model::Callbacks
136138

137-
# ----- Reset the index -----------------------------------------------------------------
139+
# ----- Reset the indices -----------------------------------------------------------------
138140

139141
Post.delete_all
140142
Post.__elasticsearch__.create_index! force: true
143+
144+
Comment.delete_all
145+
Comment.__elasticsearch__.create_index! force: true
141146
end
142147

143148
should "index and find a document" do
@@ -300,6 +305,20 @@ def as_indexed_json(options={})
300305
assert_equal 0, Post.search('categories:One').size
301306
assert_equal 1, Post.search('categories:Updated').size
302307
end
308+
309+
should "eagerly load associated records" do
310+
post_1 = Post.create(title: 'One')
311+
post_2 = Post.create(title: 'Two')
312+
post_1.comments.create text: 'First comment'
313+
post_1.comments.create text: 'Second comment'
314+
315+
Comment.__elasticsearch__.refresh_index!
316+
317+
records = Comment.search('first').records(includes: :post)
318+
319+
assert records.first.association(:post).loaded?, "The associated Post should be eagerly loaded"
320+
assert_equal 'One', records.first.post.title
321+
end
303322
end
304323

305324
end

0 commit comments

Comments
 (0)