Skip to main content

Device testing for Android

Abstract

With Bitrise’s Android virtual device testing solution, you can run UI tests on emulators without having to set up and register your own devices.

With Bitrise’s Android virtual device testing solution, you can run UI tests on emulators without having to set up and register your own devices.

Limitations

You might be limited by your overall build time. Also note that a single build can contain only one Virtual Device Testing Step performing one type of test (instrumentationrobo or gameloop).

Our device testing solution is based on Firebase Test Lab. You can find the resulting logs, videos and screenshots on Bitrise.

Running tests

With Bitrise, you can choose from 3 different test types:

  • robo (default test type in Bitrise).

  • instrumentation.

  • gameloop.

If you want to read up on the difference between these test types, take a look at Firebase’s documentation.

There is a small difference between configuring your workflow for robo and instrumentation tests, so let’s see them separately!

Running robo tests

Workflow Editor

bitrise.yml

  1. Open the Workflow you want to use in the Workflow Editor.

  2. Add the Android Build Step to your Workflow to export an APK.

    The Step stores the APK path in an Env Var. You will need this Env Var later.

  3. Add the Debug task to the Variant Step input field.

    Device testing for Android
  4. Add Virtual Device Testing for Android Step after the Android Build Step.

  5. Set the APK path input field.

  6. Set the Test type input to robo.

  7. Add the type of test device in the Test devices input field.

    If choosing a different device than the default, your input should have the format of deviceID, version, language, orientation separated with ,. Find the list of the available devices here.

    Device testing for Android
  8. Start a build and check your test results.

  1. In the bitrise.yml file, find the Workflow you want to use or create a new one.

  2. Add the android-build Step to your Workflow.

    The Step stores the APK path in an Env Var. You will need this Env Var later.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build:
            inputs:
    
  3. Set the variant input to Debug.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build:
            inputs:
            - variant: Debug
    
  4. Add the virtual-device-testing-for-android Step.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build:
            inputs:
            - variant: Debug
        - virtual-device-testing-for-android:
            inputs:
    
  5. Set the app_path input field: by default, its value is the $BITRISE_APK_PATH Env Var. This Env Var is exported by the android-build Step.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build:
            inputs:
            - variant: Debug
        - virtual-device-testing-for-android:
            inputs:
            - app_path: $BITRISE_APK_PATH
    
  6. Set the test_type input to robo.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build:
            inputs:
            - variant: Debug
        - virtual-device-testing-for-android:
            inputs:
            - test_type: robo
            - app_path: $BITRISE_APK_PATH
    
  7. Add the type of test device in the test_devices input field.

    Your input should have the format of device ID,version,language,orientation separated with a  ,.

    Supported models

    You can check the supported device models by running the gcloud firebase test android models list --filter=virtualgcloud firebase test android models list --filter=virtual command in the Google Cloud CLI.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build:
            inputs:
            - variant: Debug
        - virtual-device-testing-for-android:
            inputs:
            - test_type: robo
            - app_path: $BITRISE_APK_PATH
            - test_devices: 'Nexus9,24,en,portrait'
    
  8. Start a build and check your test results.

Setting user input with Robo directives for successful robo tests

If your app needs specific user interaction for a successful robo test, you can use the Robo Directives input field to set those necessary inputs. For example, certain UI elements of the app are only accessible for robo testing if the required user inputs (username and email address) are populated for log in.

  1. Click the Virtual Device Testing for Android Step in your workflow.

  2. Click the Robo Test section.

  3. Find the Robo directives input field and set your required user input directives.

    • provide a comma-separated list of key-value pairs, where the key is the Android resource name of the target UI element, and the value is the text string. EditText fields are supported but not text fields in WebView UI elements. For example, you could use the following parameter for custom login:

      username_resource,username,ENTER_TEXT
      password_resource,password,ENTER_TEXT
      loginbtn_resource,,SINGLE_CLICK
    • One directive per line, the parameters are separated with , character. For example: ResourceName,InputText,ActionType.

    Device testing for Android

Based on the input you provide, you can successfully run a robo test (even on pages that are only accessible with a specific user input) and check the test results on the Test Reports page. The test results can be, for example:

  • Screenshots.

    Recorded video.

    Logs.

    Files.

Here is a screenshot of a successful robo test, where the robo test got all the way through to My application by populating the email and password fields first with the pre-defined directives from the Robo directives.

Device testing for Android

Running instrumentation tests

Workflow Editor

