| | |
| | | #!/bin/bash |
| | | # Round01.1 horizontal Waterfall fixture QA. It verifies the P1 masonry view: |
| | | # no horizontal scroll, centered equal-width cards, variable heights, thumbnail |
| | | # 40% max-height, App Shelf anchoring, and horizontal-mode Tab navigation. |
| | | # no horizontal scroll, centered equal-width fixed-height cards, 150pt vertical |
| | | # placement steps, App Shelf anchoring, and horizontal-mode Tab navigation. |
| | | |
| | | set -euo pipefail |
| | | |
| | |
| | | KEYBOARD_REPORT="$BUILD_REPORT_ROOT/round01-horizontal-waterfall-keyboard-report.json" |
| | | FILTER_REPORT="$BUILD_REPORT_ROOT/round01-horizontal-waterfall-filter-report.json" |
| | | FIXTURE_APP_COUNT="${ALIGNER_ROUND1_HORIZONTAL_WATERFALL_FIXTURE_APP_COUNT:-8}" |
| | | FIXTURE_WINDOWS_PER_APP="${ALIGNER_ROUND1_HORIZONTAL_WATERFALL_FIXTURE_WINDOWS_PER_APP:-4}" |
| | | FIXTURE_WINDOWS_PER_APP="${ALIGNER_ROUND1_HORIZONTAL_WATERFALL_FIXTURE_WINDOWS_PER_APP:-6}" |
| | | HOVER_APP_INDEX="${ALIGNER_ROUND1_HORIZONTAL_WATERFALL_HOVER_APP_INDEX:-7}" |
| | | KEY_SEQUENCE="${ALIGNER_ROUND1_HORIZONTAL_WATERFALL_KEY_SEQUENCE:-tab}" |
| | | REPORT_WAIT="${ALIGNER_ROUND1_HORIZONTAL_WATERFALL_REPORT_WAIT:-6.0}" |
| | |
| | | widths = [round(card.get("frame", {}).get("width", 0), 1) for card in cards] |
| | | require(len(set(widths)) == 1, "horizontal masonry cards must be equal width") |
| | | heights = [round(card.get("frame", {}).get("height", 0), 1) for card in cards] |
| | | require(len(set(heights)) >= 2, "horizontal masonry cards must expose variable heights") |
| | | expected_card_height = 138.0 |
| | | expected_thumbnail_height = 106.0 |
| | | expected_card_step = 150.0 |
| | | require(len(set(heights)) == 1, "horizontal masonry cards must use one fixed height") |
| | | require(abs(heights[0] - expected_card_height) <= 1.0, "horizontal masonry card height must match vertical Waterfall 138pt height") |
| | | require(all(card.get("frame", {}).get("x", -1) >= -1 for card in cards), "cards must not overflow left") |
| | | require(all(card.get("frame", {}).get("x", 0) + card.get("frame", {}).get("width", 0) <= waterfall_width + 1 for card in cards), "cards must not overflow right") |
| | | require(all(card.get("thumbnailFrame", {}).get("height", 0) <= waterfall_height * 0.40 + 1.0 for card in cards), "thumbnail height must be capped to 40% of Waterfall height") |
| | | thumbnail_heights = [round(card.get("thumbnailFrame", {}).get("height", 0), 1) for card in cards] |
| | | require(all(abs(height - expected_thumbnail_height) <= 1.0 for height in thumbnail_heights), "horizontal masonry thumbnails must use the same fixed card template height as vertical cards") |
| | | require(all(card.get("titleBarFrame", {}).get("y", 0) >= card.get("thumbnailFrame", {}).get("y", 0) + card.get("thumbnailFrame", {}).get("height", 0) for card in cards), "title bars must remain above thumbnails") |
| | | |
| | | cards_by_lane = {} |
| | | for card in cards: |
| | | lane_x = round(card.get("frame", {}).get("x", 0), 1) |
| | | cards_by_lane.setdefault(lane_x, []).append(card) |
| | | lane_steps = [] |
| | | for lane_cards in cards_by_lane.values(): |
| | | ordered = sorted(lane_cards, key=lambda card: card.get("frame", {}).get("y", 0), reverse=True) |
| | | for upper, lower in zip(ordered, ordered[1:]): |
| | | lane_steps.append(round(upper.get("frame", {}).get("y", 0) - lower.get("frame", {}).get("y", 0), 1)) |
| | | require(lane_steps, "fixture must place multiple cards in at least one horizontal masonry lane") |
| | | require(all(abs(step - expected_card_step) <= 1.0 for step in lane_steps), "horizontal masonry vertical placement step must be 150pt") |
| | | |
| | | for expected_index, column in enumerate(columns): |
| | | require(column.get("appGroupIndex") == expected_index, "appGroupIndex must remain sequential") |
| | |
| | | "appCount": report.get("appCount"), |
| | | "windowCount": report.get("windowCount"), |
| | | "cardWidth": widths[0], |
| | | "distinctHeights": sorted(set(heights))[:6], |
| | | "cardHeight": heights[0], |
| | | "thumbnailHeight": thumbnail_heights[0], |
| | | "cardStep": expected_card_step, |
| | | "horizontalMasonryScrollOffset": root.get("horizontalMasonryScrollOffset"), |
| | | "horizontalMasonryMaxScrollOffset": root.get("horizontalMasonryMaxScrollOffset") |
| | | }, indent=2, ensure_ascii=False)) |
| | |
| | | |
| | | widths = [round(card.get("frame", {}).get("width", 0), 1) for card in cards] |
| | | require(len(set(widths)) == 1, "filtered horizontal cards must remain equal width") |
| | | heights = [round(card.get("frame", {}).get("height", 0), 1) for card in cards] |
| | | require(len(set(heights)) == 1 and abs(heights[0] - 138.0) <= 1.0, "filtered horizontal cards must keep the fixed 138pt height") |
| | | visible_width = root.get("waterfallVisibleWidth", 0) |
| | | require(all(card.get("frame", {}).get("x", -1) >= -1 for card in cards), "filtered cards must not overflow left") |
| | | require(all(card.get("frame", {}).get("x", 0) + card.get("frame", {}).get("width", 0) <= visible_width + 1 for card in cards), "filtered cards must not overflow right") |