summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-01-20 14:03:58 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-01-20 14:03:58 -0800
commit22f7dfd23490a3de2f21ff96949ba47003aac8f8 (patch)
tree41bc290bb2f1f08a0e37cfda4955742a85d42ecf /tests
parent9266c558bf1d21ff647525ff99f7dadbca417309 (diff)
downloadframeworks_base-22f7dfd23490a3de2f21ff96949ba47003aac8f8.zip
frameworks_base-22f7dfd23490a3de2f21ff96949ba47003aac8f8.tar.gz
frameworks_base-22f7dfd23490a3de2f21ff96949ba47003aac8f8.tar.bz2
auto import from //branches/cupcake/...@127101
Diffstat (limited to 'tests')
-rw-r--r--tests/FrameworkTest/tests/src/android/widget/AutoCompleteTextViewPopup.java31
-rw-r--r--tests/GadgetHost/Android.mk11
-rw-r--r--tests/GadgetHost/AndroidManifest.xml22
-rw-r--r--tests/GadgetHost/res/layout/gadget_host.xml50
-rw-r--r--tests/GadgetHost/res/layout/test_gadget.xml22
-rw-r--r--tests/GadgetHost/res/values/strings.xml22
-rw-r--r--tests/GadgetHost/src/com/android/gadgethost/GadgetContainerView.java32
-rw-r--r--tests/GadgetHost/src/com/android/gadgethost/GadgetHostActivity.java133
-rw-r--r--tests/GadgetHost/src/com/android/gadgethost/GadgetPickActivity.java70
-rw-r--r--tests/GadgetHost/src/com/android/gadgethost/TestGadgetProvider.java32
10 files changed, 425 insertions, 0 deletions
diff --git a/tests/FrameworkTest/tests/src/android/widget/AutoCompleteTextViewPopup.java b/tests/FrameworkTest/tests/src/android/widget/AutoCompleteTextViewPopup.java
index 7a4c78f..663b7a4 100644
--- a/tests/FrameworkTest/tests/src/android/widget/AutoCompleteTextViewPopup.java
+++ b/tests/FrameworkTest/tests/src/android/widget/AutoCompleteTextViewPopup.java
@@ -116,4 +116,35 @@ public class AutoCompleteTextViewPopup
ListView.INVALID_POSITION, textView.getListSelection());
}
+ /** Make sure we handle an empty adapter properly */
+ @MediumTest
+ public void testPopupNavigateNoAdapter() throws Throwable {
+ AutoCompleteTextViewSimple theActivity = getActivity();
+ final AutoCompleteTextView textView = theActivity.getTextView();
+ final Instrumentation instrumentation = getInstrumentation();
+
+ // focus and type
+ textView.requestFocus();
+ instrumentation.waitForIdleSync();
+ sendKeys("A");
+
+ // No initial selection
+ assertEquals("getListSelection(-1)",
+ ListView.INVALID_POSITION, textView.getListSelection());
+
+ // check for selection position as expected
+ sendKeys("DPAD_DOWN");
+ assertEquals("getListSelection(0)", 0, textView.getListSelection());
+
+ // Now get rid of the adapter
+ runTestOnUiThread(new Runnable() {
+ public void run() {
+ textView.setAdapter((ArrayAdapter<?>) null);
+ }
+ });
+ instrumentation.waitForIdleSync();
+
+ // now try moving "down" - nothing should happen since there's no longer an adapter
+ sendKeys("DPAD_DOWN");
+ }
}
diff --git a/tests/GadgetHost/Android.mk b/tests/GadgetHost/Android.mk
new file mode 100644
index 0000000..1d88db8
--- /dev/null
+++ b/tests/GadgetHost/Android.mk
@@ -0,0 +1,11 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := user
+
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+
+LOCAL_PACKAGE_NAME := GadgetHost
+LOCAL_CERTIFICATE := platform
+
+include $(BUILD_PACKAGE)
diff --git a/tests/GadgetHost/AndroidManifest.xml b/tests/GadgetHost/AndroidManifest.xml
new file mode 100644
index 0000000..8da4485
--- /dev/null
+++ b/tests/GadgetHost/AndroidManifest.xml
@@ -0,0 +1,22 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.gadgethost">
+ <uses-permission android:name="android.permission.VIBRATE" />
+
+ <application>
+ <activity android:name="GadgetHostActivity" android:label="_GadgetHost">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity android:name="GadgetPickActivity">
+ <intent-filter>
+ <action android:name="android.gadget.action.PICK_GADGET" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+ <receiver android:name="TestGadgetProvider">
+ </receiver>
+ </application>
+</manifest>
diff --git a/tests/GadgetHost/res/layout/gadget_host.xml b/tests/GadgetHost/res/layout/gadget_host.xml
new file mode 100644
index 0000000..824cc44
--- /dev/null
+++ b/tests/GadgetHost/res/layout/gadget_host.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2006 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.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" >
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/gadget_view_title"
+ />
+
+ <ScrollView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ >
+
+ <com.android.gadgethost.GadgetContainerView
+ android:id="@+id/gadget_container"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ </ScrollView>
+
+ <Button
+ android:id="@+id/add_gadget"
+ android:text="@string/add_gadget"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ />
+
+</LinearLayout>
+
diff --git a/tests/GadgetHost/res/layout/test_gadget.xml b/tests/GadgetHost/res/layout/test_gadget.xml
new file mode 100644
index 0000000..0fb7929
--- /dev/null
+++ b/tests/GadgetHost/res/layout/test_gadget.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2006 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.
+-->
+
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/oh_hai"
+/>
+
diff --git a/tests/GadgetHost/res/values/strings.xml b/tests/GadgetHost/res/values/strings.xml
new file mode 100644
index 0000000..d94cfbd
--- /dev/null
+++ b/tests/GadgetHost/res/values/strings.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 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.
+-->
+
+<resources>
+ <string name="gadget_view_title">Gadget Test</string>
+ <string name="add_gadget">Add Gadget</string>
+ <string name="oh_hai">Oh hai.</string>
+</resources>
+
diff --git a/tests/GadgetHost/src/com/android/gadgethost/GadgetContainerView.java b/tests/GadgetHost/src/com/android/gadgethost/GadgetContainerView.java
new file mode 100644
index 0000000..159cbe4
--- /dev/null
+++ b/tests/GadgetHost/src/com/android/gadgethost/GadgetContainerView.java
@@ -0,0 +1,32 @@
+/*
+ * 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 com.android.gadgethost;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.widget.LinearLayout;
+
+public class GadgetContainerView extends LinearLayout
+{
+ public GadgetContainerView(Context context) {
+ super(context);
+ }
+
+ public GadgetContainerView(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ }
+}
diff --git a/tests/GadgetHost/src/com/android/gadgethost/GadgetHostActivity.java b/tests/GadgetHost/src/com/android/gadgethost/GadgetHostActivity.java
new file mode 100644
index 0000000..323141e
--- /dev/null
+++ b/tests/GadgetHost/src/com/android/gadgethost/GadgetHostActivity.java
@@ -0,0 +1,133 @@
+/*
+ * 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 com.android.gadgethost;
+
+import android.app.Activity;
+import android.content.Context;
+import android.content.Intent;
+import android.gadget.GadgetHost;
+import android.gadget.GadgetHostView;
+import android.gadget.GadgetInfo;
+import android.gadget.GadgetManager;
+import android.os.Bundle;
+import android.util.Log;
+import android.view.ContextMenu;
+import android.view.View;
+import android.widget.LinearLayout;
+
+public class GadgetHostActivity extends Activity
+{
+ static final String TAG = "GadgetHostActivity";
+
+ static final int DISCOVER_GADGET_REQUEST = 1;
+
+ GadgetManager mGadgetManager;
+ GadgetContainerView mGadgetContainer;
+
+ public GadgetHostActivity() {
+ mGadgetManager = GadgetManager.getInstance(this);
+ }
+
+ @Override
+ public void onCreate(Bundle icicle) {
+ super.onCreate(icicle);
+ setContentView(R.layout.gadget_host);
+
+ findViewById(R.id.add_gadget).setOnClickListener(mOnClickListener);
+ mGadgetContainer = (GadgetContainerView)findViewById(R.id.gadget_container);
+ }
+
+ View.OnClickListener mOnClickListener = new View.OnClickListener() {
+ public void onClick(View v) {
+ discoverGadget(DISCOVER_GADGET_REQUEST);
+ }
+ };
+
+ void discoverGadget(int requestCode) {
+ Intent intent = new Intent(GadgetManager.GADGET_PICK_ACTION);
+ startActivityForResult(intent, requestCode);
+ }
+
+ void handleGadgetPickResult(int resultCode, Intent data) {
+ if (resultCode == RESULT_OK) {
+ Bundle extras = data.getExtras();
+ int gadgetId = extras.getInt(GadgetManager.EXTRA_GADGET_ID);
+ GadgetInfo gadget = mGadgetManager.getGadgetInfo(gadgetId);
+
+ if (gadget.configure != null) {
+ // configure the gadget if we should
+
+ // TODO: start the activity. Watch for a cancel result. If it returns
+ // RESULT_CANCELED, then remove the gadget.
+ } else {
+ // just add it as is
+ addGadgetView(gadgetId, gadget);
+ }
+ }
+ }
+
+ void addGadgetView(int gadgetId, GadgetInfo gadget) {
+ // TODO: Remove this hard-coded value when the GadgetInfo is real.
+ gadget.initialLayout = R.layout.test_gadget;
+
+ // Inflate the gadget's RemoteViews
+ GadgetHostView view = mHost.createView(this, gadgetId, gadget);
+
+ // Add it to the list
+ LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
+ 65, // LinearLayout.LayoutParams.WRAP_CONTENT,
+ LinearLayout.LayoutParams.WRAP_CONTENT);
+ mGadgetContainer.addView(view, layoutParams);
+ }
+
+ protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+ switch (requestCode) {
+ case DISCOVER_GADGET_REQUEST:
+ handleGadgetPickResult(resultCode, data);
+ break;
+ }
+ }
+
+ protected void onStart() {
+ super.onStart();
+ mHost.startListening();
+ }
+
+ protected void onStop() {
+ super.onStop();
+ mHost.stopListening();
+ }
+
+ class MyGadgetView extends GadgetHostView {
+ MyGadgetView() {
+ super(GadgetHostActivity.this);
+ }
+
+ public void createContextMenu(ContextMenu menu) {
+ menu.add("Delete");
+ }
+ }
+
+ GadgetHost mHost = new GadgetHost(this, 0) {
+ protected GadgetHostView onCreateView(Context context, int gadgetId, GadgetInfo gadget) {
+ return new MyGadgetView();
+ }
+ };
+
+}
+
+
diff --git a/tests/GadgetHost/src/com/android/gadgethost/GadgetPickActivity.java b/tests/GadgetHost/src/com/android/gadgethost/GadgetPickActivity.java
new file mode 100644
index 0000000..e8b3121
--- /dev/null
+++ b/tests/GadgetHost/src/com/android/gadgethost/GadgetPickActivity.java
@@ -0,0 +1,70 @@
+/*
+ * 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 com.android.gadgethost;
+
+import android.app.ListActivity;
+import android.content.ComponentName;
+import android.content.Intent;
+import android.gadget.GadgetInfo;
+import android.gadget.GadgetManager;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.ArrayAdapter;
+import android.widget.ListView;
+import android.util.Log;
+
+public class GadgetPickActivity extends ListActivity
+{
+ private static final String TAG = "GadgetPickActivity";
+
+ GadgetManager mGadgetManager;
+
+ public GadgetPickActivity() {
+ mGadgetManager = GadgetManager.getInstance(this);
+ }
+
+ @Override
+ public void onCreate(Bundle icicle) {
+ super.onCreate(icicle);
+
+ Bundle extras = getIntent().getExtras();
+
+ String[] labels = new String[10];
+ for (int i=0; i<labels.length; i++) {
+ labels[i] = "Gadget " + (i+1);
+ }
+
+ setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, labels));
+ }
+
+ @Override
+ public void onListItemClick(ListView l, View v, int position, long id)
+ {
+ Log.d(TAG, "Clicked item " + position);
+
+ int gadgetId = mGadgetManager.allocateGadgetId(getCallingPackage());
+ mGadgetManager.bindGadgetId(gadgetId, new ComponentName(
+ "com.android.gadgethost", "com.android.gadgethost.TestGadgetProvider"));
+
+ Intent result = new Intent();
+ result.putExtra(GadgetManager.EXTRA_GADGET_ID, gadgetId);
+
+ setResult(RESULT_OK, result);
+ finish();
+ }
+}
+
diff --git a/tests/GadgetHost/src/com/android/gadgethost/TestGadgetProvider.java b/tests/GadgetHost/src/com/android/gadgethost/TestGadgetProvider.java
new file mode 100644
index 0000000..8f9641b
--- /dev/null
+++ b/tests/GadgetHost/src/com/android/gadgethost/TestGadgetProvider.java
@@ -0,0 +1,32 @@
+/*
+ * 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 com.android.gadgethost;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.util.Log;
+
+public class TestGadgetProvider extends BroadcastReceiver {
+
+ static final String TAG = "TestGadgetProvider";
+
+ public void onReceive(Context context, Intent intent) {
+ Log.d(TAG, "intent=" + intent);
+ }
+}
+