File tree 3 files changed +39
-2
lines changed
3 files changed +39
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ def preload(associations, docs)
31
31
docs_map = { }
32
32
queue = [ klass . to_s ]
33
33
34
+ # account for single-collection inheritance
35
+ queue . push ( klass . root_class . to_s ) if klass != klass . root_class
36
+
34
37
while klass = queue . shift
35
38
if as = assoc_map . delete ( klass )
36
39
as . each do |assoc |
Original file line number Diff line number Diff line change @@ -323,6 +323,18 @@ def hereditary?
323
323
!!( Mongoid ::Document > superclass )
324
324
end
325
325
326
+ # Returns the root class of the STI tree that the current
327
+ # class participates in. If the class is not an STI subclass, this
328
+ # returns the class itself.
329
+ #
330
+ # @return [ Mongoid::Document ] the root of the STI tree
331
+ def root_class
332
+ root = self
333
+ root = root . superclass while root . hereditary?
334
+
335
+ root
336
+ end
337
+
326
338
# When inheriting, we want to copy the fields from the parent class and
327
339
# set the on the child to start, mimicking the behavior of the old
328
340
# class_inheritable_accessor that was deprecated in Rails edge.
Original file line number Diff line number Diff line change 14
14
Mongoid ::Contextual ::Mongo . new ( criteria )
15
15
end
16
16
17
+ let ( :association_host ) { Account }
18
+
17
19
let ( :inclusions ) do
18
20
includes . map do |key |
19
- Account . reflect_on_association ( key )
21
+ association_host . reflect_on_association ( key )
20
22
end
21
23
end
22
24
23
25
let ( :doc ) { criteria . first }
24
26
27
+ context 'when root is an STI subclass' do
28
+ # Driver has_one Vehicle
29
+ # Vehicle belongs_to Driver
30
+ # Truck is a Vehicle
31
+
32
+ before do
33
+ Driver . create! ( vehicle : Truck . new )
34
+ end
35
+
36
+ let ( :criteria ) { Truck . all }
37
+ let ( :includes ) { %i[ driver ] }
38
+ let ( :association_host ) { Truck }
39
+
40
+ it 'preloads the driver' do
41
+ expect ( doc . ivar ( :driver ) ) . to be false
42
+ context . preload ( inclusions , [ doc ] )
43
+ expect ( doc . ivar ( :driver ) ) . to be == Driver . first
44
+ end
45
+ end
46
+
25
47
context "when belongs_to" do
26
48
27
49
let! ( :account ) do
42
64
it "preloads the parent" do
43
65
expect ( doc . ivar ( :person ) ) . to be false
44
66
context . preload ( inclusions , [ doc ] )
45
- expect ( doc . ivar ( :person ) ) . to eq ( doc . person )
67
+ expect ( doc . ivar ( :person ) ) . to be == person
46
68
end
47
69
end
48
70
You can’t perform that action at this time.
0 commit comments