Four regression flows, each run on a Pixel 7 and, where relevant, a real Android TV box. Discriminating — the baseline fails, HEAD passes: `07_sheet_back_dismiss` pins both halves of the hosted-sheet fix on touch: the barrier removes the rows behind it from the semantics tree, and one Back closes only the sheet while Settings stays the current route, including the nested per-library options page. It fails onc48cbf70, the commit before8e1904dd. `03_tv_library_focus` gains the same occlusion assertion for the TV sort sheet and fails there too. `08_track_choice_survives_pending_pass` picks a non-default audio and subtitle track, lets playback outlive the automatic pass's 5s attempt and 25s deadline, and asserts the choice is still selected. Ona56b9a3dthe audio reverts to the container's default. Both new flows onboard from a cleared install: the TV regressions in the same group leave "Force TV mode" enabled, and a remembered track selection would pre-select the rows under test. Coverage without a comparable baseline: `09_language_picker_locales` asserts the four new endonyms, switches to Turkish, reads root navigation labels from the generated locale, and restores English. The locales do not exist before 7677d159/100d7729, so there is nothing to fail against — this is forward coverage, not a reproduction. `10_tv_settings_navigation` runs on real Android TV hardware, which no existing flow covers: the rail layout a device reports on its own, the TV dialog path for Manage Libraries, the Apple-only Atmos gate staying closed on Android, and the D-pad-only route to the number spinner's accessibility labels, which a single tap would hide. It passes on either side of the range and is verified against both an empty server and one with a resume position, since rail order shifts with that. It does not assert the15b54e2erow density: that change is invisible to a semantics-tree driver, and a pixel `height` assertion would only hold for one DPR. It registers under a new `android-tv-device` group no workflow dispatches. No TV playback flow is included. Entering content on the TV Recommended view has no stable anchor: the accessibility `focused` flag sits on the hero backdrop rather than the rail card, and a resume position anywhere in the library pushes "Recently Added" below the fold and out of the semantics tree entirely. Search is not a way around it either — inputText does not reach the TV search field. Covering TV playback needs a testID on the rail card, not a cleverer selector. Also repairs three assertions that could never fail: `03_tv_library_focus` gated the sort sheet closing on `notVisible: "Sort by"`, but the header renders "Sort By" and Maestro selectors are case-sensitive regexes, so the wait returned immediately and the next D-pad press landed in the sheet's close animation. `open_codec_sample` matched a card's watch state as `watched|unwatched` only. A codec sample keeps a resume position once any earlier flow has played it, so the row announces "N percent watched" and the subflow stopped finding it on a fixture container that outlives one suite. `06_playback_recovery` tapped "Zulu Zone" out of the Recently Added rail, but every seeded alphabet title shares one dateadded, so which of them the rail returns is a tie-break. The flow only needs some playable movie.
143 lines
4.3 KiB
YAML
143 lines
4.3 KiB
YAML
appId: com.edde746.plezy
|
|
name: TV settings stay navigable and dismiss their overlays
|
|
|
|
tags:
|
|
- e2e
|
|
- regression
|
|
- tv
|
|
- settings
|
|
---
|
|
# Guards ef310459 and the Apple-only gates touched by 6c14049e, and pins TV
|
|
# settings navigation generally.
|
|
#
|
|
# It deliberately does NOT guard the 15b54e2e density change. That commit took
|
|
# every settings row from ~80dp to ~61dp, but the rows below the fold stay in
|
|
# the semantics tree either way, so this flow passes identically on both sides
|
|
# of it — measured, not assumed. A real guard would need a pixel `height`
|
|
# assertion, and Maestro has no DPR-relative form, so pinning one here would
|
|
# only hold for the box it was written on. Row geometry belongs to
|
|
# test/widgets/setting_tile_test.dart.
|
|
#
|
|
# Every step uses D-pad keys, never taps. InputModeTracker flips to pointer
|
|
# mode on the first touch event and the TV number spinner only builds in
|
|
# keyboard mode, so a single tapOn anywhere above would silently swap the
|
|
# spinner for a plain text field.
|
|
- runFlow: ../subflows/onboard_jellyfin_tv_device.yaml
|
|
- pressKey: "Remote Dpad Left"
|
|
- extendedWaitUntil:
|
|
visible: "Settings"
|
|
timeout: 15000
|
|
- repeat:
|
|
times: 12
|
|
while:
|
|
notVisible:
|
|
text: "Settings"
|
|
focused: true
|
|
commands:
|
|
- pressKey: "Remote Dpad Down"
|
|
- pressKey: "Remote Dpad Center"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Appearance.*"
|
|
timeout: 15000
|
|
- assertVisible: "(?s)^Video Playback.*"
|
|
- assertVisible: "(?s)^Manage Libraries.*"
|
|
- assertVisible: "(?s)^Services.*"
|
|
# The Connections card sits below the first card, so reaching it also proves
|
|
# the list scrolled or fits — not that any particular row height applies.
|
|
- assertVisible: "(?s)^Add connection.*"
|
|
- assertVisible: "(?s)^Profiles.*"
|
|
# Manage Libraries takes the TV dialog path, not the overlay-sheet path, and
|
|
# one Back has to return to Settings rather than leave it.
|
|
- repeat:
|
|
times: 6
|
|
while:
|
|
notVisible:
|
|
text: "(?s)^Manage Libraries.*"
|
|
focused: true
|
|
commands:
|
|
- pressKey: "Remote Dpad Down"
|
|
- pressKey: "Remote Dpad Center"
|
|
- extendedWaitUntil:
|
|
visible: "Maestro Movies"
|
|
timeout: 15000
|
|
- assertVisible: "Maestro Shows"
|
|
- assertNotVisible: "(?s)^Services.*"
|
|
- assertNotVisible: "(?s)^Video Playback.*"
|
|
- pressKey: "back"
|
|
- waitForAnimationToEnd:
|
|
timeout: 3000
|
|
- assertNotVisible: "Maestro Movies"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Services.*"
|
|
timeout: 15000
|
|
- assertVisible: "(?s)^Manage Libraries.*"
|
|
# Services keeps every hub row after losing its own density overrides.
|
|
- repeat:
|
|
times: 6
|
|
while:
|
|
notVisible:
|
|
text: "(?s)^Services.*"
|
|
focused: true
|
|
commands:
|
|
- pressKey: "Remote Dpad Down"
|
|
- pressKey: "Remote Dpad Center"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Trakt.*"
|
|
timeout: 15000
|
|
- assertVisible: "(?s)^MyAnimeList.*"
|
|
- assertVisible: "(?s)^AniList.*"
|
|
- assertVisible: "(?s)^Simkl.*"
|
|
- assertVisible: "(?s)^Seerr.*"
|
|
- pressKey: "back"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Manage Libraries.*"
|
|
timeout: 15000
|
|
# Video Playback: the Atmos test screen is gated to Apple TV, and the D-pad
|
|
# numeric dialog must expose the spinner's restored accessibility labels.
|
|
- repeat:
|
|
times: 8
|
|
while:
|
|
notVisible:
|
|
text: "(?s)^Video Playback.*"
|
|
focused: true
|
|
commands:
|
|
- pressKey: "Remote Dpad Up"
|
|
- pressKey: "Remote Dpad Center"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Player.*"
|
|
timeout: 15000
|
|
- assertNotVisible: "(?s)^Atmos Output Test.*"
|
|
- repeat:
|
|
times: 30
|
|
while:
|
|
notVisible:
|
|
text: "(?s)^Small Skip Duration.*"
|
|
focused: true
|
|
commands:
|
|
- pressKey: "Remote Dpad Down"
|
|
- pressKey: "Remote Dpad Center"
|
|
- extendedWaitUntil:
|
|
visible: "Decrease"
|
|
timeout: 15000
|
|
- assertVisible: "Increase"
|
|
- assertVisible: "(?s)^Enter duration.*"
|
|
- pressKey: "back"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Small Skip Duration.*"
|
|
timeout: 15000
|
|
- pressKey: "back"
|
|
- extendedWaitUntil:
|
|
visible: "(?s)^Manage Libraries.*"
|
|
timeout: 15000
|
|
# Settings is a rail tab on TV rather than a pushed route, so Back hands focus
|
|
# back to the rail and expands it instead of leaving the screen.
|
|
- pressKey: "back"
|
|
- extendedWaitUntil:
|
|
visible:
|
|
text: "Settings"
|
|
focused: true
|
|
timeout: 20000
|
|
- assertVisible: "Home"
|
|
- assertVisible: "Libraries"
|
|
- assertVisible: "Downloads"
|