From aa8132227f311fc6cfd8eaadeebb8890c05b7ff1 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 18 Oct 2024 15:44:46 +0200 Subject: [PATCH 1/3] Add a check for screenshot name duplication. --- tools/test/generateAllScreenshots.py | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/tools/test/generateAllScreenshots.py b/tools/test/generateAllScreenshots.py index 3c3850140a..5f7ffcf576 100755 --- a/tools/test/generateAllScreenshots.py +++ b/tools/test/generateAllScreenshots.py @@ -10,6 +10,7 @@ import re import sys import time + from util import compare @@ -100,6 +101,34 @@ def computeDarkFileName(lightFileName): return match.group(1) + "_Night_" + match.group(2) + "_" + match.group(3) return "" + +def checkForScreenshotNameDuplication(): + __doc__ = "Check for screenshots name duplication" + print("Check for screenshots name duplication...") + files = os.listdir("tests/uitests/src/test/snapshots/images/") + dict = {} + for file in files: + start = file.find("_") + 1 + end = file.find("_", start) + screenshotName = file[start:end] + if screenshotName in dict: + dict[screenshotName].append(file[:end]) + else: + dict[screenshotName] = [file[:end]] + error = 0 + for key in dict: + if key in ["Icon", "RoundIcon"]: + continue + values = set(dict[key]) + if len(values) > 1: + print("Duplicated screenshot name: %s" % key) + for value in values: + print(" - %s" % value) + error += 1 + if error: + print("Warning: %d duplicated screenshot name(s) found" % error) + + def generateJavascriptFile(): __doc__ = "Generate a javascript file to load the screenshots" print("Generating javascript file...") @@ -151,6 +180,7 @@ def generateJavascriptFile(): def main(): + checkForScreenshotNameDuplication() generateAllScreenshots(readArguments()) lang = detectLanguages() for l in lang: @@ -158,4 +188,5 @@ def main(): moveScreenshots(l) generateJavascriptFile() + main() From 27e63766813048d86221a7a193c6e74751f28fd9 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 18 Oct 2024 15:47:59 +0200 Subject: [PATCH 2/3] Rename View and Preview to fix a name clash in the Gallery. --- .../features/messages/impl/actionlist/ActionListView.kt | 8 ++++---- .../components/reactionsummary/ReactionSummaryView.kt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/actionlist/ActionListView.kt b/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/actionlist/ActionListView.kt index 0b9377ae90..7d30edd116 100644 --- a/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/actionlist/ActionListView.kt +++ b/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/actionlist/ActionListView.kt @@ -146,7 +146,7 @@ fun ActionListView( onDismissRequest = ::onDismiss, modifier = modifier, ) { - SheetContent( + ActionListViewContent( state = state, onActionClick = ::onItemActionClick, onEmojiReactionClick = ::onEmojiReactionClick, @@ -161,7 +161,7 @@ fun ActionListView( } @Composable -private fun SheetContent( +private fun ActionListViewContent( state: ActionListState, onActionClick: (TimelineItemAction) -> Unit, onEmojiReactionClick: (String) -> Unit, @@ -442,10 +442,10 @@ private fun EmojiButton( @PreviewsDayNight @Composable -internal fun SheetContentPreview( +internal fun ActionListViewContentPreview( @PreviewParameter(ActionListStateProvider::class) state: ActionListState ) = ElementPreview { - SheetContent( + ActionListViewContent( state = state, onActionClick = {}, onEmojiReactionClick = {}, diff --git a/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/reactionsummary/ReactionSummaryView.kt b/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/reactionsummary/ReactionSummaryView.kt index ba3d7c4348..ee440e707d 100644 --- a/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/reactionsummary/ReactionSummaryView.kt +++ b/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/reactionsummary/ReactionSummaryView.kt @@ -89,14 +89,14 @@ fun ReactionSummaryView( sheetState = sheetState, modifier = modifier ) { - SheetContent(summary = state.target) + ReactionSummaryViewContent(summary = state.target) } } } @OptIn(ExperimentalFoundationApi::class) @Composable -private fun SheetContent( +private fun ReactionSummaryViewContent( summary: ReactionSummaryState.Summary, ) { val animationScope = rememberCoroutineScope() @@ -274,8 +274,8 @@ private fun SenderRow( @PreviewsDayNight @Composable -internal fun SheetContentPreview( +internal fun ReactionSummaryViewContentPreview( @PreviewParameter(ReactionSummaryStateProvider::class) state: ReactionSummaryState ) = ElementPreview { - SheetContent(summary = state.target as ReactionSummaryState.Summary) + ReactionSummaryViewContent(summary = state.target as ReactionSummaryState.Summary) } From ab59a73a22fe4b893c5814ae2371e1210114622c Mon Sep 17 00:00:00 2001 From: ElementBot Date: Fri, 18 Oct 2024 14:03:19 +0000 Subject: [PATCH 3/3] Update screenshots --- ...s.messages.impl.actionlist_ActionListViewContent_Day_0_en.png} | 0 ....messages.impl.actionlist_ActionListViewContent_Day_10_en.png} | 0 ....messages.impl.actionlist_ActionListViewContent_Day_11_en.png} | 0 ....messages.impl.actionlist_ActionListViewContent_Day_12_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_1_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_2_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_3_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_4_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_5_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_6_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_7_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_8_en.png} | 0 ...s.messages.impl.actionlist_ActionListViewContent_Day_9_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_0_en.png} | 0 ...essages.impl.actionlist_ActionListViewContent_Night_10_en.png} | 0 ...essages.impl.actionlist_ActionListViewContent_Night_11_en.png} | 0 ...essages.impl.actionlist_ActionListViewContent_Night_12_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_1_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_2_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_3_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_4_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_5_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_6_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_7_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_8_en.png} | 0 ...messages.impl.actionlist_ActionListViewContent_Night_9_en.png} | 0 ...nents.reactionsummary_ReactionSummaryViewContent_Day_0_en.png} | 0 ...nts.reactionsummary_ReactionSummaryViewContent_Night_0_en.png} | 0 28 files changed, 0 insertions(+), 0 deletions(-) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_0_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_0_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_10_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_10_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_11_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_11_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_12_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_12_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_1_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_1_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_2_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_2_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_3_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_3_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_4_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_4_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_5_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_5_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_6_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_6_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_7_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_7_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_8_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_8_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Day_9_en.png => features.messages.impl.actionlist_ActionListViewContent_Day_9_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_0_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_0_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_10_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_10_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_11_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_11_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_12_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_12_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_1_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_1_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_2_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_2_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_3_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_3_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_4_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_4_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_5_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_5_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_6_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_6_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_7_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_7_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_8_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_8_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.actionlist_SheetContent_Night_9_en.png => features.messages.impl.actionlist_ActionListViewContent_Night_9_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.timeline.components.reactionsummary_SheetContent_Day_0_en.png => features.messages.impl.timeline.components.reactionsummary_ReactionSummaryViewContent_Day_0_en.png} (100%) rename tests/uitests/src/test/snapshots/images/{features.messages.impl.timeline.components.reactionsummary_SheetContent_Night_0_en.png => features.messages.impl.timeline.components.reactionsummary_ReactionSummaryViewContent_Night_0_en.png} (100%) diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_0_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_0_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_0_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_0_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_10_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_10_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_10_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_10_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_11_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_11_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_11_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_11_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_12_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_12_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_12_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_12_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_1_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_1_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_1_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_1_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_2_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_2_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_2_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_2_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_3_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_3_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_3_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_3_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_4_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_4_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_4_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_4_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_5_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_5_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_5_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_5_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_6_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_6_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_6_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_6_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_7_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_7_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_7_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_7_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_8_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_8_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_8_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_8_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_9_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_9_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Day_9_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Day_9_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_0_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_0_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_0_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_0_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_10_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_10_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_10_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_10_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_11_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_11_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_11_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_11_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_12_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_12_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_12_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_12_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_1_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_1_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_1_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_1_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_2_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_2_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_2_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_2_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_3_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_3_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_3_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_3_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_4_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_4_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_4_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_4_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_5_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_5_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_5_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_5_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_6_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_6_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_6_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_6_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_7_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_7_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_7_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_7_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_8_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_8_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_8_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_8_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_9_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_9_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_SheetContent_Night_9_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.actionlist_ActionListViewContent_Night_9_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_SheetContent_Day_0_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_ReactionSummaryViewContent_Day_0_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_SheetContent_Day_0_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_ReactionSummaryViewContent_Day_0_en.png diff --git a/tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_SheetContent_Night_0_en.png b/tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_ReactionSummaryViewContent_Night_0_en.png similarity index 100% rename from tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_SheetContent_Night_0_en.png rename to tests/uitests/src/test/snapshots/images/features.messages.impl.timeline.components.reactionsummary_ReactionSummaryViewContent_Night_0_en.png