I want to test my database layer and I have caught myself in a catch-22 type of a situation.
The test case consists of two things:
- Save some entities
- Load the entities and assert the database mapping works as expected
The problem, in short, is that:
Insert
is asuspend
method, which means it needs to be run inrunBlocking{}
Query
returns aLiveData
of the result, which is also asynchronous. Therefore it needs to be observed. There's this SO question that explains how to do that.- In order to observe the LiveData according to the above link, however, I must use the
InstantTaskExecutorRule
. (Otherwise I getjava.lang.IllegalStateException: Cannot invoke observeForever on a background thread.
) - This works for most of the cases, but it does not work with
@Transaction
-annotated DAO methods. The test never finishes. I think it's deadlocked on waiting for some transaction thread. - Removing the
InstantTaskExecutorRule
lets the Transaction-Insert method finish, but then I am not able to assert its results, because I need the rule to be able to observe the data.
Detailed description
My Dao
class looks like this:
@Dao
interface GameDao {
@Query("SELECT * FROM game")
fun getAll(): LiveData<List<Game>>
@Insert
suspend fun insert(game: Game): Long
@Insert
suspend fun insertRound(round: RoundRoom)
@Transaction
suspend fun insertGameAndRounds(game: Game, rounds: List<RoundRoom>) {
val gameId = insert(game)
rounds.onEach {
it.gameId = gameId
}
rounds.forEach {
insertRound(it)
}
}
The test case is:
@RunWith(AndroidJUnit4::class)
class RoomTest {
private lateinit var gameDao: GameDao
private lateinit var db: AppDatabase
@get:Rule
val instantTaskExecutorRule = InstantTaskExecutorRule()
@Before
fun createDb() {
val context = ApplicationProvider.getApplicationContext<Context>()
db = Room.inMemoryDatabaseBuilder(
context, AppDatabase::class.java
).build()
gameDao = db.gameDao()
}
@Test
@Throws(Exception::class)
fun storeAndReadGame() {
val game = Game(...)
runBlocking {
gameDao.insert(game)
}
val allGames = gameDao.getAll()
// the .getValueBlocking cannot be run on the background thread - needs the InstantTaskExecutorRule
val result = allGames.getValueBlocking() ?: throw InvalidObjectException("null returned as games")
// some assertions about the result here
}
@Test
fun storeAndReadGameLinkedWithRound() {
val game = Game(...)
val rounds = listOf(
Round(...),
Round(...),
Round(...)
)
runBlocking {
// This is where the execution freezes when InstantTaskExecutorRule is used
gameDao.insertGameAndRounds(game, rounds)
}
// retrieve the data, assert on it, etc
}
}
The getValueBlocking
is an extension function for LiveData
, pretty much copypasted from the link above
fun <T> LiveData<T>.getValueBlocking(): T? {
var value: T? = null
val latch = CountDownLatch(1)
val observer = Observer<T> { t ->
value = t
latch.countDown()
}
observeForever(observer)
latch.await(2, TimeUnit.SECONDS)
return value
}
What's the proper way to test this scenario? I need these types of tests while developing the database mapping layer to make sure everything works as I expect.