Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
io.flutter.plugin.platform.SingleViewPresentationTest Class Reference

Public Member Functions

void returnsOuterContextInputMethodManager ()
 
void returnsOuterContextInputMethodManager_createDisplayContext ()
 

Detailed Description

Definition at line 27 of file SingleViewPresentationTest.java.

Member Function Documentation

◆ returnsOuterContextInputMethodManager()

void io.flutter.plugin.platform.SingleViewPresentationTest.returnsOuterContextInputMethodManager ( )
inline

Definition at line 30 of file SingleViewPresentationTest.java.

30 {
31 // There's a bug in Android Q caused by the IMM being instanced per display.
32 // https://github.com/flutter/flutter/issues/38375. We need the context returned by
33 // SingleViewPresentation to be consistent from its instantiation instead of defaulting to
34 // what the system would have returned at call time.
35
36 // It's not possible to set up the exact same conditions as the unit test in the bug here,
37 // but we can make sure that we're wrapping the Context passed in at instantiation time and
38 // returning the same InputMethodManager from it. This test passes in a Spy context instance
39 // that initially returns a mock. Without the bugfix this test falls back to Robolectric's
40 // system service instead of the spy's and fails.
41
42 // Create an SVP under test with a Context that returns a local IMM mock.
43 Context context = spy(ApplicationProvider.getApplicationContext());
44 InputMethodManager expected = mock(InputMethodManager.class);
45 when(context.getSystemService(Context.INPUT_METHOD_SERVICE)).thenReturn(expected);
46 DisplayManager dm = (DisplayManager) context.getSystemService(Context.DISPLAY_SERVICE);
47 SingleViewPresentation svp =
48 new SingleViewPresentation(context, dm.getDisplay(0), null, null, null, false);
49
50 // Get the IMM from the SVP's context.
51 InputMethodManager actual =
52 (InputMethodManager) svp.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
53
54 // This should be the mocked instance from construction, not the IMM from the greater
55 // Android OS (or Robolectric's shadow, in this case).
56 assertEquals(expected, actual);
57 }

◆ returnsOuterContextInputMethodManager_createDisplayContext()

void io.flutter.plugin.platform.SingleViewPresentationTest.returnsOuterContextInputMethodManager_createDisplayContext ( )
inline

Definition at line 61 of file SingleViewPresentationTest.java.

61 {
62 // The IMM should also persist across display contexts created from the base context.
63
64 // Create an SVP under test with a Context that returns a local IMM mock.
65 Context context = spy(ApplicationProvider.getApplicationContext());
66 InputMethodManager expected = mock(InputMethodManager.class);
67 when(context.getSystemService(Context.INPUT_METHOD_SERVICE)).thenReturn(expected);
68 Display display =
69 ((DisplayManager) context.getSystemService(Context.DISPLAY_SERVICE)).getDisplay(0);
70 SingleViewPresentation svp =
71 new SingleViewPresentation(context, display, null, null, null, false);
72
73 // Get the IMM from the SVP's context.
74 InputMethodManager actual =
75 (InputMethodManager)
76 svp.getContext()
77 .createDisplayContext(display)
78 .getSystemService(Context.INPUT_METHOD_SERVICE);
79
80 // This should be the mocked instance from construction, not the IMM from the greater
81 // Android OS (or Robolectric's shadow, in this case).
82 assertEquals(expected, actual);
83 }

The documentation for this class was generated from the following file: