use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.
the class RequestFocusTest method testOnFocusChangeCallbackOrderWhenClearingFocusOfNotFirstFocusable.
/**
* This tests check whether the on focus change callbacks are invoked in
* the proper order when a View loses focus and the framework gives it to
* the fist focusable one.
*
* @throws Exception
*/
@UiThreadTest
public void testOnFocusChangeCallbackOrderWhenClearingFocusOfNotFirstFocusable() throws Exception {
Button clearingFocusButton = mTopRightButton;
Button gainingFocusButton = mTopLeftButton;
// Make sure that the clearing focus View is not the first focusable.
View focusCandidate = clearingFocusButton.getRootView().getParent().focusSearch(null, View.FOCUS_FORWARD);
assertNotSame("The clearing focus button is not the first focusable.", clearingFocusButton, focusCandidate);
assertSame("The gaining focus button is the first focusable.", gainingFocusButton, focusCandidate);
// Focus the clearing focus button.
clearingFocusButton.requestFocus();
assertTrue(clearingFocusButton.hasFocus());
// Register the invocation order checker.
CombinedListeners mock = mock(CombinedListeners.class);
clearingFocusButton.setOnFocusChangeListener(mock);
gainingFocusButton.setOnFocusChangeListener(mock);
clearingFocusButton.getViewTreeObserver().addOnGlobalFocusChangeListener(mock);
// Try to clear focus.
clearingFocusButton.clearFocus();
// Check that no callback was invoked since focus did not move.
InOrder inOrder = inOrder(mock);
inOrder.verify(mock).onFocusChange(clearingFocusButton, false);
inOrder.verify(mock).onGlobalFocusChanged(clearingFocusButton, gainingFocusButton);
inOrder.verify(mock).onFocusChange(gainingFocusButton, true);
}
use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.
the class WindowDecorActionBarTest method testStartActionModeFinishesPreviousMode.
@UiThreadTest
public void testStartActionModeFinishesPreviousMode() {
ActionMode mode1 = mWindowDecorActionBar.startActionMode(mCallback);
ActionMode mode2 = mWindowDecorActionBar.startActionMode(new MockActionModeCallback());
assertNotNull(mode1);
assertNotNull(mode2);
assertTrue(mCallback.mIsDestroyActionModeCalled);
}
use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.
the class ViewStubTest method testInflated.
@UiThreadTest
@MediumTest
public void testInflated() throws Exception {
final StubbedView activity = getActivity();
final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStub);
final View swapped = stub.inflate();
assertNotNull("The inflated view is null", swapped);
}
use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.
the class ViewAttachTest method testRoundScrollbars.
/**
* Make sure that on any attached view, if the view is full-screen and hosted
* on a round device, the round scrollbars will be displayed even if the activity
* window is offset.
*
* @throws Throwable
*/
@UiThreadTest
public void testRoundScrollbars() throws Throwable {
final ViewAttachTestActivity activity = getActivity();
final View rootView = activity.getWindow().getDecorView();
final WindowManager.LayoutParams params = new WindowManager.LayoutParams(rootView.getWidth(), rootView.getHeight(), 50, /* xPosition */
0, /* yPosition */
WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY, WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN, PixelFormat.TRANSLUCENT);
rootView.setLayoutParams(params);
View contentView = activity.findViewById(R.id.view_attach_view);
boolean shouldDrawRoundScrollbars = contentView.shouldDrawRoundScrollbar();
if (activity.getResources().getConfiguration().isScreenRound()) {
assertTrue(shouldDrawRoundScrollbars);
} else {
// Never draw round scrollbars on non-round devices.
assertFalse(shouldDrawRoundScrollbars);
}
}
use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.
the class ViewGroupChildrenTest method testAddChildAtFront.
@UiThreadTest
@MediumTest
public void testAddChildAtFront() throws Exception {
// 24 should be greater than ViewGroup.ARRAY_CAPACITY_INCREMENT
for (int i = 0; i < 24; i++) {
View view = createView(String.valueOf(i + 1));
mGroup.addView(view);
}
View view = createView("X");
mGroup.addView(view, 0);
assertEquals(25, mGroup.getChildCount());
ViewAsserts.assertGroupIntegrity(mGroup);
ViewAsserts.assertGroupContains(mGroup, view);
assertSame(view, mGroup.getChildAt(0));
}
Aggregations