use of android.support.test.filters.MediumTest in project material-components-android by material-components.
the class SnackbarWithTranslucentNavBarTest method testDrawsAboveNavigationBar.
@Test
@MediumTest
public void testDrawsAboveNavigationBar() {
// Show a simple Snackbar and wait for it to be shown
final Snackbar snackbar = Snackbar.make(mCoordinatorLayout, MESSAGE_TEXT, Snackbar.LENGTH_SHORT);
SnackbarUtils.showTransientBottomBarAndWaitUntilFullyShown(snackbar);
final WindowInsetsCompat colLastInsets = mCoordinatorLayout.getLastWindowInsets();
assertNotNull(colLastInsets);
// Check that the Snackbar view has padding set to display above the nav bar
final View view = snackbar.getView();
assertNotNull(view);
assertEquals(colLastInsets.getSystemWindowInsetBottom(), view.getPaddingBottom());
}
use of android.support.test.filters.MediumTest in project android_frameworks_base by AOSPA.
the class LoaderLifecycleTest method loaderIdentityTest.
@Test
@MediumTest
public void loaderIdentityTest() throws Throwable {
mActivityRule.runOnUiThread(() -> {
final Handler h = new Handler();
final FragmentController fc1 = FragmentController.createController(new TestFragmentHostCallback(mActivityRule.getActivity(), h, 0));
fc1.attachHost(null);
fc1.dispatchCreate();
final FragmentManager fm1 = fc1.getFragmentManager();
final Fragment f1 = new Fragment();
fm1.beginTransaction().add(f1, "one").commitNow();
// Removing and re-adding a fragment completely will destroy its LoaderManager.
// Keep the first one here to confirm this later.
final LoaderManager lm1 = f1.getLoaderManager();
// Remove the fragment, add a second one, and re-add the first to
// force its internal index to change. The tests below should still remain consistent.
final Fragment f2 = new Fragment();
fm1.beginTransaction().remove(f1).commitNow();
fm1.beginTransaction().add(f2, "two").commitNow();
fm1.beginTransaction().add(f1, "one").commitNow();
// We'll check this to see if we get the same instance back later
// as passed through NonConfigurationInstance. If the keys stay consistent
// across fragment remove/re-add, this will be consistent.
final LoaderManager lm12 = f1.getLoaderManager();
assertNotSame("fully removed and re-added fragment got same LoaderManager", lm1, lm12);
fc1.dispatchActivityCreated();
fc1.noteStateNotSaved();
fc1.execPendingActions();
fc1.doLoaderStart();
fc1.dispatchStart();
fc1.reportLoaderStart();
fc1.dispatchResume();
fc1.execPendingActions();
// Bring the state back down to destroyed, simulating an activity restart
fc1.dispatchPause();
final Parcelable savedState = fc1.saveAllState();
fc1.doLoaderStop(true);
fc1.dispatchStop();
final FragmentManagerNonConfig nonconf = fc1.retainNestedNonConfig();
final ArrayMap<String, LoaderManager> loaderNonConfig = fc1.retainLoaderNonConfig();
assertNotNull("loaderNonConfig was null", loaderNonConfig);
fc1.dispatchDestroy();
// Create the new controller and restore state
final FragmentController fc2 = FragmentController.createController(new TestFragmentHostCallback(mActivityRule.getActivity(), h, 0));
final FragmentManager fm2 = fc2.getFragmentManager();
fc2.attachHost(null);
// Make sure nothing blows up on a null here
fc2.restoreLoaderNonConfig(null);
// for real this time
fc2.restoreLoaderNonConfig(loaderNonConfig);
fc2.restoreAllState(savedState, nonconf);
fc2.dispatchCreate();
fc2.dispatchActivityCreated();
fc2.noteStateNotSaved();
fc2.execPendingActions();
fc2.doLoaderStart();
fc2.dispatchStart();
fc2.reportLoaderStart();
fc2.dispatchResume();
fc2.execPendingActions();
// Test that the fragments are in the configuration we expect
final Fragment restoredOne = fm2.findFragmentByTag("one");
final LoaderManager lm2 = restoredOne.getLoaderManager();
assertSame("didn't get same LoaderManager instance back", lm2, lm12);
// Bring the state back down to destroyed before we finish the test
fc2.dispatchPause();
fc2.saveAllState();
fc2.dispatchStop();
fc2.dispatchDestroy();
});
}
use of android.support.test.filters.MediumTest in project android_frameworks_base by AOSPA.
the class LoaderLifecycleTest method backStackLoaderIdentityTest.
@Test
@MediumTest
public void backStackLoaderIdentityTest() throws Throwable {
mActivityRule.runOnUiThread(() -> {
final Handler h = new Handler();
final FragmentHostCallback host1 = new TestFragmentHostCallback(mActivityRule.getActivity(), h, 0);
final FragmentController fc1 = FragmentController.createController(host1);
fc1.attachHost(null);
fc1.dispatchCreate();
final FragmentManager fm1 = fc1.getFragmentManager();
final Fragment f1 = new Fragment();
fm1.beginTransaction().add(f1, "one").commitNow();
final LoaderManager lm1 = f1.getLoaderManager();
// Put the fragment on the back stack.
fm1.beginTransaction().remove(f1).addToBackStack("backentry").commit();
fm1.executePendingTransactions();
fc1.dispatchActivityCreated();
fc1.noteStateNotSaved();
fc1.execPendingActions();
fc1.doLoaderStart();
fc1.dispatchStart();
fc1.reportLoaderStart();
fc1.dispatchResume();
fc1.execPendingActions();
// Bring the state back down to destroyed, simulating an activity restart
fc1.dispatchPause();
final Parcelable savedState = fc1.saveAllState();
fc1.doLoaderStop(true);
fc1.dispatchStop();
final FragmentManagerNonConfig nonconf = fc1.retainNestedNonConfig();
final ArrayMap<String, LoaderManager> loaderNonConfig = fc1.retainLoaderNonConfig();
assertNotNull("loaderNonConfig was null", loaderNonConfig);
fc1.dispatchDestroy();
// Create the new controller and restore state
final FragmentHostCallback host2 = new TestFragmentHostCallback(mActivityRule.getActivity(), h, 0);
final FragmentController fc2 = FragmentController.createController(host2);
final FragmentManager fm2 = fc2.getFragmentManager();
fc2.attachHost(null);
fc2.restoreLoaderNonConfig(loaderNonConfig);
fc2.restoreAllState(savedState, nonconf);
fc2.dispatchCreate();
fc2.dispatchActivityCreated();
fc2.noteStateNotSaved();
fc2.execPendingActions();
fc2.doLoaderStart();
fc2.dispatchStart();
fc2.reportLoaderStart();
fc2.dispatchResume();
fc2.execPendingActions();
assertNotSame("LoaderManager kept reference to old FragmentHostCallback", host1, lm1.getFragmentHostCallback());
assertSame("LoaderManager did not refrence new FragmentHostCallback", host2, lm1.getFragmentHostCallback());
// Test that the fragments are in the configuration we expect
final Fragment restoredOne = fm2.findFragmentByTag("one");
final LoaderManager lm2 = restoredOne.getLoaderManager();
assertSame("didn't get same LoaderManager instance back", lm2, lm1);
// Bring the state back down to destroyed before we finish the test
fc2.dispatchPause();
fc2.saveAllState();
fc2.dispatchStop();
fc2.dispatchDestroy();
});
}
use of android.support.test.filters.MediumTest in project material-components-android by material-components.
the class BottomSheetBehaviorTest method testSkipCollapsed.
@Test
@MediumTest
public void testSkipCollapsed() throws Throwable {
getBehavior().setSkipCollapsed(true);
checkSetState(BottomSheetBehavior.STATE_EXPANDED, ViewMatchers.isDisplayed());
Espresso.onView(ViewMatchers.withId(R.id.bottom_sheet)).perform(DesignViewActions.withCustomConstraints(new GeneralSwipeAction(Swipe.FAST, // actually falls onto the view on Gingerbread
new CoordinatesProvider() {
@Override
public float[] calculateCoordinates(View view) {
int[] location = new int[2];
view.getLocationInWindow(location);
return new float[] { view.getWidth() / 2, location[1] + 1 };
}
}, // sheet is collapsed, not hidden
new CoordinatesProvider() {
@Override
public float[] calculateCoordinates(View view) {
BottomSheetBehavior behavior = getBehavior();
return new float[] { // x: center of the bottom sheet
view.getWidth() / 2, // y: just above the peek height
view.getHeight() - behavior.getPeekHeight() };
}
}, Press.FINGER), ViewMatchers.isDisplayingAtLeast(5)));
registerIdlingResourceCallback();
try {
Espresso.onView(ViewMatchers.withId(R.id.bottom_sheet)).check(ViewAssertions.matches(not(ViewMatchers.isDisplayed())));
assertThat(getBehavior().getState(), is(BottomSheetBehavior.STATE_HIDDEN));
} finally {
unregisterIdlingResourceCallback();
}
}
use of android.support.test.filters.MediumTest in project material-components-android by material-components.
the class BottomSheetBehaviorTest method testSwipeDownToCollapse.
@Test
@MediumTest
public void testSwipeDownToCollapse() throws Throwable {
checkSetState(BottomSheetBehavior.STATE_EXPANDED, ViewMatchers.isDisplayed());
Espresso.onView(ViewMatchers.withId(R.id.bottom_sheet)).perform(DesignViewActions.withCustomConstraints(new GeneralSwipeAction(Swipe.FAST, // actually falls onto the view on Gingerbread
new CoordinatesProvider() {
@Override
public float[] calculateCoordinates(View view) {
int[] location = new int[2];
view.getLocationInWindow(location);
return new float[] { view.getWidth() / 2, location[1] + 1 };
}
}, // sheet is collapsed, not hidden
new CoordinatesProvider() {
@Override
public float[] calculateCoordinates(View view) {
BottomSheetBehavior behavior = getBehavior();
return new float[] { // x: center of the bottom sheet
view.getWidth() / 2, // y: just above the peek height
view.getHeight() - behavior.getPeekHeight() };
}
}, Press.FINGER), ViewMatchers.isDisplayingAtLeast(5)));
registerIdlingResourceCallback();
try {
Espresso.onView(ViewMatchers.withId(R.id.bottom_sheet)).check(ViewAssertions.matches(ViewMatchers.isDisplayed()));
assertThat(getBehavior().getState(), is(BottomSheetBehavior.STATE_COLLAPSED));
} finally {
unregisterIdlingResourceCallback();
}
}
Aggregations