【问题标题】:Internal error in Cloud Firestore (22.1.0) when running instrumentation test运行检测测试时 Cloud Firestore (22.1.0) 出现内部错误
【发布时间】:2021-05-26 00:52:09
【问题描述】:

我收到来自 Cloud Firestore 的内部错误消息。当我运行此测试时,该应用程序正在从 Firebase 获取项目列表。这需要一段时间。与此同时,测试停止。

每个库都更新到最新版本。这个SO thread 没有给出令人满意的答案。错误只在运行测试时出现,实际App没问题。

@InternalCoroutinesApi
@ExperimentalCoroutinesApi
@RunWith(AndroidJUnit4::class)
class HomeTest {

    @get:Rule
    var reportHelper: ReportHelper? = Factory.getReportHelper()

    @get:Rule
    var activityRule = ActivityScenarioRule(MainActivity::class.java)

    // Executes tasks in a synchronous [TaskScheduler]
    @get:Rule
    var syncTaskExecutorRule = SyncTaskExecutorRule()

    @Before
    fun goToHomeScreen() {
        onView(withId(R.id.navigation_home)).perform(ViewActions.click())
    }

    @Test
    fun scrollToNextVideo() {
        onView(withId(R.id.recycler)).perform(swipeUp())
    }

    @After
    fun TearDown() {
        reportHelper?.label("Stopping App")
    }
}

build.gradle(应用级):

android {
    configurations.all() { configuration ->
//    exclude group: "com.google.protobuf", module: "protobuf-javalite"

       exclude group: "com.google.protobuf", module: "protobuf-java"
//    exclude group: "io.grpc", module: "grpc-protobuf-lite" // tried this, but App fails to compile
}
dependencies {
    implementation "com.google.firebase:firebase-firestore-ktx:23.0.0"
    implementation "com.google.firebase:firebase-database-ktx:20.0.0"
    implementation "com.google.firebase:firebase-storage-ktx:20.0.0"
    implementation "com.firebaseui:firebase-ui-storage:4.3.2"
}

这是我的dependencies.txt

堆栈跟踪:

Testing started at 18:40 ...

02/23 18:40:39: Launching 'HomeTest' on Samsung SM-A515F.
App restarts successfully without requiring a re-install.
Running tests

$ adb shell am instrument -w -m  --no-window-animation  -e debug false -e class 'eu.theappfactory.someapp.data.ui.home.HomeTest' eu.theappfactory.someapp.acc.test/androidx.test.runner.AndroidJUnitRunner
Connected to process 981 on device 'samsung-sm_a515f-R58N52ZCJZL'.

Started running tests

java.lang.RuntimeException: Internal error in Cloud Firestore (22.1.0).
    at com.google.firebase.firestore.util.AsyncQueue.lambda$panic$3(AsyncQueue.java:534)
    at com.google.firebase.firestore.util.AsyncQueue$$Lambda$3.run(Unknown Source:2)
    at android.os.Handler.handleCallback(Handler.java:883)
    at android.os.Handler.dispatchMessage(Handler.java:100)
    at android.os.Looper.loop(Looper.java:237)
    at android.app.ActivityThread.main(ActivityThread.java:8167)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:496)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1100)
Caused by: java.lang.NoSuchMethodError: No static method registerDefaultInstance(Ljava/lang/Class;Lcom/google/protobuf/GeneratedMessageLite;)V in class Lcom/google/protobuf/GeneratedMessageLite; or its super classes (declaration of 'com.google.protobuf.GeneratedMessageLite' appears in /data/app/eu.theappfactory.someapp.acc.test-K43eWkkKbA6iBOHgciWAfA==/base.apk)
    at com.google.firestore.v1.ListenRequest.<clinit>(ListenRequest.java:849)
    at com.google.firestore.v1.ListenRequest.getDefaultInstance(ListenRequest.java:854)
    at com.google.firestore.v1.FirestoreGrpc.getListenMethod(FirestoreGrpc.java:396)
    at com.google.firebase.firestore.remote.WatchStream.<init>(WatchStream.java:61)
    at com.google.firebase.firestore.remote.Datastore.createWatchStream(Datastore.java:115)
    at com.google.firebase.firestore.remote.RemoteStore.<init>(RemoteStore.java:167)
    at com.google.firebase.firestore.core.MemoryComponentProvider.createRemoteStore(MemoryComponentProvider.java:72)
    at com.google.firebase.firestore.core.ComponentProvider.initialize(ComponentProvider.java:135)
    at com.google.firebase.firestore.core.FirestoreClient.initialize(FirestoreClient.java:258)
    at com.google.firebase.firestore.core.FirestoreClient.lambda$new$0(FirestoreClient.java:105)
    at com.google.firebase.firestore.core.FirestoreClient$$Lambda$1.run(Unknown Source:8)
    at com.google.firebase.firestore.util.AsyncQueue.lambda$enqueue$2(AsyncQueue.java:436)
    at com.google.firebase.firestore.util.AsyncQueue$$Lambda$2.call(Unknown Source:2)
    at com.google.firebase.firestore.util.AsyncQueue$SynchronizedShutdownAwareExecutor.lambda$executeAndReportResult$1(AsyncQueue.java:322)
    at com.google.firebase.firestore.util.AsyncQueue$SynchronizedShutdownAwareExecutor$$Lambda$2.run(Unknown Source:4)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:462)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:301)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
    at com.google.firebase.firestore.util.AsyncQueue$SynchronizedShutdownAwareExecutor$DelayedStartFactory.run(AsyncQueue.java:229)
    at java.lang.Thread.run(Thread.java:919)

Test running failed: Process crashed.
Tests ran to completion.

tried this,不起作用。 this also 没用。

【问题讨论】:

标签: android firebase gradle android-instrumentation protobuf-java


【解决方案1】:

TL;DR:protobuf-javalite 是您可能想要构建的对象。

这是一个known issue,很可能是由您隐瞒的build.gradle 的一部分引起的。我只能说,排除模块protobuf-javalite 会去掉静态方法registerDefaultInstance;因此应该只排除protobuf-java

configurations.all() { configuration ->
    // exclude group: "com.google.protobuf", module: "protobuf-javalite"
    exclude group: "com.google.protobuf", module: "protobuf-java"
}

使用 Kotlin 依赖项也可能有意义,但这不应该是原因:

implementation 'com.google.firebase:firebase-firestore-ktx:22.1.2'

要检查实际打包的内容:./gradlew :app:dependencies &gt; dependencies.txt

【讨论】:

  • 我已经更新了我的答案并添加了 dependencies.txt。我看到我有 io.grpc:grpc-protobuf-lite 作为传递依赖。但试图排除它也行不通。
  • 你找到解决方案了吗@JimClermonts?
猜你喜欢
  • 1970-01-01
  • 2015-07-17
  • 2011-01-25
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-07-01
相关资源
最近更新 更多