@@ -133,11 +133,16 @@ def as_indexed_json(options={})
133
133
# Include the search integration
134
134
#
135
135
Post . __send__ :include , Searchable
136
+ Comment . __send__ :include , Elasticsearch ::Model
137
+ Comment . __send__ :include , Elasticsearch ::Model ::Callbacks
136
138
137
- # ----- Reset the index -----------------------------------------------------------------
139
+ # ----- Reset the indices -----------------------------------------------------------------
138
140
139
141
Post . delete_all
140
142
Post . __elasticsearch__ . create_index! force : true
143
+
144
+ Comment . delete_all
145
+ Comment . __elasticsearch__ . create_index! force : true
141
146
end
142
147
143
148
should "index and find a document" do
@@ -300,6 +305,20 @@ def as_indexed_json(options={})
300
305
assert_equal 0 , Post . search ( 'categories:One' ) . size
301
306
assert_equal 1 , Post . search ( 'categories:Updated' ) . size
302
307
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
303
322
end
304
323
305
324
end
0 commit comments