GrpcServerRule未找到实现

时间:2018-04-30 15:07:22

标签: kotlin grpc grpc-java

我正在尝试为其中一个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)

提前感谢您的帮助

2 个答案:

答案 0 :(得分:1)

项目看起来很干净,一切都按预期运行。不知道发生了什么。如果我再次遇到它,将调查并在github上发布一个问题。

答案 1 :(得分:0)

尝试在规则字段中使用@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)
    }

}