Recently i was trying to note down all the testing requirements for our Android application. While trying to get down all the bits and pieces and i find out that most of the dev team members exactly know what to test when its come to point of traditional testings like Unit or Regressions. But for an Android app there are some additional things to test. Things or problems can happen only on a Android powered mobile device.
To make the whole list complete i note down requirements in two different groups.
Group A: Android Specific
ANR
Automation: Depends on method of investigation.
Links
Memory Analysis
Compatibility Testing
Failsafe testing
Group B: Traditional
Unit Test
Use Case Test
Stress testing
Limitation: Some application require an explicit user input to proceed. You will not be able to test such component.
Automation: Can be scheduled to run overnight for specific duration, but still require manual input to analyze log and recreate the defect and log into bug tracking system.
Accessibility Testing
To make the whole list complete i note down requirements in two different groups.
- Android Specific: In this test cases we primarily focus on issue can only happen to an Android application.
- Traditional Testing: These are the trivial test cases what we see everywhere as part of standard software practices.
Group A: Android Specific
ANR
Description: Android
display, Application Not Responding (ANR) when input events failed to respond in 5 seconds and Broadcast Receiver
has not finished within 10 seconds.
How to Test: Can be done by wiring java code. Or using DDMS.
How to Test: Can be done by wiring java code. Or using DDMS.
Automation: Depends on method of investigation.
Links
2.
http://stackoverflow.com/questions/704311/android-how-do-i-investigate-an-anr
Cycle: It is important that we test this in every build cycle.
Memory Analysis
Description: Android
application has memory quote regardless of available physical memory on a
device. This number varies from device to device. This is done, so that non
critical application cannot take over the device memory and eventually critical
application fails. This means reusing memory is key to an Android application life-cycle. This is
relatively easy task as Garbage
collection is part of Dalvik VM, but there are instances where Garbage
collection does not really work. For example,
On 2.3 and prior devices bitmap allocated on native layer. Developer need to use explicit code to free that memory.
On 2.3 and prior devices bitmap allocated on native layer. Developer need to use explicit code to free that memory.
·
System.gc() on android is not an
instruction to Garbage collector, it’s an hints where Dalvik will decide
whether it will collect garbage or not. It is an error to assume that after
execution of that code all memory became free.
·
Memory also builds up very fast in case of a memory
leak with respect to device configuration changes. And, important to not that, device configuration
change not limited to screen rotation.
Goal: To find out,
if equal amount of free memory is equivalent after every Activity or Android
components or java objects destroyed.
Tools: DDMS can be used for this. Furthermore, MAT (Eclipse memory Analyzer) is also a great tool when it comes to investigate java object creation in
memory.
Automation: We can add additional code to monitor memory allocation and deallocation. But this additional code might impact on the performance of original code base. We can use manual QA to investigate memory usage.
Links
2.
https://developer.android.com/tools/debugging/debugging-memory.html
Compatibility Testing
Device manufacturer tend to customize devices as they see
fits. It creates software and hardware fragmentation on many levels. Heap
memory changes from device to device and so does device screen density. Android manifest provide a good filter for
hardware of system features but user can still install an app avoiding such
filters, and, in some cases filters just not enough.
Services: Some app rely on Google
services like PUSH or MAP. Some device manufacturer may have own similar sets of services or use
some other third party services. In such cases some functionality will not work
or will produce unexpected result. FYI, Google services are not part of Android
frameworks and all android device may not ship with same sets of services. For example Amazon uses its own Push and Map service.
·
Hardware Features: Some App rely on device hardware features. For example, If your application requires device
back camera or may be auto focus in a camera to function properly, you need to make sure that device has that features or not.
·
System features: Android provide standard
framework for all device manufacturers to follow. Intention that Android OS,
can be adopted with minimal set of changes on any hardware. But, there are
cases where device manufacturer do not follow any standard. Device back button could be a such good example. Amazon fire phone do not have back button.
·
Software feature: If you app depend on additional Software feature Example: Open GL, you have to make sure, that feature is really available on that device.
·
Third party library: If you have a third party library, you need to test if that third party library also compatible.
·
User Interface: Screen density and resolution is
different on each device. In case of native UI we need to make sure that those are scaled properly on every devices.
·
WebKit: There are always some issues with HTML
content and webkit engine. We need to make sure that device Webkit version is
compatible with developed web contents and Webkit can render all HMTL elements
without issue and Java Scripts are fully functional.
Automation: Not possible. Require manual QA input.
Cycle: Once for
every new device
Failsafe testing
Android mostly rely on Asynchronous messaging (Intent) to
report any system events. So, sudden changes on system status require some time
to propagate. Every android application should have proper code in place to
handle this type of exceptions.
Goal: Focus on
this test is to figure out if application can shutdown gracefully without its
required critical hardware and software components. An application should not
crash under any circumstances.
·
Network: Data fluctuation on mobile phone is
very normal scenario. Things to test
o
Not connected
o
Aeroplane Mode
o
Device connected to a network but no data.
o
Data connection switching from Wi-Fi to Mobile
network.
·
Memory
o
Limit test: what happened when
application reaches it allocated heap memory quote. Usually user from older
device will face this type of problem.
o
Allocation test: In this scenario device do not have enough
physical memory to allocate heap memory. Can happen with newer or older
devices. For example, newer device comes with lots of preinstalled apps and
Android has tendency to provide priority to app signed by system certificate.
This gets more complicated when foreground app is not a system app.
·
Service: What happened when device do not have required third
party services or all third party service become unavailable due its error. Ex, Google GMS
·
External storage: There are cases when Android system keep switching between mount unmount state. If App rely on an external storage, we have to make sure that it dosen't crash when there are none.
Comment: This can
be done in any QA environment at least once per release cycle.
Automation: Not
possible specially when we need turn on off device settings. Require manual QA input.
Group B: Traditional
Unit Test
Goal: To test
individual piece of code works as intended.
Things to tests:
Things to tests:
·
Boundary Values, Empty and NULL
·
Every method(private included), class
·
Singleton
·
Thread
·
Memory allocation/Deallocation
+ what ever required by your organization software development practices.
+ what ever required by your organization software development practices.
Automation: can
be done as part of build process.
Cycle: Once per
build Cycle
Recommendation:
Android provide Android Unit test framework to test individual piece of code.
It is originally derived from Junit.
Use Case Test
This type of testing can automate a complete use case. For
example login flow, or a particular use case from start to end. Android test framework provides Instrumentation to start an
application, or to click a button or fill an input field with pre-determined text.
In case of hybrid application currently Selendroid and Robotium both provide
full feature test support.
Automation: can
be done as part of build process.
Cycle: Once per
build Cycle
Stress testing
Currently android provide tools which can generate pseudo
random event to a target application. A script can run overnight on an app and
collect log. Based on your organization policy, you do any of the followings
- Ask QA to investigate and reproduce relevant crashes; if reproducible add the defect to an issue tracker
- Ask Dev to investigate crashes and add to issue tracker if necessary
Limitation: Some application require an explicit user input to proceed. You will not be able to test such component.
Automation: Can be scheduled to run overnight for specific duration, but still require manual input to analyze log and recreate the defect and log into bug tracking system.
Cycle: Overnight,
weekly or fortnightly.
Accessibility Testing
For visually Impaired person, Android has talk back features. Which Read loud any UI elements uses touches .Talkback uses content
description tag to provide information about an UI element. You can activate Talk Back function from device settings to see if every UI element has Meaningful description .
Automation: Not
possible. Require manual QA input.
No comments:
Post a Comment