| Index: third_party/grpc/src/csharp/Grpc.Core.Tests/Internal/CompletionQueueSafeHandleTest.cs
|
| diff --git a/third_party/protobuf/csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs b/third_party/grpc/src/csharp/Grpc.Core.Tests/Internal/CompletionQueueSafeHandleTest.cs
|
| similarity index 63%
|
| copy from third_party/protobuf/csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs
|
| copy to third_party/grpc/src/csharp/Grpc.Core.Tests/Internal/CompletionQueueSafeHandleTest.cs
|
| index 8dfad8b331c1622d9325af438a1eaa6e1c5c25fd..c6843f10af25744153b8da6095eade1c4d260d92 100644
|
| --- a/third_party/protobuf/csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs
|
| +++ b/third_party/grpc/src/csharp/Grpc.Core.Tests/Internal/CompletionQueueSafeHandleTest.cs
|
| @@ -1,7 +1,7 @@
|
| -#region Copyright notice and license
|
| -// Protocol Buffers - Google's data interchange format
|
| -// Copyright 2015 Google Inc. All rights reserved.
|
| -// https://developers.google.com/protocol-buffers/
|
| +#region Copyright notice and license
|
| +
|
| +// Copyright 2015, Google Inc.
|
| +// All rights reserved.
|
| //
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| @@ -28,28 +28,41 @@
|
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| +
|
| #endregion
|
| -
|
| +
|
| using System;
|
| -using System.Reflection;
|
| -using Google.Protobuf.TestProtos;
|
| +using System.Threading.Tasks;
|
| +using Grpc.Core;
|
| +using Grpc.Core.Internal;
|
| +using Grpc.Core.Utils;
|
| using NUnit.Framework;
|
|
|
| -namespace Google.Protobuf
|
| +namespace Grpc.Core.Internal.Tests
|
| {
|
| - public class DeprecatedMemberTest
|
| + public class CompletionQueueSafeHandleTest
|
| {
|
| - private static void AssertIsDeprecated(MemberInfo member)
|
| + [Test]
|
| + public void CreateAndDestroy()
|
| {
|
| - Assert.NotNull(member);
|
| - Assert.IsTrue(member.IsDefined(typeof(ObsoleteAttribute), false), "Member not obsolete: " + member);
|
| + GrpcEnvironment.AddRef();
|
| + var cq = CompletionQueueSafeHandle.Create();
|
| + cq.Dispose();
|
| + GrpcEnvironment.Release();
|
| }
|
|
|
| [Test]
|
| - public void TestDepreatedPrimitiveValue()
|
| + public void CreateAndShutdown()
|
| {
|
| - AssertIsDeprecated(typeof(TestDeprecatedFields).GetProperty("DeprecatedInt32"));
|
| + GrpcEnvironment.AddRef();
|
| + var cq = CompletionQueueSafeHandle.Create();
|
| + cq.Shutdown();
|
| + var ev = cq.Next();
|
| + cq.Dispose();
|
| + GrpcEnvironment.Release();
|
| + Assert.AreEqual(GRPCCompletionType.Shutdown, ev.type);
|
| + Assert.AreNotEqual(IntPtr.Zero, ev.success);
|
| + Assert.AreEqual(IntPtr.Zero, ev.tag);
|
| }
|
| -
|
| }
|
| }
|
|
|