page.title=Service Testing parent.title=Testing parent.link=index.html @jd:body

In this document

  1. Service Design and Testing
  2. ServiceTestCase
  3. Mock object classes
  4. What to Test

Key Classes

  1. {@link android.test.InstrumentationTestRunner}
  2. {@link android.test.ServiceTestCase}
  3. {@link android.test.mock.MockApplication}
  4. {@link android.test.RenamingDelegatingContext}

Related Tutorials

  1. Activity Testing Tutorial

See Also

  1. Testing From Eclipse with ADT
  2. Testing From Other IDEs

Android provides a testing framework for Service objects that can run them in isolation and provides mock objects. The test case class for Service objects is {@link android.test.ServiceTestCase}. Since the Service class assumes that it is separate from its clients, you can test a Service object without using instrumentation.

This document describes techniques for testing Service objects. If you aren't familiar with the Service class, please read the Services document. If you aren't familiar with Android testing, please read Testing Fundamentals, the introduction to the Android testing and instrumentation framework.

Service Design and Testing

When you design a Service, you should consider how your tests can examine the various states of the Service lifecycle. If the lifecycle methods that start up your Service, such as {@link android.app.Service#onCreate() onCreate()} or {@link android.app.Service#onStartCommand(Intent, int, int) onStartCommand()} do not normally set a global variable to indicate that they were successful, you may want to provide such a variable for testing purposes.

Most other testing is facilitated by the methods in the {@link android.test.ServiceTestCase} test case class. For example, the {@link android.test.ServiceTestCase#getService()} method returns a handle to the Service under test, which you can test to confirm that the Service is running even at the end of your tests.

ServiceTestCase

{@link android.test.ServiceTestCase} extends the JUnit {@link junit.framework.TestCase} class with with methods for testing application permissions and for controlling the application and Service under test. It also provides mock application and Context objects that isolate your test from the rest of the system.

{@link android.test.ServiceTestCase} defers initialization of the test environment until you call {@link android.test.ServiceTestCase#startService(Intent) ServiceTestCase.startService()} or {@link android.test.ServiceTestCase#bindService(Intent) ServiceTestCase.bindService()}. This allows you to set up your test environment, particularly your mock objects, before the Service is started.

Notice that the parameters to ServiceTestCase.bindService()are different from those for Service.bindService(). For the ServiceTestCase version, you only provide an Intent. Instead of returning a boolean, ServiceTestCase.bindService() returns an object that subclasses {@link android.os.IBinder}.

The {@link android.test.ServiceTestCase#setUp()} method for {@link android.test.ServiceTestCase} is called before each test. It sets up the test fixture by making a copy of the current system Context before any test methods touch it. You can retrieve this Context by calling {@link android.test.ServiceTestCase#getSystemContext()}. If you override this method, you must call super.setUp() as the first statement in the override.

The methods {@link android.test.ServiceTestCase#setApplication(Application) setApplication()} and {@link android.test.AndroidTestCase#setContext(Context)} setContext()} allow you to set a mock Context or mock Application (or both) for the Service, before you start it. These mock objects are described in Mock object classes.

By default, {@link android.test.ServiceTestCase} runs the test method {@link android.test.AndroidTestCase#testAndroidTestCaseSetupProperly()}, which asserts that the base test case class successfully set up a Context before running.

Mock object classes

ServiceTestCase assumes that you will use a mock Context or mock Application (or both) for the test environment. These objects isolate the test environment from the rest of the system. If you don't provide your own instances of these objects before you start the Service, then {@link android.test.ServiceTestCase} will create its own internal instances and inject them into the Service. You can override this behavior by creating and injecting your own instances before starting the Service

To inject a mock Application object into the Service under test, first create a subclass of {@link android.test.mock.MockApplication}. MockApplication is a subclass of {@link android.app.Application} in which all the methods throw an Exception, so to use it effectively you subclass it and override the methods you need. You then inject it into the Service with the {@link android.test.ServiceTestCase#setApplication(Application) setApplication()} method. This mock object allows you to control the application values that the Service sees, and isolates it from the real system. In addition, any hidden dependencies your Service has on its application reveal themselves as exceptions when you run the test.

You inject a mock Context into the Service under test with the {@link android.test.AndroidTestCase#setContext(Context) setContext()} method. The mock Context classes you can use are described in more detail in Testing Fundamentals.

What to Test

The topic What To Test lists general considerations for testing Android components. Here are some specific guidelines for testing a Service: