mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 11:18:21 +00:00
Bug: 377772352 Test: Presubmit Flag: EXEMPT test refactor Change-Id: I679ae043d617b74a61a682d802c38cc904d2d0c5
104 lines
4.0 KiB
Java
104 lines
4.0 KiB
Java
/*
|
|
* Copyright (C) 2024 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 com.android.launcher3;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
import android.content.Intent;
|
|
import android.platform.test.annotations.LargeTest;
|
|
import android.view.KeyEvent;
|
|
|
|
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
|
|
|
import com.android.launcher3.allapps.ActivityAllAppsContainerView;
|
|
import com.android.launcher3.allapps.SearchRecyclerView;
|
|
import com.android.launcher3.util.BaseLauncherActivityTest;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
|
|
@LargeTest
|
|
@RunWith(AndroidJUnit4.class)
|
|
public class LauncherIntentTest extends BaseLauncherActivityTest<Launcher> {
|
|
|
|
public final Intent allAppsIntent = new Intent(Intent.ACTION_ALL_APPS);
|
|
|
|
@Before
|
|
public void setUp() {
|
|
loadLauncherSync();
|
|
}
|
|
|
|
@Test
|
|
public void testAllAppsIntent() {
|
|
// Try executing ALL_APPS intent
|
|
executeOnLauncher(launcher -> launcher.onNewIntent(allAppsIntent));
|
|
// A-Z view with Main adapter should be loaded
|
|
assertOnMainAdapterAToZView();
|
|
|
|
// Try Moving to search view now
|
|
moveToSearchView();
|
|
// Try executing ALL_APPS intent
|
|
executeOnLauncher(launcher -> launcher.onNewIntent(allAppsIntent));
|
|
// A-Z view with Main adapter should be loaded
|
|
assertOnMainAdapterAToZView();
|
|
}
|
|
|
|
// Highlights the search bar, then fills text to display the SearchView.
|
|
private void moveToSearchView() {
|
|
// All Apps view should be loaded
|
|
assertTrue("Launcher internal state is not All Apps",
|
|
isInState(() -> LauncherState.ALL_APPS));
|
|
executeOnLauncher(launcher -> launcher.getAppsView().getSearchView().requestFocus());
|
|
// Search view should be in focus
|
|
waitForLauncherCondition("Search view is not in focus.",
|
|
launcher -> launcher.getAppsView().getSearchView().hasFocus());
|
|
|
|
injectKeyEvent(KeyEvent.KEYCODE_C, true);
|
|
// Upon key press, search recycler view should be loaded
|
|
waitForLauncherCondition("Search view not active.",
|
|
launcher -> launcher.getAppsView().getActiveRecyclerView()
|
|
instanceof SearchRecyclerView);
|
|
|
|
injectKeyEvent(KeyEvent.KEYCODE_C, false);
|
|
}
|
|
|
|
// Checks if main adapter view is selected, search bar is out of focus and scroller is at start.
|
|
private void assertOnMainAdapterAToZView() {
|
|
// All Apps State should be loaded
|
|
assertTrue("Launcher internal state is not All Apps",
|
|
isInState(() -> LauncherState.ALL_APPS));
|
|
|
|
// A-Z recycler view should be active.
|
|
waitForLauncherCondition("A-Z view not active.",
|
|
launcher -> !(launcher.getAppsView().getActiveRecyclerView()
|
|
instanceof SearchRecyclerView));
|
|
// Personal Adapter should be selected.
|
|
waitForLauncherCondition("Not on Main Adapter View",
|
|
launcher -> launcher.getAppsView().getCurrentPage()
|
|
== ActivityAllAppsContainerView.AdapterHolder.MAIN);
|
|
// Search view should not be in focus
|
|
waitForLauncherCondition("Search view has focus.",
|
|
launcher -> !launcher.getAppsView().getSearchView().hasFocus());
|
|
// Scroller should be at top
|
|
executeOnLauncher(launcher -> assertEquals(
|
|
"All Apps started in already scrolled state", 0,
|
|
getAllAppsScroll(launcher)));
|
|
}
|
|
}
|