/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.support.design.widget; import static android.support.design.testutils.AppBarLayoutMatchers.isCollapsed; import static android.support.design.testutils.SwipeUtils.swipeUp; import static android.support.design.testutils.TestUtils.rotateOrientation; import static android.support.design.testutils.TestUtilsMatchers.hasZ; import static android.support.test.espresso.Espresso.onView; import static android.support.test.espresso.assertion.ViewAssertions.matches; import static android.support.test.espresso.matcher.ViewMatchers.withId; import android.app.Activity; import android.support.design.test.R; import org.junit.Test; public class AppBarWithCollapsingToolbarStateRestoreTest extends BaseInstrumentationTestCase<AppBarLayoutCollapsePinTestActivity> { public AppBarWithCollapsingToolbarStateRestoreTest() { super(AppBarLayoutCollapsePinTestActivity.class); } @Test public void testRotateAndRestore() { Activity activity = mActivityTestRule.getActivity(); final AppBarLayout appBar = (AppBarLayout) activity.findViewById(R.id.app_bar); // Swipe up and collapse the AppBarLayout onView(withId(R.id.coordinator_layout)) .perform(swipeUp( appBar.getLeft() + (appBar.getWidth() / 2), appBar.getBottom() + 20, appBar.getHeight())); onView(withId(R.id.app_bar)) .check(matches(hasZ())) .check(matches(isCollapsed())); // Now rotate the Activity rotateOrientation(activity); // And check that the app bar still is restored correctly onView(withId(R.id.app_bar)) .check(matches(hasZ())) .check(matches(isCollapsed())); } }