blob: 2d841a9c1190ce82b31b8a0fdeda56dd008d0380 [file] [log] [blame]
Jan Tattermuscheea59552015-07-23 22:05:32 -07001#region Copyright notice and license
2
3// Copyright 2015, Google Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
9//
10// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32#endregion
33
34using System;
35using System.Collections.Generic;
36using System.IO;
37using System.Threading;
38using System.Threading.Tasks;
39using grpc.testing;
40using Grpc.Core;
41using Grpc.Core.Utils;
42using NUnit.Framework;
43
44namespace Grpc.IntegrationTesting
45{
46 /// <summary>
47 /// Test SSL credentials where server authenticates client
48 /// and client authenticates the server.
49 /// </summary>
50 public class SslCredentialsTest
51 {
52 string host = "localhost";
53 Server server;
54 Channel channel;
55 TestService.ITestServiceClient client;
56
57 [TestFixtureSetUp]
58 public void Init()
59 {
60 var rootCert = File.ReadAllText(TestCredentials.ClientCertAuthorityPath);
61 var keyCertPair = new KeyCertificatePair(
62 File.ReadAllText(TestCredentials.ServerCertChainPath),
63 File.ReadAllText(TestCredentials.ServerPrivateKeyPath));
64
Jan Tattermusch05261612015-07-24 00:28:16 -070065 var serverCredentials = new SslServerCredentials(new[] { keyCertPair }, rootCert);
Jan Tattermuscheea59552015-07-23 22:05:32 -070066 var clientCredentials = new SslCredentials(rootCert, keyCertPair);
67
68 server = new Server();
69 server.AddServiceDefinition(TestService.BindService(new TestServiceImpl()));
70 int port = server.AddListeningPort(host, Server.PickUnusedPort, serverCredentials);
71 server.Start();
72
73 var options = new List<ChannelOption>
74 {
75 new ChannelOption(ChannelOptions.SslTargetNameOverride, TestCredentials.DefaultHostOverride)
76 };
77
78 channel = new Channel(host, port, clientCredentials, options);
79 client = TestService.NewClient(channel);
80 }
81
82 [TestFixtureTearDown]
83 public void Cleanup()
84 {
85 channel.Dispose();
86 server.ShutdownAsync().Wait();
87 GrpcEnvironment.Shutdown();
88 }
89
90 [Test]
91 public void AuthenticatedClientAndServer()
92 {
93 var response = client.UnaryCall(SimpleRequest.CreateBuilder().SetResponseSize(10).Build());
94 Assert.AreEqual(10, response.Payload.Body.Length);
95 }
Jan Tattermuscheea59552015-07-23 22:05:32 -070096 }
97}