mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 23:29:39 +02:00
Handle nested child syncs (#2220)
This commit is contained in:
parent
8b857e9c8a
commit
2707a40a2a
3 changed files with 29 additions and 15 deletions
|
@ -47,7 +47,7 @@ class PlaidItem < ApplicationRecord
|
||||||
|
|
||||||
# Schedule account syncs
|
# Schedule account syncs
|
||||||
accounts.each do |account|
|
accounts.each do |account|
|
||||||
account.sync_later(start_date: start_date)
|
account.sync_later(start_date: start_date, parent_sync: sync)
|
||||||
end
|
end
|
||||||
|
|
||||||
Rails.logger.info("Plaid data fetched and loaded")
|
Rails.logger.info("Plaid data fetched and loaded")
|
||||||
|
|
|
@ -22,9 +22,8 @@ class Sync < ApplicationRecord
|
||||||
data = syncable.sync_data(self, start_date: start_date)
|
data = syncable.sync_data(self, start_date: start_date)
|
||||||
update!(data: data) if data
|
update!(data: data) if data
|
||||||
|
|
||||||
complete! unless has_pending_child_syncs?
|
|
||||||
|
|
||||||
unless has_pending_child_syncs?
|
unless has_pending_child_syncs?
|
||||||
|
complete!
|
||||||
Rails.logger.info("Sync completed, starting post-sync")
|
Rails.logger.info("Sync completed, starting post-sync")
|
||||||
syncable.post_sync(self)
|
syncable.post_sync(self)
|
||||||
Rails.logger.info("Post-sync completed")
|
Rails.logger.info("Post-sync completed")
|
||||||
|
@ -33,10 +32,7 @@ class Sync < ApplicationRecord
|
||||||
fail! error
|
fail! error
|
||||||
raise error if Rails.env.development?
|
raise error if Rails.env.development?
|
||||||
ensure
|
ensure
|
||||||
if has_parent?
|
notify_parent_of_completion! if has_parent?
|
||||||
Rails.logger.info("notifying parent sync id=#{parent_id} of completion")
|
|
||||||
notify_parent_of_completion!
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -49,6 +45,10 @@ class Sync < ApplicationRecord
|
||||||
|
|
||||||
unless has_pending_child_syncs?
|
unless has_pending_child_syncs?
|
||||||
complete!
|
complete!
|
||||||
|
|
||||||
|
# If this sync is both a child and a parent, we need to notify the parent of completion
|
||||||
|
notify_parent_of_completion! if has_parent?
|
||||||
|
|
||||||
syncable.post_sync(self)
|
syncable.post_sync(self)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -32,29 +32,43 @@ class SyncTest < ActiveSupport::TestCase
|
||||||
assert_equal "test sync error", @sync.error
|
assert_equal "test sync error", @sync.error
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Order is important here. Parent syncs must implement sync_data so that their own work
|
||||||
|
# is 100% complete *prior* to queueing up child syncs.
|
||||||
test "runs sync with child syncs" do
|
test "runs sync with child syncs" do
|
||||||
family = families(:dylan_family)
|
family = families(:dylan_family)
|
||||||
|
|
||||||
parent = Sync.create!(syncable: family)
|
parent = Sync.create!(syncable: family)
|
||||||
child1 = Sync.create!(syncable: family.accounts.first, parent: parent)
|
child1 = Sync.create!(syncable: family.accounts.first, parent: parent)
|
||||||
child2 = Sync.create!(syncable: family.accounts.last, parent: parent)
|
child2 = Sync.create!(syncable: family.accounts.second, parent: parent)
|
||||||
|
grandchild = Sync.create!(syncable: family.accounts.last, parent: child2)
|
||||||
|
|
||||||
parent.syncable.expects(:sync_data).returns([]).once
|
parent.syncable.expects(:sync_data).returns([]).once
|
||||||
child1.syncable.expects(:sync_data).returns([]).once
|
child1.syncable.expects(:sync_data).returns([]).once
|
||||||
child2.syncable.expects(:sync_data).returns([]).once
|
child2.syncable.expects(:sync_data).returns([]).once
|
||||||
|
grandchild.syncable.expects(:sync_data).returns([]).once
|
||||||
|
|
||||||
parent.perform # no-op
|
assert_equal "pending", parent.status
|
||||||
|
|
||||||
assert_equal "syncing", parent.status
|
|
||||||
assert_equal "pending", child1.status
|
assert_equal "pending", child1.status
|
||||||
assert_equal "pending", child2.status
|
assert_equal "pending", child2.status
|
||||||
|
assert_equal "pending", grandchild.status
|
||||||
|
|
||||||
|
parent.perform
|
||||||
|
assert_equal "syncing", parent.reload.status
|
||||||
|
|
||||||
child1.perform
|
child1.perform
|
||||||
assert_equal "completed", child1.status
|
assert_equal "completed", child1.reload.status
|
||||||
assert_equal "syncing", parent.status
|
assert_equal "syncing", parent.reload.status
|
||||||
|
|
||||||
child2.perform
|
child2.perform
|
||||||
assert_equal "completed", child2.status
|
assert_equal "syncing", child2.reload.status
|
||||||
assert_equal "completed", parent.status
|
assert_equal "completed", child1.reload.status
|
||||||
|
assert_equal "syncing", parent.reload.status
|
||||||
|
|
||||||
|
# Will complete the parent and grandparent syncs
|
||||||
|
grandchild.perform
|
||||||
|
assert_equal "completed", grandchild.reload.status
|
||||||
|
assert_equal "completed", child1.reload.status
|
||||||
|
assert_equal "completed", child2.reload.status
|
||||||
|
assert_equal "completed", parent.reload.status
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue