【发布时间】: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 中,所以它仍然可能意味着一些可移植性问题