Ich habe ein sehr einfaches AsyncTask-Implementierungsbeispiel und habe Probleme beim Testen mit dem Android JUnit-Framework.
Es funktioniert einwandfrei, wenn ich es in einer normalen Anwendung instanziiere und ausführe. Wenn es jedoch von einer der Android Testing-Framework-Klassen (z. B. AndroidTestCase , ActivityUnitTestCase , ActivityInstrumentationTestCase2 usw.) ausgeführt wird, verhält es sich seltsam:
- Die
doInBackground()Methode wird korrekt ausgeführt - Allerdings ist es nicht eine ihrer Benachrichtigungsmethoden aufruft (
onPostExecute(),onProgressUpdate()usw.) - nur still ignoriert sie ohne Fehler zeigt.
Dies ist ein sehr einfaches AsyncTask-Beispiel:
package kroz.andcookbook.threads.asynctask;
import android.os.AsyncTask;
import android.util.Log;
import android.widget.ProgressBar;
import android.widget.Toast;
public class AsyncTaskDemo extends AsyncTask<Integer, Integer, String> {
AsyncTaskDemoActivity _parentActivity;
int _counter;
int _maxCount;
public AsyncTaskDemo(AsyncTaskDemoActivity asyncTaskDemoActivity) {
_parentActivity = asyncTaskDemoActivity;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
_parentActivity._progressBar.setVisibility(ProgressBar.VISIBLE);
_parentActivity._progressBar.invalidate();
}
@Override
protected String doInBackground(Integer... params) {
_maxCount = params[0];
for (_counter = 0; _counter <= _maxCount; _counter++) {
try {
Thread.sleep(1000);
publishProgress(_counter);
} catch (InterruptedException e) {
// Ignore
}
}
}
@Override
protected void onProgressUpdate(Integer... values) {
super.onProgressUpdate(values);
int progress = values[0];
String progressStr = "Counting " + progress + " out of " + _maxCount;
_parentActivity._textView.setText(progressStr);
_parentActivity._textView.invalidate();
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
_parentActivity._progressBar.setVisibility(ProgressBar.INVISIBLE);
_parentActivity._progressBar.invalidate();
}
@Override
protected void onCancelled() {
super.onCancelled();
_parentActivity._textView.setText("Request to cancel AsyncTask");
}
}
Dies ist ein Testfall. Hier ist AsyncTaskDemoActivity eine sehr einfache Aktivität, die eine Benutzeroberfläche zum Testen von AsyncTask im Modus bereitstellt:
package kroz.andcookbook.test.threads.asynctask;
import java.util.concurrent.ExecutionException;
import kroz.andcookbook.R;
import kroz.andcookbook.threads.asynctask.AsyncTaskDemo;
import kroz.andcookbook.threads.asynctask.AsyncTaskDemoActivity;
import android.content.Intent;
import android.test.ActivityUnitTestCase;
import android.widget.Button;
public class AsyncTaskDemoTest2 extends ActivityUnitTestCase<AsyncTaskDemoActivity> {
AsyncTaskDemo _atask;
private Intent _startIntent;
public AsyncTaskDemoTest2() {
super(AsyncTaskDemoActivity.class);
}
protected void setUp() throws Exception {
super.setUp();
_startIntent = new Intent(Intent.ACTION_MAIN);
}
protected void tearDown() throws Exception {
super.tearDown();
}
public final void testExecute() {
startActivity(_startIntent, null, null);
Button btnStart = (Button) getActivity().findViewById(R.id.Button01);
btnStart.performClick();
assertNotNull(getActivity());
}
}
Der gesamte Code funktioniert einwandfrei, mit Ausnahme der Tatsache, dass AsyncTask seine Benachrichtigungsmethoden nicht aufruft, wenn es von Android Testing Framework ausgeführt wird. Irgendwelche Ideen?
Service.doSomething()?