ServiceTestCase
public
abstract
class
ServiceTestCase
extends AndroidTestCase
java.lang.Object | ||
↳ | android.test.AndroidTestCase | |
↳ | android.test.ServiceTestCase<T extends android.app.Service> |
This class was deprecated
in API level 24.
Use
ServiceTestRule instead. New tests should be written using the
Android Testing Support Library.
This test case provides a framework in which you can test Service classes in a controlled environment. It provides basic support for the lifecycle of a Service, and hooks with which you can inject various dependencies and control the environment in which your Service is tested.
Developer Guides
For more information about application testing, read the Testing developer guide.
Lifecycle Support.
A Service is accessed with a specific sequence of
calls, as described in the
Services
document. In order to support the lifecycle of a Service,
ServiceTestCase
enforces this protocol:
-
The
setUp()
method is called before each test method. The base implementation gets the system context. If you overridesetUp()
, you must callsuper.setUp()
as the first statement in your override. -
The test case waits to call
Service.onCreate()
until one of your test methods callsstartService(Intent)
orbindService(Intent)
. This gives you an opportunity to set up or adjust any additional framework or test logic before you test the running service. -
When one of your test methods calls
ServiceTestCase.startService()
orServiceTestCase.bindService()
, the test case callsService.onCreate()
and then calls eitherService.startService(Intent)
orService.bindService(Intent, ServiceConnection, int)
, as appropriate. It also stores values needed to track and support the lifecycle. -
After each test method finishes, the test case calls the
tearDown()
method. This method stops and destroys the service with the appropriate calls, depending on how the service was started. If you overridetearDown()
, your must call thesuper.tearDown()
as the last statement in your override.
Dependency Injection.
A service has two inherent dependencies, its Context
and its
associated Application
. The ServiceTestCase framework
allows you to inject modified, mock, or isolated replacements for these dependencies, and
thus perform unit tests with controlled dependencies in an isolated environment.
By default, the test case is injected with a full system context and a generic
MockApplication
object. You can inject
alternatives to either of these by invoking
setContext()
or
setApplication()
. You must do this before calling
startService() or bindService(). The test framework provides a
number of alternatives for Context, including
MockContext
,
RenamingDelegatingContext
,
ContextWrapper
, and
IsolatedContext
.
Summary
Inherited fields |
---|
Public constructors | |
---|---|
ServiceTestCase(Class<T> serviceClass)
Constructor |
Public methods | |
---|---|
Application
|
getApplication()
Returns the Application object in use by the service under test. |
T
|
getService()
|
Context
|
getSystemContext()
Returns the real system context that is saved by |
void
|
setApplication(Application application)
Sets the application that is used during the test. |
void
|
testServiceTestCaseSetUpProperly()
Tests that |
Protected methods | |
---|---|
IBinder
|
bindService(Intent intent)
Starts the service under test, in the same way as if it were started by
|
void
|
setUp()
Gets the current system context and stores it. |
void
|
setupService()
Creates the service under test and attaches all injected dependencies (Context, Application) to it. |
void
|
shutdownService()
Makes the necessary calls to stop (or unbind) the service under test, and calls onDestroy(). |
void
|
startService(Intent intent)
Starts the service under test, in the same way as if it were started by
|
void
|
tearDown()
Shuts down the service under test. |
Inherited methods | |
---|---|
Public constructors
ServiceTestCase
public ServiceTestCase (Class<T> serviceClass)
Constructor
Parameters | |
---|---|
serviceClass |
Class : The type of the service under test. |
Public methods
getApplication
public Application getApplication ()
Returns the Application object in use by the service under test.
Returns | |
---|---|
Application |
The application object. |
See also:
getService
public T getService ()
Returns | |
---|---|
T |
An instance of the service under test. This instance is created automatically when
a test calls startService(Intent) or bindService(Intent) . |
getSystemContext
public Context getSystemContext ()
Returns the real system context that is saved by setUp()
. Use it to create
mock or other types of context objects for the service under test.
Returns | |
---|---|
Context |
A normal system context. |
setApplication
public void setApplication (Application application)
Sets the application that is used during the test. If you do not call this method,
a new MockApplication
object is used.
Parameters | |
---|---|
application |
Application : The Application object that is used by the service under test. |
See also:
testServiceTestCaseSetUpProperly
public void testServiceTestCaseSetUpProperly ()
Tests that setupService()
runs correctly and issues an
ERROR(/junit.framework.Assert#assertNotNull(String, Object))
if it does.
You can override this test method if you wish.
Throws | |
---|---|
|
java.lang.Exception |
Exception |
Protected methods
bindService
protected IBinder bindService (Intent intent)
Starts the service under test, in the same way as if it were started by
Context.bindService(Intent, ServiceConnection, flags)
with an
Intent
that identifies a service.
Notice that the parameters are different. You do not provide a
ServiceConnection
object or the flags parameter. Instead,
you only provide the Intent. The method returns an object whose type is a
subclass of IBinder
, or null if the method fails. An IBinder
object refers to a communication channel between the application and
the service. The flag is assumed to be Context.BIND_AUTO_CREATE
.
See Designing a Remote Interface Using AIDL for more information about the communication channel object returned by this method.
Note: To be able to use bindService in a test, the service must implement getService() method. An example of this is in the ApiDemos sample application, in the LocalService demo.Parameters | |
---|---|
intent |
Intent : An Intent object of the form expected by
Context.bindService(Intent, BindServiceFlags, Executor, ServiceConnection) . |
Returns | |
---|---|
IBinder |
An object whose type is a subclass of IBinder, for making further calls into the service. |
setUp
protected void setUp ()
Gets the current system context and stores it.
Extend this method to do your own test initialization. If you do so, you
must call super.setUp()
as the first statement in your override. The method is
called before each test method is executed.
Throws | |
---|---|
Exception |
setupService
protected void setupService ()
Creates the service under test and attaches all injected dependencies
(Context, Application) to it. This is called automatically by startService(Intent)
or
by bindService(Intent)
.
If you need to call setContext()
or
setApplication()
, do so before calling this method.
shutdownService
protected void shutdownService ()
Makes the necessary calls to stop (or unbind) the service under test, and
calls onDestroy(). Ordinarily this is called automatically (by tearDown()
, but
you can call it directly from your test in order to check for proper shutdown behavior.
startService
protected void startService (Intent intent)
Starts the service under test, in the same way as if it were started by
Context.startService(Intent)
with
an Intent
that identifies a service.
If you use this method to start the service, it is automatically stopped by
tearDown()
.
Parameters | |
---|---|
intent |
Intent : An Intent that identifies a service, of the same form as the Intent passed to
Context.startService(Intent) . |
tearDown
protected void tearDown ()
Shuts down the service under test. Ensures all resources are cleaned up and garbage collected before moving on to the next test. This method is called after each test method.
Subclasses that override this method must call super.tearDown()
as their
last statement.
Throws | |
---|---|
|
java.lang.Exception |
Exception |