OSDN Git Service

original
[gb-231r1-is01/GB_2.3_IS01.git] / cts / tests / tests / app / src / android / app / cts / AlertDialogTest.java
diff --git a/cts/tests/tests/app/src/android/app/cts/AlertDialogTest.java b/cts/tests/tests/app/src/android/app/cts/AlertDialogTest.java
new file mode 100644 (file)
index 0000000..4ab57da
--- /dev/null
@@ -0,0 +1,488 @@
+/*
+ * Copyright (C) 2008 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.AlertDialog;
+import android.app.Instrumentation;
+import android.content.Context;
+import android.content.DialogInterface;
+import android.content.DialogInterface.OnCancelListener;
+import android.content.DialogInterface.OnClickListener;
+import android.graphics.drawable.Drawable;
+import android.os.Bundle;
+import android.os.Message;
+import android.test.ActivityInstrumentationTestCase2;
+import android.view.KeyEvent;
+import android.view.View;
+import android.widget.Button;
+import dalvik.annotation.TestLevel;
+import dalvik.annotation.TestTargetClass;
+import dalvik.annotation.TestTargetNew;
+import dalvik.annotation.TestTargets;
+
+/*
+ * Test AlertDialog
+ */
+@TestTargetClass(AlertDialog.class)
+public class AlertDialogTest extends ActivityInstrumentationTestCase2<DialogStubActivity> {
+    private static final String ALERTDIALOG_CUSTOM_TITLE = "Hello, World!";
+
+    private Instrumentation mInstrumentation;
+    private DialogStubActivity mActivity;
+    private Button mPositiveButton;
+    private Button mNegativeButton;
+    private Button mNeutralButton;
+
+    public AlertDialogTest() {
+        super("com.android.cts.stub", DialogStubActivity.class);
+    }
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        mInstrumentation = getInstrumentation();
+        mActivity = getActivity();
+    }
+
+    protected void popDialog(int index) {
+        while (index != 0) {
+            sendKeys(KeyEvent.KEYCODE_DPAD_DOWN);
+            index--;
+        }
+        sendKeys(KeyEvent.KEYCODE_DPAD_CENTER);
+    }
+
+    @TestTargets({
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "getButton",
+            args = {int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "onCreate",
+            args = {Bundle.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton",
+            args = {int.class, CharSequence.class, OnClickListener.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setIcon",
+            args = {Drawable.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setIcon",
+            args = {int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setMessage",
+            args = {CharSequence.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setTitle",
+            args = {CharSequence.class}
+        )
+    })
+    public void testAlertDialog() throws Throwable {
+        doTestAlertDialog(DialogStubActivity.TEST_ALERTDIALOG);
+    }
+
+    private void doTestAlertDialog(int index) throws Throwable {
+        popDialog(index);
+        assertTrue(mActivity.getDialog().isShowing());
+
+        mPositiveButton = ((AlertDialog) (mActivity.getDialog())).getButton(
+                DialogInterface.BUTTON_POSITIVE);
+        assertNotNull(mPositiveButton);
+        assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_positive),
+                mPositiveButton.getText());
+        mNeutralButton = ((AlertDialog) (mActivity.getDialog())).getButton(
+                DialogInterface.BUTTON_NEUTRAL);
+        assertNotNull(mNeutralButton);
+        assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_neutral),
+                mNeutralButton.getText());
+        mNegativeButton = ((AlertDialog) (mActivity.getDialog())).getButton(
+                DialogInterface.BUTTON_NEGATIVE);
+        assertNotNull(mNegativeButton);
+        assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_negative),
+                mNegativeButton.getText());
+
+        assertFalse(mActivity.isPositiveButtonClicked);
+        performClick(mPositiveButton);
+        assertTrue(mActivity.isPositiveButtonClicked);
+
+        assertFalse(mActivity.isNegativeButtonClicked);
+        performClick(mNegativeButton);
+        assertTrue(mActivity.isNegativeButtonClicked);
+
+        assertFalse(mActivity.isNeutralButtonClicked);
+        performClick(mNeutralButton);
+        assertTrue(mActivity.isNeutralButtonClicked);
+    }
+
+    @TestTargets({
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "getButton",
+            args = {int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "getListView",
+            args = {}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton",
+            args = {CharSequence.class, OnClickListener.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton",
+            args = {int.class, CharSequence.class, Message.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton2",
+            args = {CharSequence.class, OnClickListener.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "Test setButton3",
+            method = "setButton3",
+            args = {CharSequence.class, OnClickListener.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setIcon",
+            args = {int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setInverseBackgroundForced",
+            args = {boolean.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setMessage",
+            args = {CharSequence.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setTitle",
+            args = {CharSequence.class}
+        )
+    })
+    public void testAlertDialogDeprecatedAPI() throws Throwable {
+        doTestAlertDialog(DialogStubActivity.TEST_ALERTDIALOG_DEPRECATED);
+    }
+
+    @TestTargets({
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "getButton",
+            args = {int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "getListView",
+            args = {}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton",
+            args = {CharSequence.class, Message.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton",
+            args = {int.class, CharSequence.class, Message.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton2",
+            args = {CharSequence.class, Message.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setButton3",
+            args = {CharSequence.class, Message.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setIcon",
+            args = {int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setInverseBackgroundForced",
+            args = {boolean.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setMessage",
+            args = {CharSequence.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setTitle",
+            args = {CharSequence.class}
+        )
+    })
+    public void testAlertDialogDeprecatedAPIWithMessage() throws Throwable {
+        popDialog(DialogStubActivity.TEST_ALERTDIALOG_DEPRECATED_WITH_MESSAGE);
+        assertTrue(mActivity.getDialog().isShowing());
+
+        mPositiveButton = ((AlertDialog) (mActivity.getDialog())).getButton(
+                DialogInterface.BUTTON_POSITIVE);
+        assertNotNull(mPositiveButton);
+        assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_positive),
+                mPositiveButton.getText());
+        mNegativeButton = ((AlertDialog) (mActivity.getDialog())).getButton(
+                DialogInterface.BUTTON_NEGATIVE);
+        assertNotNull(mNegativeButton);
+        assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_negative),
+                mNegativeButton.getText());
+        mNeutralButton = ((AlertDialog) (mActivity.getDialog())).getButton(
+                DialogInterface.BUTTON_NEUTRAL);
+        assertNotNull(mNeutralButton);
+        assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_neutral),
+                mNeutralButton.getText());
+
+        DialogStubActivity.buttonIndex = 0;
+        performClick(mPositiveButton);
+        assertEquals(DialogInterface.BUTTON_POSITIVE, DialogStubActivity.buttonIndex);
+
+        DialogStubActivity.buttonIndex = 0;
+        performClick(mNeutralButton);
+        assertEquals(DialogInterface.BUTTON_NEUTRAL, DialogStubActivity.buttonIndex);
+
+        DialogStubActivity.buttonIndex = 0;
+        performClick(mNegativeButton);
+        assertEquals(DialogInterface.BUTTON_NEGATIVE, DialogStubActivity.buttonIndex);
+    }
+
+    private void performClick(final Button button) throws Throwable {
+        runTestOnUiThread(new Runnable() {
+            public void run() {
+                button.performClick();
+            }
+        });
+        mInstrumentation.waitForIdleSync();
+    }
+
+    @TestTargets({
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class, int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class, boolean.class, OnCancelListener.class}
+         ),
+        @TestTargetNew(
+           level = TestLevel.COMPLETE,
+           notes = "",
+           method = "setCustomTitle",
+           args = {View.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setMessage",
+            args = {CharSequence.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setView",
+            args = {View.class}
+        )
+    })
+    public void testCustomAlertDialog() {
+        popDialog(DialogStubActivity.TEST_CUSTOM_ALERTDIALOG);
+        assertTrue(mActivity.getDialog().isShowing());
+    }
+
+    @TestTargets({
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class, int.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class, boolean.class, OnCancelListener.class}
+         ),
+        @TestTargetNew(
+           level = TestLevel.COMPLETE,
+           notes = "",
+           method = "setCustomTitle",
+           args = {View.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setMessage",
+            args = {CharSequence.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "setView",
+            args = {View.class, int.class, int.class, int.class, int.class}
+        )
+    })
+    public void testCustomAlertDialogView() {
+        popDialog(DialogStubActivity.TEST_CUSTOM_ALERTDIALOG_VIEW);
+        assertTrue(mActivity.getDialog().isShowing());
+    }
+
+
+    @TestTargets({
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "AlertDialog",
+            args = {Context.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "onKeyDown",
+            args = {int.class, KeyEvent.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "onKeyUp",
+            args = {int.class, KeyEvent.class}
+        ),
+        @TestTargetNew(
+            level = TestLevel.COMPLETE,
+            notes = "",
+            method = "onCreate",
+            args = {Bundle.class}
+        )
+    })
+    public void testCallback() {
+        popDialog(DialogStubActivity.TEST_ALERTDIALOG_CALLBACK);
+        assertTrue(mActivity.onCreateCalled);
+
+        mInstrumentation.sendKeyDownUpSync(KeyEvent.KEYCODE_0);
+        assertTrue(mActivity.onKeyDownCalled);
+        mInstrumentation.sendKeyDownUpSync(KeyEvent.KEYCODE_0);
+        assertTrue(mActivity.onKeyUpCalled);
+    }
+
+    @TestTargetNew(
+        level = TestLevel.COMPLETE,
+        notes = "",
+        method = "AlertDialog",
+        args = {Context.class, int.class}
+    )
+    public void testAlertDialogTheme() throws Exception {
+        popDialog(DialogStubActivity.TEST_ALERTDIALOG_THEME);
+        assertTrue(mActivity.getDialog().isShowing());
+    }
+
+    @TestTargetNew(
+        level = TestLevel.COMPLETE,
+        notes = "",
+        method = "AlertDialog",
+        args = {Context.class, boolean.class, OnCancelListener.class}
+    )
+    public void testAlertDialogCancelable() throws Exception {
+        popDialog(DialogStubActivity.TEST_ALERTDIALOG_CANCELABLE);
+        assertTrue(mActivity.getDialog().isShowing());
+        assertFalse(mActivity.onCancelCalled);
+        mInstrumentation.sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);
+        mInstrumentation.waitForIdleSync();
+        assertTrue(mActivity.onCancelCalled);
+    }
+
+    @TestTargetNew(
+        level = TestLevel.COMPLETE,
+        notes = "",
+        method = "AlertDialog",
+        args = {Context.class, boolean.class, OnCancelListener.class}
+    )
+    public void testAlertDialogNotCancelable() throws Exception {
+        popDialog(DialogStubActivity.TEST_ALERTDIALOG_NOT_CANCELABLE);
+        assertTrue(mActivity.getDialog().isShowing());
+        assertFalse(mActivity.onCancelCalled);
+        mInstrumentation.sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);
+        assertFalse(mActivity.onCancelCalled);
+    }
+}