aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-05-03 09:52:40 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-05-03 12:58:05 -0700
commitce60d8e7a4f9a23495d0d2edb22dadbb78ca8089 (patch)
treea01d3ea6828551363dd2044aecb0f9dc27372cab
parentb6a9016fc234714632a20cb25dc2e822a72243f8 (diff)
add AsyncCalServer tests to sanity tests
-rw-r--r--src/csharp/Grpc.Core.Tests/Internal/AsyncCallServerTest.cs8
-rw-r--r--src/csharp/tests.json1
2 files changed, 4 insertions, 5 deletions
diff --git a/src/csharp/Grpc.Core.Tests/Internal/AsyncCallServerTest.cs b/src/csharp/Grpc.Core.Tests/Internal/AsyncCallServerTest.cs
index 8c178657a1..a1671c97d5 100644
--- a/src/csharp/Grpc.Core.Tests/Internal/AsyncCallServerTest.cs
+++ b/src/csharp/Grpc.Core.Tests/Internal/AsyncCallServerTest.cs
@@ -83,7 +83,7 @@ namespace Grpc.Core.Internal.Tests
Assert.IsFalse(moveNextTask.Result);
fakeCall.ReceivedCloseOnServerHandler(true, cancelled: true);
- AssertDisposed(asyncCallServer, fakeCall, finishedTask);
+ AssertFinished(asyncCallServer, fakeCall, finishedTask);
}
[Test]
@@ -100,14 +100,12 @@ namespace Grpc.Core.Internal.Tests
fakeCall.ReceivedMessageHandler(true, null);
Assert.IsFalse(moveNextTask.Result);
- AssertDisposed(asyncCallServer, fakeCall, finishedTask);
+ AssertFinished(asyncCallServer, fakeCall, finishedTask);
}
// TODO: read completion failure ...
- // TODO:
-
// TODO: write fails...
@@ -124,7 +122,7 @@ namespace Grpc.Core.Internal.Tests
// TODO: what does writing status do to reads?
- static void AssertDisposed(AsyncCallServer<string, string> asyncCallServer, FakeNativeCall fakeCall, Task finishedTask)
+ static void AssertFinished(AsyncCallServer<string, string> asyncCallServer, FakeNativeCall fakeCall, Task finishedTask)
{
Assert.IsTrue(fakeCall.IsDisposed);
Assert.IsTrue(finishedTask.IsCompleted);
diff --git a/src/csharp/tests.json b/src/csharp/tests.json
index f733352a31..f6af3408d5 100644
--- a/src/csharp/tests.json
+++ b/src/csharp/tests.json
@@ -1,5 +1,6 @@
{
"Grpc.Core.Tests": [
+ "Grpc.Core.Internal.Tests.AsyncCallServerTest",
"Grpc.Core.Internal.Tests.AsyncCallTest",
"Grpc.Core.Internal.Tests.ChannelArgsSafeHandleTest",
"Grpc.Core.Internal.Tests.CompletionQueueEventTest",