TLDR: I am developing an application which runs in multiple processes. For the purposes of UI testing, I want to inject a fake API dependency to make the app running under tests independent of network interactions, however, this doesn't seem to work in the multi-process setting.
I am using the approach described in this post, so I implemented a custom AndroidJUnitRunner
which instantiates the application with mock dependencies (let it be MockApplication
) instead of the one with real dependencies (let it be RealApplication
). It does work and my app queries the fake API interface from the main process.
My app, however, uses multiple processes, e.g. there is a data processing Service
which runs in its own process and which only starts on startService
invocation from the application code. For some reason, this process runs with the instance of RealApplication
, without any mock dependencies.
Is there any way I could make it work? I tried digging into Android code responsible for application instantiation, but haven't really found anything particular useful yet.
P.S. I am using Dagger 2 for DI, but this is probably not really relevant.
The problem is that your custom application class does not override real one in the
AndroidManifest.xml
.You're just telling the instrumentation test runner to run your custom application class but then if app starts another process, Android Framework won't even know that it needs to run your custom application class instead of real one.
So, I'd suggest you to override the application class to the custom one in
AndroidManifest.xml
during theconnectedAndroid
task execution, as a result your app will use custom class even without hacking the test runner and whenever new processes start.