This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Use Instrumentation.waitForIdleSync() after rotation requests. #51169
Merged
matanlurey
merged 3 commits into
flutter:main
from
matanlurey:scenario_app-waitForIdleSync
Mar 4, 2024
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,12 @@ | |
|
||
package dev.flutter.scenariosui; | ||
|
||
import android.app.Instrumentation; | ||
import android.content.Intent; | ||
import android.content.pm.ActivityInfo; | ||
import androidx.annotation.NonNull; | ||
import androidx.test.filters.LargeTest; | ||
import androidx.test.platform.app.InstrumentationRegistry; | ||
import androidx.test.rule.ActivityTestRule; | ||
import androidx.test.runner.AndroidJUnit4; | ||
import dev.flutter.scenarios.PlatformViewsActivity; | ||
|
@@ -20,7 +22,8 @@ | |
@RunWith(AndroidJUnit4.class) | ||
@LargeTest | ||
public class PlatformViewWithSurfaceViewUiTest { | ||
Intent intent; | ||
private Instrumentation instrumentation; | ||
private Intent intent; | ||
|
||
@Rule @NonNull | ||
public ActivityTestRule<PlatformViewsActivity> activityRule = | ||
|
@@ -33,6 +36,7 @@ private static String goldName(String suffix) { | |
|
||
@Before | ||
public void setUp() { | ||
instrumentation = InstrumentationRegistry.getInstrumentation(); | ||
intent = new Intent(Intent.ACTION_MAIN); | ||
// Render a texture. | ||
intent.putExtra("use_android_view", false); | ||
|
@@ -100,6 +104,7 @@ public void testPlatformViewRotate() throws Exception { | |
intent.putExtra("scenario_name", "platform_view_rotate"); | ||
PlatformViewsActivity activity = activityRule.launchActivity(intent); | ||
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); | ||
instrumentation.waitForIdleSync(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto here - but if you'd rather add a setup method for setting this I guess that's fine too There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah oops, thought I had all of them. I would have tried it locally first but uh: |
||
ScreenshotUtil.capture(activity, goldName("testPlatformViewRotate")); | ||
} | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this be null?
I think what you actually want here is
InstrumentationRegistry.getInstrumentation().waitForIdleSync()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(this one is still missing)