【问题标题】:GrpcServerRule Not finding implementationGrpcServerRule 找不到实现
【发布时间】:2018-04-30 15:07:22
【问题描述】:

我正在尝试为 GRPC 服务之一编写一些单元测试。

我正在使用 GrpcServerRule 来执行此操作。

一旦我运行测试,似乎服务的实现没有正确加载。我不知道为什么。

这是测试代码。

@RunWith(JUnit4::class)
class CreateListTest {

// Workaround for public
@get:Rule  val serverRule: GrpcServerRule = GrpcServerRule().directExecutor()

@Before
fun setup() {
    serverRule.serviceRegistry.addService(ShopperServerImplementation())
}


@Test
fun testCreateListValidRequest() {
    val request = CreateListRequest.newBuilder()
            .setName("a test list")
            .setAuthorId(25)
            .addAuthorizedUsers(12)
            .build()
    val reply = ShopperServiceGrpc.newBlockingStub(serverRule.channel).createList(request)
    assertEquals(45, reply.createdListId)
}

}

这是服务实现的代码。

class ShopperServerImplementation : ShopperGRPCGrpc.ShopperGRPCImplBase() {
override fun createList(request: CreateListRequest, responseObserver: StreamObserver<CreateListReply>) {
    val reply = CreateListReply.newBuilder().setCreatedListId(80).build()
    responseObserver.onNext(reply)
    responseObserver.onCompleted()
}
}

这是测试结果的日志

io.grpc.StatusRuntimeException: UNIMPLEMENTED: Method not found: shopper.ShopperService/createList

at io.grpc.stub.ClientCalls.toStatusRuntimeException(ClientCalls.java:227)
at io.grpc.stub.ClientCalls.getUnchecked(ClientCalls.java:208)
at io.grpc.stub.ClientCalls.blockingUnaryCall(ClientCalls.java:141)
at com.kevinlegoff.shopper.io.ShopperServiceGrpc$ShopperServiceBlockingStub.createList(ShopperServiceGrpc.java:156)
at com.kevinlegoff.shopper.server.CreateListTest.testCreateListValidRequest(CreateListTest.kt:35)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:48)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

提前感谢您的帮助

【问题讨论】:

  • 我不知道 Kotlin。但它似乎应该工作。也许是 Kotlin 与 JUnit 的一些特定交互?
  • 是的,我也不知道。我正在用java编写测试只是为了尝试。真正的服务器和客户端在 Kotlin 中工作。
  • JAVA 也没有运气。服务器仍然在 Kotlin 中,所以它仍然可能意味着一些可移植性问题

标签: kotlin grpc grpc-java


【解决方案1】:

似乎对项目进行了很好的清理,使一切都按预期运行。不知道会发生什么。如果我再次遇到它会调查并在github上发布一个问题。

【讨论】:

  • 请看我的回答,因为您的解决方案可能会遇到间歇性问题——测试完成后它可能无法正确释放资源。
  • 您可能还想看看将 Kotlin Test 与 JUnit 5 一起使用,而不是直接使用 JUnit 4,支持新扩展系统(替换 RunWith)的较新框架版本有优势:baeldung.com/junit-5-kotlin跨度>
【解决方案2】:

尝试为您的规则字段使用@JvmField 注释。您还可能会遇到 gRPC 服务未正确清理的问题。所以另一种方法是有一个带有清理规则的单独类,例如:

class LoopbackServer {
    val client: ShopperServiceGrpc.ShopperServiceBlockingStub
    private val yourService = ShopperServiceController()

    @Rule
    @JvmField
    val grpcCleanup = GrpcCleanupRule()

    init {
        // Generate a unique in-process server name.
        val serverName = InProcessServerBuilder.generateName()

        // Create a server, add service, start, and register for automatic graceful shutdown.
        grpcCleanup.register(InProcessServerBuilder.forName(serverName).directExecutor()
                .addService(yourService).build().start())

        client = ShopperServiceGrpc.newBlockingStub(
                // Create a client channel and register for automatic graceful shutdown.
                grpcCleanup.register(InProcessChannelBuilder.forName(serverName).directExecutor().build()))
    }
}

然后你可以在你的测试类中引用它:

class CreateListTest {
    private val server = LoopbackServer()
    private val client = server.client

    @Test
    fun `When service called with a valid List request, it succeeds`() {
        val request = CreateListRequest.newBuilder()
            .setName("a test list")
            .setAuthorId(25)
            .addAuthorizedUsers(12)
            .build()
        val reply = client.createList(request)
        assertEquals(45, reply.createdListId)
    }

}

【讨论】:

    猜你喜欢
    • 2020-08-25
    • 2018-09-29
    • 2019-06-25
    • 2019-10-13
    • 2018-04-26
    • 2014-10-22
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多