test(system): harden property edit flow against the account-menu morph race (#2421)

PropertyTest#open_account_edit_dialog already retried the menu→Edit flow
because the account page issues a Turbo morph refresh shortly after load
(turbo_refreshes_with :morph). But the naive retry had two gaps that can
still flake under a slow CI browser:

- It re-clicked the DS::Menu trigger every iteration. The trigger toggles
  (menu_controller#toggle), so a retry after a slow-but-successful modal
  load would close the open menu and hide "Edit". Now it opens the menu
  only when it is closed.
- It did not tolerate the menu node detaching mid-click ("Node with given
  id does not belong to the document"), an inspector error Capybara does
  not auto-retry. Now it rescues the transient detach/stale errors and
  retries, re-raising anything else.

Mirrors the same guard applied to AccountsTest#open_account_edit_dialog.
This commit is contained in:
ghost
2026-06-29 22:46:19 -07:00
committed by GitHub
parent bd740f112c
commit 0fa7ca5824

View File

@@ -23,13 +23,33 @@ class PropertiesEditTest < ApplicationSystemTestCase
# (`turbo_refreshes_with method: :morph` reacting to a family-stream
# broadcast). If the edit modal is opened while that refresh is in flight,
# the morph re-renders the page and wipes the just-loaded `#modal`
# turbo-frame before the dialog is interactive. Open via the account menu and
# retry once the refresh has settled so the test is deterministic instead of
# turbo-frame before the dialog is interactive — and can detach the menu
# node mid-click ("Node with given id does not belong to the document"),
# which Capybara does not auto-retry. Open via the account menu and retry
# until the edit form is present so the test is deterministic instead of
# racing the broadcast.
def open_account_edit_dialog
3.times do
find("[data-testid='account-menu']").click
click_on "Edit"
# A prior (slow) attempt may have already opened the edit form.
return if has_selector?("#account_accountable_attributes_subtype", wait: 0)
begin
within_testid("account-menu") do
# Open the menu only when it's closed. DS::Menu's trigger toggles
# (menu_controller#toggle), so blindly re-clicking an already-open
# menu would close it and hide "Edit", turning a slow-but-successful
# modal load into a fresh flake.
unless has_selector?("[role='menu']", visible: true, wait: 0)
find("button").click
end
click_on "Edit"
end
rescue Selenium::WebDriver::Error::WebDriverError => e
raise unless e.message.match?(
/does not belong to the document|stale element reference/i,
)
next
end
return if has_selector?("#account_accountable_attributes_subtype", wait: 2)
end
assert_selector "#account_accountable_attributes_subtype"