summaryrefslogtreecommitdiffstats
path: root/core/tests/coretests
diff options
context:
space:
mode:
authorClara Bayarri <clarabayarri@google.com>2015-05-06 16:01:57 +0100
committerClara Bayarri <clarabayarri@google.com>2015-05-14 10:24:41 +0100
commite9b17ec0fdb995ff23dd3b9d0b06bae8522edbf9 (patch)
treee388624df359f9e0caf25a6da8fa1265ee8c9cf5 /core/tests/coretests
parentfbb34dd8df7bc89ae972c545130e76c5bbb4176e (diff)
downloadframeworks_base-e9b17ec0fdb995ff23dd3b9d0b06bae8522edbf9.zip
frameworks_base-e9b17ec0fdb995ff23dd3b9d0b06bae8522edbf9.tar.gz
frameworks_base-e9b17ec0fdb995ff23dd3b9d0b06bae8522edbf9.tar.bz2
Tests for ActionBarContainer's startActionModeForChild
Change-Id: Ida782cb72f26689ec49a6674dcaeee7d2fb196d3
Diffstat (limited to 'core/tests/coretests')
-rw-r--r--core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java93
1 files changed, 93 insertions, 0 deletions
diff --git a/core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java b/core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java
new file mode 100644
index 0000000..4a8e18d
--- /dev/null
+++ b/core/tests/coretests/src/com/android/internal/widget/ActionBarContainerTest.java
@@ -0,0 +1,93 @@
+/*
+ * 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 com.android.internal.widget;
+
+import android.content.Context;
+import android.test.AndroidTestCase;
+import android.view.ActionMode;
+import android.view.View;
+import android.view.ViewGroup;
+
+/**
+ * Tests for {@link ActionBarContainer}.
+ */
+public class ActionBarContainerTest extends AndroidTestCase {
+ private ActionBarContainer mActionBarContainer;
+
+ @Override
+ protected void setUp() throws Exception {
+ super.setUp();
+ mActionBarContainer = new ActionBarContainer(mContext);
+ }
+
+ public void testPrimaryActionModesAreStopped() {
+ TestViewGroup viewGroup = new TestViewGroup(mContext);
+ viewGroup.addView(mActionBarContainer);
+
+ ActionMode mode = mActionBarContainer.startActionModeForChild(
+ null, null, ActionMode.TYPE_PRIMARY);
+
+ assertNull(mode);
+ // Should not bubble up.
+ assertFalse(viewGroup.isStartActionModeForChildTypedCalled);
+ assertFalse(viewGroup.isStartActionModeForChildTypelessCalled);
+
+ mode = mActionBarContainer.startActionModeForChild(null, null);
+
+ assertNull(mode);
+ // Should not bubble up.
+ assertFalse(viewGroup.isStartActionModeForChildTypedCalled);
+ assertFalse(viewGroup.isStartActionModeForChildTypelessCalled);
+ }
+
+ public void testFloatingActionModesAreBubbledUp() {
+ TestViewGroup viewGroup = new TestViewGroup(mContext);
+ viewGroup.addView(mActionBarContainer);
+
+ ActionMode mode = mActionBarContainer.startActionModeForChild(
+ null, null, ActionMode.TYPE_FLOATING);
+
+ // Should bubble up.
+ assertNotNull(mode);
+ assertTrue(viewGroup.isStartActionModeForChildTypedCalled);
+ }
+
+ private static class TestViewGroup extends ViewGroup {
+ boolean isStartActionModeForChildTypedCalled = false;
+ boolean isStartActionModeForChildTypelessCalled = false;
+
+ public TestViewGroup(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) {}
+ }
+}