The capabilities test feature is designed to run against the App Engine development web server for testing purposes. It enables you to change the status of services, such as datastore, blobstore, etc., to determine whether your application behaves properly when it encounters the various possible statuses of the service. For example, by changing the datastore service status to disabled, you can test whether your app handles datastore unavailability in a graceful manner.
There are several ways to use the capabilities test feature:
- Change Capabilities Status Using the Console
- Change Capabilities Status Using the Command Line
- Change Capabilities Status Using the Capabilities API
Change Capabilities Status Using the Console
To change capabilities in the console,
-
With your app running on the development server, access the console by visiting the URL
/_ah/admin
on your server, for example: http://localhost:8888/_ah/admin . - In the console, click Capabilities Status in the bottom left of the console.
- In the Capabilities Status Configuration page, locate the service or services that are used by your app and whose status you wish to change; click the dropdown menu next to the service name and select the status you want to test on that service:
The services now reflect the settings you have chosen the next time your app accesses them. Run your app and observe its behavior.
Change Capabilities Status Using the Command Line
If you use Eclipse, you can set one or more capabilities using the debug command line options.
To change capability settings using the VM command line arguments in Eclipse
- With Eclipse open, select your project, right-click, then select Debug As > Debug Configurations .
-
Go to the
Arguments
tab and enter the desired option in the
VM arguments
textbox. The format of the option is
-Dcapability.status. capabilityname .*= statusname
capabilityname
is replaced by the name of the service (see Capability (Service) Names ) andstatusname
is replaced by the capability status