Mock project showcasing testing on Android. I plan to use this as a CodeKata to experiment with testing.
Disclaimer: Every test you see in this project you should take with a pinch of salt, this is my self-taught experimentation of Testing on Android
The project uses mock api and is really bare bone. It's used just to showcase example features I usually encounter on Android.
You can login with any credentials, mark favourite content items, log out and that's about it.
As dependency injection / Service Locator koin is used.
The application is separated into different modules each module is tested differently.
Modules
Self explanatory, contains all shared data classes (POJOs) and Exceptions used by the other modules. There is nothing to test here.
The android module of the application, contains the UI (Activities), Room-Database and ViewModels.
The UI is strucured in MVVM.
Has dependency on the core module and only on core module.
There are 3 kinds of tests in this module:
- junit5 tests for ViewModels and Dependency Injection
- Robolectric Test for Room Database and SharedPreferences
- Shared Tests for Screens (shared between Robolectric and AndroidTests)
- End to End Android Tests
Verify the ViewModels are reacting to the mocked UseCases properly.
Kotlin-Mockito is used to mock out UseCases comming from the core module.
Koin-Test is used to verify the ServiceLocator modules.
LiveData-Testing is used to verify the LiveData values of ViewModels.
Verifies the DataBase interactions and also verifies the interactions on each Screen.
Robolectric website link.
In Unit and Robolectric tests coroutine-test is used to switch out the mainThread thus enabling fine control over interactions.
Verifies the interactions with the Screens.
In Robolectric and AndroidTests Espresso is used to interact with UI.
In Robolectric and AndroidTests OkhttpIdlingResources is used to synchronize OkHttp with Espresso.
In Robolectric and AndroidTests Mock Server module is used to mock the network requests.
In Robolectric and AndroidTests InstantTaskExecutor is used to set LiveData values immediately and a Custom implementation in Unit tests.
Business layer of the application. Contains Repositories and UseCases.
Has dependency on the network module. Database/SharedPreferences LocalStorage classes are injected into the core module.
All tests are junit5 and they are using Kotlin-Mockito to mock all dependencies.
Coroutine-test is also used in every test. Turbine is used to test flows, but tests will be shown without turbine as well.
The tests are verifying the interactions between the RemoteSource and LocalSource components. It also verifies that ErrorHandling is done properly.
Has also Integration tests which verify multiple components working together, for this Mock Server module is used to mock responses.
As the name suggests this is the module which sends requests to the Backend and parses the responses received. All responses and requests are mapped to and from models from the model data classes.
Retrofit + OkHttp + Moshi is used to send and parse requests.
All tests are Junit5. The Retrofit Services are injected into tests to make sure the parsing and other setups are proper.
The tests are verifying all the requests contain the correct arguments, headers, path, methods. It is also responsible to verify the responses are parsed properly.
Mock Server module and MockWebServer is used to respond to the requests sent by OkHttp. JsonAssert is used to compare JSON models.
This module is not actually part of the APK. This module is only used to unify mocking of Network request between Instrumentation tests from app module, core integration tests and network module.
It contains a way to setup responses to requests in a unified way. Contains all Response.json and expected Request.json files.
MockWebServer is used to respond to the requests sent by OkHttp. JsonAssert is used to compare JSON models. OkHttp-TLS is used to have HTTPS requests on Android Tests.
This folder contains examples of specific cases such as NavController testing.
The actual server when running the application is mockapi.io so don't expect actual functionalities in the application.
This section describes what you need to play with the exercises in the project.
Code Kata details
Download the project, open it in Android Studio.
- In the gradle window you can see in the root gradle there is a "tests" group. In this group you will see a jvmTests, robolectricTests and androidTests task.
- First run the jvmTests.
- When that finished, build the application to your phone.
- Login with whatever credentials and look over the app, what will you test.
- When finished, run androidTests.
This will ensure the testing setup is proper, the project can resolve all the dependencies and such issues won't come up during your exercise.
The Code Kata is structured into 6 different section, each section in different what we are testing and how we are testing it.
Since our layering is "app", "core" and "networking", of course we will jump right into the middle and start with core.
Open the core instruction set.
The core tests are the simplest, we will look into how to use mockito to mock class dependencies and write our first simple tests.
We will also see how to test flows.
Open the networking instruction set.
The networking instruction set will show you how to test network request with mockwebserver.
It will also show you that you can write tests not only for one class mocking all the dependencies, but a component.
Open the app viewModel unit tests instruction set.
This section we will see how to replace the dispatcher to testDispatcher to control the ViewModel's coroutines.
We will also see how to test with LiveData.
We will introduce Rules, aka easy to reuse "Before" and "After" components.
Open the core again instruction set.
We complicate things here. We write our first Integraiton Test. We will verify the Authentication classes and the networking module is working together like a charm.
Open the app robolectric unit tests instruction set.
In this section we will see how to test component depending on context such as Room database. In this tests we will also see how to interact with View components in tests via Espresso. We will also see how to test a specific Activity (same concept can be applied to fragments)
Bonus:
- Testing Compose UI: Open the compose instruction set
- Testing First: Open the test first instruction set To see how to start writing your test first.
Open the shared tests instruction set.
In this section we will see how can we share Robolectric test source with AndroidTests to run our same tests on actual device. We will also see how to write AndroidTest End to End Tests.
Additional modules have been added prefixed with test-util.
These contain all the reusable Test Util classes used in the showcase.
The Testing setup is extracted into a separate gradle script, which with some modifications, you should be able to easily add to your own project.
To use the TestUtil classes, you will need to add the GitHub Repository as a source for dependencies:
See details
// top level build.gradle
allprojects {
repositories {
// ...
maven {
url "https://maven.pkg.github.com/fknives/AndroidTest-ShowCase"
credentials {
username = project.findProperty("GITHUB_USERNAME") ?: System.getenv("GITHUB_USERNAME")
password = project.findProperty("GITHUB_TOKEN") ?: System.getenv("GITHUB_TOKEN")
}
// https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
}
}
}
// OR
// top level build.gradle.kts
allprojects {
repositories {
// ...
maven {
url = uri("https://maven.pkg.github.com/fknives/AndroidTest-ShowCase")
credentials {
username = extra.properties["GITHUB_USERNAME"] as String? ?: System.getenv("GITHUB_USERNAME")
password = extra.properties["GITHUB_TOKEN"] as String? ?: System.getenv("GITHUB_TOKEN")
}
// https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
}
}
}
and then you can use the following dependencies:
testImplementation "org.fnives.android.testutil:android-unit-junit5:<latestVersion>" // test-util-junit5-android
testImplementation "org.fnives.android.testutil:shared-robolectric:<latestVersion>" // test-util-shared-robolectric
testImplementation "org.fnives.android.testutil:android:<latestVersion>" // test-util-android
androidTestImplementation "org.fnives.android.testutil:android:<latestVersion>" // test-util-android
androidTestImplementation "org.fnives.android.testutil:shared-android:<latestVersion>" // test-util-shared-android
For Code Coverage Reporting, Jacoco is used.
See details
For Code Coverage Reporting, Jacoco is setup in jacoco.config.gradle.
- Each sub module has it's own code coverage report, enabled by the gradle script.
- Additionally it contains gradle task for an aggregated code coverage report for the project as a whole.
Feel free to use that script and tweak it for your project and module setup.
The script is documented, to the best of my understanding, but specific to this project, not prepared for multiple buildFlavours or different buildTypes than debug.
To run tests and Jacoco report for a submodule, run task jacocoTestReport
:
- for java it will run unit tests and creates a report
- for android it will run jacocoAndroidTestReport and jacocoUnitTestReport and create 2 separate reports.
Note:
- jacocoAndroidTestReport is alias to createDebugAndroidTestCoverageReport
- jacocoUnitTestReport is alias to createDebugUnitTestCoverageReport
To see an aggregated code coverage report:
- task
jacocoRootReport
will pull together all the submodules report and create a single one from them ($projectDir/build/coverage-report). - task
runTestAndJacocoRootReport
will run all the sub modules reports and tests then runjacocoRootReport
.
- One issue, is that the androidTest reports don't work with the sharedTest module setup, this issue is reported here
- Another issue, is that seems like the tests fail with Resource.NotFound on API 21 if
enableAndroidTestCoverage
is true, so I disabled that for CI.
By shared test module setup I mean a module like app-shared-test
, which has a dependency graph of:
- app-shared-test -> app.main
- app.test -> app-shared-test
Here are the two articles I used for the jacoco setup script: jacoco-in-android aggregate-test-coverage.
Screenshot testing example is not present in the repository, but here are my findings regarding the topic.
See details
Screenshot testing can be valuable in a large project. The basic idea is that you have reference screenshots of screens / components which you check once manually. Based on these references you can verify that your changes did not modify other parts of the UI.
There are other people who already compared most of the libraries I found. Here are the list of valuable resources that go into more detail than I am doing here.
- article and repo Comparing multiple solutions.
- Compose native sample
- Showkase library, that helps visualise your Compose previews. Can be integrated with screenshot testing as described here
- Cookbook
So here is a list of libraries I found that can be used for this purpose.
This library creates images from your views inflated in your Instrumented Test classes. Can be used with activities launched as well.
Compose Support: Inside activites, yes. As component no.
Build on top of Facebook's screenshot tests, has all it's capabilities, Additionally generates side by side comparision when verifying.
Compose Support: Yes.
Extends ActivityTestRule and enables taking screenshots of your activities. Has extension for full screen, compose and accssibility!
Compose Support: Yes.
Takes screenshots on the device and compares them to asset bitmaps.
Compose Support: Yes inside activites.
JVM Based solution, renders the screens without Device. It is as limited as Studio's Preview.
Compose Support: Yes.
Inspired by Swift snapshot testing library
It is not specific for Screenshots, but serializable data. For our purpose it's mainly compose based, but extensible if required.
Compose Support: Yes.
There are also critics of existing libraries, if you have been burned, you might want to write your own. Here is an article to get you started
Screenshots are also implemented in as somewhat custom way in this repository. Screenshots are taken when a test fail to see why it did. This can help identify failures like a System dialog showing so your Activity can't get focus.