blob: ce108d808b6860455249720b5a861249adb0af69 [file] [log] [blame]
Jan Tattermuschb0829eb2015-03-03 09:30:55 -08001#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.Diagnostics;
37using System.IO;
38using System.Text.RegularExpressions;
39using System.Threading.Tasks;
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080040using Grpc.Core;
41using Grpc.Core.Utils;
42using NUnit.Framework;
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080043
44namespace Grpc.IntegrationTesting
45{
46 /// <summary>
47 /// SSL Credentials for testing.
48 /// </summary>
49 public static class TestCredentials
50 {
51 public const string DefaultHostOverride = "foo.test.google.fr";
52
53 public const string ClientCertAuthorityPath = "data/ca.pem";
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080054 public const string ServerCertChainPath = "data/server1.pem";
55 public const string ServerPrivateKeyPath = "data/server1.key";
56
Jan Tattermuschbeffc772015-10-22 13:28:22 -070057 public static SslCredentials CreateSslCredentials()
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080058 {
Jan Tattermuschbeffc772015-10-22 13:28:22 -070059 return new SslCredentials(File.ReadAllText(ClientCertAuthorityPath));
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080060 }
61
Jan Tattermuschbeffc772015-10-22 13:28:22 -070062 public static SslServerCredentials CreateSslServerCredentials()
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080063 {
64 var keyCertPair = new KeyCertificatePair(
65 File.ReadAllText(ServerCertChainPath),
66 File.ReadAllText(ServerPrivateKeyPath));
Jan Tattermuscheea59552015-07-23 22:05:32 -070067 return new SslServerCredentials(new[] { keyCertPair });
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080068 }
69 }
70}