blob: 2462606879105055320506a80d6c63721d40eba0 [file] [log] [blame]
Jan Tattermusch5d270302016-04-01 17:28:49 -07001#region Copyright notice and license
2
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Copyright 2015-2016 gRPC authors.
Jan Tattermusch5d270302016-04-01 17:28:49 -07004//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
Jan Tattermusch5d270302016-04-01 17:28:49 -07008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// http://www.apache.org/licenses/LICENSE-2.0
Jan Tattermusch5d270302016-04-01 17:28:49 -070010//
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Jan Tattermusch5d270302016-04-01 17:28:49 -070016
17#endregion
18
19using System;
20using System.Collections.Generic;
21using System.IO;
22using System.Linq;
23using System.Threading;
24using System.Threading.Tasks;
25using Grpc.Core;
26using Grpc.Core.Utils;
27using Grpc.Testing;
Jan Tattermusch5d270302016-04-01 17:28:49 -070028using NUnit.Framework;
29
30namespace Grpc.IntegrationTesting
31{
32 public class GeneratedClientTest
33 {
34 TestService.TestServiceClient unimplementedClient = new UnimplementedTestServiceClient();
35
36 [Test]
37 public void ExpandedParamOverloadCanBeMocked()
38 {
39 var expected = new SimpleResponse();
40
Jan Tattermusch317b8ac2016-06-16 09:36:11 -070041 var mockClient = new Moq.Mock<TestService.TestServiceClient>();
Jan Tattermusch5d270302016-04-01 17:28:49 -070042 // mocking is relatively clumsy because one needs to specify value for all the optional params.
Jan Tattermusch317b8ac2016-06-16 09:36:11 -070043 mockClient.Setup(m => m.UnaryCall(Moq.It.IsAny<SimpleRequest>(), null, null, CancellationToken.None)).Returns(expected);
Jan Tattermusch5d270302016-04-01 17:28:49 -070044
45 Assert.AreSame(expected, mockClient.Object.UnaryCall(new SimpleRequest()));
46 }
47
48 [Test]
49 public void CallOptionsOverloadCanBeMocked()
50 {
51 var expected = new SimpleResponse();
52
Jan Tattermusch317b8ac2016-06-16 09:36:11 -070053 var mockClient = new Moq.Mock<TestService.TestServiceClient>();
54 mockClient.Setup(m => m.UnaryCall(Moq.It.IsAny<SimpleRequest>(), Moq.It.IsAny<CallOptions>())).Returns(expected);
Jan Tattermusch5d270302016-04-01 17:28:49 -070055
56 Assert.AreSame(expected, mockClient.Object.UnaryCall(new SimpleRequest(), new CallOptions()));
57 }
Jan Tattermusch5d270302016-04-01 17:28:49 -070058
59 [Test]
60 public void DefaultMethodStubThrows_UnaryCall()
61 {
62 Assert.Throws(typeof(NotImplementedException), () => unimplementedClient.UnaryCall(new SimpleRequest()));
63 }
64
65 [Test]
66 public void DefaultMethodStubThrows_ClientStreaming()
67 {
68 Assert.Throws(typeof(NotImplementedException), () => unimplementedClient.StreamingInputCall());
69 }
70
71 [Test]
72 public void DefaultMethodStubThrows_ServerStreaming()
73 {
74 Assert.Throws(typeof(NotImplementedException), () => unimplementedClient.StreamingOutputCall(new StreamingOutputCallRequest()));
75 }
76
77 [Test]
78 public void DefaultMethodStubThrows_DuplexStreaming()
79 {
80 Assert.Throws(typeof(NotImplementedException), () => unimplementedClient.FullDuplexCall());
81 }
82
83 /// <summary>
84 /// Subclass of the generated client that doesn't override any method stubs.
85 /// </summary>
86 private class UnimplementedTestServiceClient : TestService.TestServiceClient
87 {
88 }
89 }
90}