Test Android Apk File With Robotium
Test Android Apk File With Robotium
To test an Android apk file using Robotium, it requires to Install AndroidCalculator apk file on device, click here to find apk Create Test Project using eclipse to test that apk Note: If android working environment is not set on your machine, follow Set up Android Working Environment
Important Steps:
1.If you know the certificate signature then use the same signature in test project 2. If you do not know the certificate signature then delete the certificate signature and use the same android debug key signature in both the application and the test project 3. If the application is unsigned then sign the application apk with the android debug key If the application is signed then download java program from http://www.troido.de/re-sign.jar double click on it to open it and drop apk file on it Or * Un-zip the apk file * Delete the META-INF folder * Rezip the apk file * In Dos prompt/Terminal write following commands > arsigner -keystore ~/.android/debug.keystore -storepass android -keypass android ApplicationToTest.apk androiddebugkey > zipalign 4 ApplicationToTest.apk TempApplicationToTest.apk Then rename TempApplicationToTest.apk to ApplicationToTest.apk. If it is an unsigned application then, In Dos prompt/Terminal write following commands > jarsigner -keystore ~/.android/debug.keystore -storepass android -keypass android ApplicationToTest.apk androiddebugkey > zipalign 4 ApplicationToTest.apk TempApplicationToTest.apk then rename TempApplicationToTest.apk to ApplicationToTest.apk For more help visit: http://developer.android.com/guide/publishing/app-signing.html
Load Emulator
Load command prompt (windows user) or Terminal (Linux users) and write following command to run emulator emulator -avd <device name> here the Device Name is our AVD (Android Virtual Device) created in Set up Android Working Environment, it will load emulator in few seconds. If it shows some error most probably the Android SDK path in not set in PATH environment variable. One can set up Android SDK path in next step, skip next step if emulator is working
emulator -avd <device name> now it will load emulator Install AUT apk on Emulator After the emulator is working, we can now install AUT (application under Test) apk on emulator. To install apk load another instance of command prompt/terminal (based on your os), and write following command to install AndroidCalculator apk on emulator adb install <path>/AndroidCalculator.apk the <path> showing the directory where AndroidCalculator.apk is located, in my case it was adb install /home/naveed/AndroidCalculator.apk as apk is at my home directory ( I am using ubuntu). You need to enter your own path where apk resides. It will successfully install apk file and show success Note: For sake of understanding Test Project app will be installed on emulator which will then call/load the AUT (already installed) and perform test scenarios on it. When we will run our Test project through Eclipse it will automatically install it on emulator (will do it in coming sections)
Note: Before creating test project to test AndroidCalculator apk it is important to define proper package name, it should relate with the parent node of apk application's package like package name of AndoridCalculator was com.calculator, so test project should be within the parent node (com), like com.testcalculator or com.calculator.testapk So please be careful while entering the package name. If you do not know the exact package name of AUT (Application Under Test) then type following commands in the DOS prompt /Terminal after launching emulator
> adb logcat Run the application once and specific package name will be visible into logcat window From New Android Project Window, enter Test Project Name as 'AndroidCalculatorTestApk', Check Android 2.2 from Build Target section, Application Name 'AndroidCalculatorTestApk', Package Name 'com.testcalculator', '8' as Min SDK Version and click on Finish These are minimum specs selected at time, one can use latest specs based on installed SDK version
Test can also be run using command prompt/terminal by following simple steps * Write following command to install AndroidCalculator apk on emulator > adb install <path>/AndroidCalculator.apk * Write following command to install AndroidCalculatorTest apk on emulator > adb install <path>/AndroidCalculatorTestApk.apk * Run the test cases: > adb shell am instrument w com.testcalculator/android.test.InstrumentationTestRunner