bitrise.yml

  1. Open the Workflow you want to use in the Workflow Editor.

  2. Add the Android Build for UI testing Step to your Workflow.

  3. To export an APK and a Test APK, you have to set the following input fields in the Android Build for UI testing Step.

    • Project Location: the root directory of your Android project.

    • Module: set the module you wish to build.

    • Variant: set the variant you wish to build (usually Debug).

    Device testing for Android

    The Step outputs will be BITRISE_APK_PATH (which is the path of the generated APK after filtering) and BITRISE_TEST_APK_PATH (which is the path of the generated test APK after filtering).

  4. Add the  Virtual Device Testing for Android Step right after the Android Build for UI testing Step.

  5. Set the Test type input to instrumentation.

    Our Android Build for UI Testing Step exports an APK and a Test APK and their paths get automatically set in the APK path and the Test APK path input fields of the Virtual Device Testing for Android Step.

  6. Add the type of test device in the Test devices input field.

    If choosing a different device than the default, your input should have the format of device ID,version,language,orientation separated with a  ,.

    Device testing for Android
  7. Start a build and check your test results.

  1. In the bitrise.yml file, find the Workflow you want to use or create a new one.

  2. Add the android-build-for-ui-testing Step to your Workflow.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build-for-ui-testing:
            inputs:
    
  3. To export an APK and a Test APK, you have to set the following input fields in the Android Build for UI testing Step.

    • project_location: the root directory of your Android project.

    • module: set the module you wish to build.

    • variant: set the variant you wish to build (usually debug).

    my-workflow:
      steps:
        - git-clone: {}
        - android-build-for-ui-testing:
            inputs:
            - module: module
            - variant: variant
            - project_location: $BITRISE_SOURCE_DIR
    

    The Step outputs will be BITRISE_APK_PATH (which is the path of the generated APK after filtering) and BITRISE_TEST_APK_PATH (which is the path of the generated test APK after filtering).

  4. Add the virtual-device-testing-for-android Step right after the Android Build for UI testing Step.

    my-workflow:
      steps:
        - git-clone@8: {}
        - android-build-for-ui-testing:
            inputs:
            - module: module
            - variant: variant
            - project_location: $BITRISE_SOURCE_DIR
        - virtual-device-testing-for-android:
            inputs:
    
  5. Set the test_type input to instrumentation.

    Our android-build-for-ui-testing Step exports an APK and a Test APK and their paths get automatically set in the app_path and the test_apk_path input fields of the virtual-device-testing-for-android Step.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build-for-ui-testing:
            inputs:
            - module: module
            - variant: variant
            - apk_path_pattern: '*/build/outputs/apk/*.apk'
            - arguments: arg
            - project_location: $BITRISE_SOURCE_DIR
        - virtual-device-testing-for-android:
            inputs:
            - test_type: instrumentation
            - app_path: $BITRISE_APK_PATH
            - test_apk_path: $BITRISE_TEST_APK_PATH
    
  6. Add the type of test device in the test_devices input field.

    Your input should have the format of device ID,version,language,orientation separated with a  ,.

    my-workflow:
      steps:
        - git-clone: {}
        - android-build-for-ui-testing:
            inputs:
            - module: module
            - variant: variant
            - apk_path_pattern: '*/build/outputs/apk/*.apk'
            - arguments: arg
            - project_location: $BITRISE_SOURCE_DIR
        - virtual-device-testing-for-android:
            inputs:
            - test_devices: 'Nexus9,24,en,portrait'
            - test_type: instrumentation
            - test_apk_path: $BITRISE_TEST_APK_PATH
            - app_path: $BITRISE_APK_PATH
    
  7. Start a build and check your test results.

Checking test results

Test Reports display the most important information about all the tests you ran on the Test Summary tab. You will see all the tests you ran, their duration, and their results. You can also click on the tabs of the individual tests to see their details.

To access the result of a particular test:

  1. Find your app on the Dashboard, and select it.

  2. On the app's main page, select the build you want to check out.

  3. Go to the Tests tab.

  4. You can see failed tests on the Tests tab itself. If you had no failed tests, click the View Test Reports button.

  5. On the Test Summary tab, find the test you want to check. Alternatively, on the top bar, click the tab of the test set you want to check out.To filter tests based on their results, open the menu on the top right, which is set to All by default.

    Test Reports
  6. Click Test cases to see the details.

    UI tests are grouped according to device while unit tests are grouped according to test cases.

You will find:

  • The total number of tests you ran, as well as the ratio of successful and failed tests.

  • The duration of each individual test (both unit tests and UI tests).

  • In the case of UI tests, the orientation and the locale of the device.

    Test Reports

You can check, depending on the test type:

  • Individual test cases

  • Performance data

  • Videos

  • Screenshots

  • Test artifacts

  • Logs

As noted above, this depends on test type, too: for unit tests, you won’t see screenshots or videos, of course.