Android Studio 3.5.3
Kotlin 1.3
いくつかの簡単なコードをテストしようとしていますが、次の例外が発生し続けます。
IllegalStateException: gsonWrapper.fromJson<Map…ring, String>>() {}.type) must not be null
私はスパイを使用して、戻り値をあざけるので、nullを返します。エラーパスをテストしたいので。
私が私のスタブで何か悪いことをしているかどうかわからない。しかし、この例外を解決できないようです。
ラッパークラスを使用してgson実装をラップし、テストでこれをスパイする
public class GsonWrapper implements IGsonWrapper {
private Gson gson;
public GsonWrapper(Gson gson) {
this.gson = gson;
}
@Override public <T> T fromJson(String json, Type typeOf) {
return gson.fromJson(json, typeOf);
}
}
テスト中の私のクラスの実装
class MoviePresenterImp(
private val gsonWrapper: IGsonWrapper) : MoviePresenter {
private companion object {
const val movieKey = "movieKey"
}
override fun saveMovieState(movieJson: String) {
val movieMap = serializeStringToMap(movieJson)
when (movieMap.getOrElse(movieKey, {""})) {
/* do something here */
}
}
// Exception return from this method
private fun serializeStringToMap(ccpaStatus: String): Map<String, String> =
gsonWrapper.fromJson<Map<String, String>>(ccpaStatus, object : TypeToken<Map<String, String>>() {}.type) // Exception
}
すべてを単純に保つ実際のテストクラス
class MoviePresenterImpTest {
private lateinit var moviePresenterImp: MoviePresenterImp
private val gsonWrapper: GsonWrapper = GsonWrapper(Gson())
private val spyGsonWrapper = spy(gsonWrapper)
@Before
fun setUp() {
moviePresenterImp = MoviePresenterImp(spyGsonWrapper)
}
@Test
fun `should not save any movie when there is an error`() {
// Arrange
val mapType: Type = object : TypeToken<Map<String, String>>() {}.type
whenever(spyGsonWrapper.fromJson<Map<String, String>>("{\"movie\":\"movieId\"}", mapType)).thenReturn(null)
// Act
moviePresenterImp.saveMovieState("{\"movie\":\"movieId\"}")
// Assert here
}
}
提案をありがとう、
non-null
。それをとして保持したいと思います。私が達成しようとしているのは、コンテンツがnullのマップを返すことだと思います。したがって、いつmovieMap.getOrElse()
nullが返されます。それは私が模倣しようとしていたものです。movieMapにnullが含まれているのは、どうすればよいかわからない場合です。