blob: 1cf1ebd0f1ee1b66fb0277dfb25fb409a9d7dd25 [file] [log] [blame]
/*
* Copyright (C) 2015 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.app.cts;
import android.app.SearchDialog;
import android.content.Context;
import android.test.ActivityInstrumentationTestCase2;
import android.test.InstrumentationTestCase;
import android.view.ActionMode;
import android.view.View;
import android.view.ViewGroup;
/**
* Test {@link SearchDialog}.
*/
public class SearchDialogTest extends InstrumentationTestCase {
private Context mContext;
@Override
protected void setUp() throws Exception {
super.setUp();
mContext = getInstrumentation().getTargetContext();
}
public void testPrimaryActionModesAreStopped() {
SearchDialog.SearchBar searchBar = new SearchDialog.SearchBar(mContext);
MockViewGroup viewGroup = new MockViewGroup(mContext);
viewGroup.addView(searchBar);
ActionMode mode = searchBar.startActionModeForChild(null, null, ActionMode.TYPE_PRIMARY);
assertNull(mode);
// Should not bubble up.
assertFalse(viewGroup.isStartActionModeForChildTypedCalled);
assertFalse(viewGroup.isStartActionModeForChildTypelessCalled);
mode = searchBar.startActionModeForChild(null, null);
assertNull(mode);
// Should not bubble up.
assertFalse(viewGroup.isStartActionModeForChildTypedCalled);
assertFalse(viewGroup.isStartActionModeForChildTypelessCalled);
}
public void testFloatingActionModesAreBubbledUp() {
SearchDialog.SearchBar searchBar = new SearchDialog.SearchBar(mContext);
MockViewGroup viewGroup = new MockViewGroup(mContext);
viewGroup.addView(searchBar);
searchBar.startActionModeForChild(null, null, ActionMode.TYPE_FLOATING);
// Should bubble up.
assertTrue(viewGroup.isStartActionModeForChildTypedCalled);
}
private static class MockViewGroup extends ViewGroup {
boolean isStartActionModeForChildTypedCalled = false;
boolean isStartActionModeForChildTypelessCalled = false;
public MockViewGroup(Context context) {
super(context);
}
@Override
public ActionMode startActionModeForChild(View originalView, ActionMode.Callback callback) {
isStartActionModeForChildTypelessCalled = true;
return super.startActionModeForChild(originalView, callback);
}
@Override
public ActionMode startActionModeForChild(
View originalView, ActionMode.Callback callback, int type) {
isStartActionModeForChildTypedCalled = true;
return super.startActionModeForChild(originalView, callback, type);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {}
}
}