GrpcServerRule Не найдена реализация - PullRequest
0 голосов
/ 30 апреля 2018

Я пытаюсь написать какой-нибудь модульный тест для одного из сервисов 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)

Заранее спасибо за помощь

1 Ответ

0 голосов
/ 30 апреля 2018

Кажется, хорошая чистота проекта заставляет все работать как положено. Не уверен, что случилось. Буду расследовать и сообщать о проблеме на github, если я столкнусь с ней снова.

...