blob: cd47e31c2bebd978e0b0d78bd9e5dd428dff2c93 [file] [log] [blame]
Jan Tattermusch503bbac2015-02-26 18:19:47 -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;
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080037using System.IO;
Jan Tattermusch503bbac2015-02-26 18:19:47 -080038using System.Text.RegularExpressions;
39using System.Threading.Tasks;
Jan Tattermuschb26972f2015-09-03 17:47:14 -070040
41using CommandLine;
42using CommandLine.Text;
Jan Tattermusch503bbac2015-02-26 18:19:47 -080043using Grpc.Core;
44using Grpc.Core.Utils;
Jan Tattermusch8644aea2015-08-03 10:21:18 -070045using Grpc.Testing;
Jan Tattermusch503bbac2015-02-26 18:19:47 -080046using NUnit.Framework;
Jan Tattermusch503bbac2015-02-26 18:19:47 -080047
48namespace Grpc.IntegrationTesting
49{
50 public class InteropServer
51 {
52 private class ServerOptions
53 {
Jan Tattermuschb26972f2015-09-03 17:47:14 -070054 [Option("port", DefaultValue = 8070)]
55 public int Port { get; set; }
56
Jan Tattermusch7828e812015-10-07 17:27:48 -070057 // Deliberately using nullable bool type to allow --use_tls=true syntax (as opposed to --use_tls)
58 [Option("use_tls", DefaultValue = false)]
59 public bool? UseTls { get; set; }
Jan Tattermuschb26972f2015-09-03 17:47:14 -070060
61 [HelpOption]
62 public string GetUsage()
63 {
64 var help = new HelpText
65 {
66 Heading = "gRPC C# interop testing server",
67 AddDashesToOption = true
68 };
69 help.AddPreOptionsLine("Usage:");
70 help.AddOptions(this);
71 return help;
72 }
Jan Tattermusch503bbac2015-02-26 18:19:47 -080073 }
74
75 ServerOptions options;
76
77 private InteropServer(ServerOptions options)
78 {
79 this.options = options;
80 }
81
82 public static void Run(string[] args)
83 {
Jan Tattermuschb26972f2015-09-03 17:47:14 -070084 var options = new ServerOptions();
85 if (!Parser.Default.ParseArguments(args, options))
Jan Tattermusch503bbac2015-02-26 18:19:47 -080086 {
Jan Tattermusch503bbac2015-02-26 18:19:47 -080087 Environment.Exit(1);
88 }
89
90 var interopServer = new InteropServer(options);
91 interopServer.Run();
92 }
93
94 private void Run()
95 {
Jan Tattermusch021df8a2015-08-04 20:31:11 -070096 var server = new Server
97 {
98 Services = { TestService.BindService(new TestServiceImpl()) }
99 };
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800100
Jan Tattermusch03e82e22015-05-06 16:37:12 -0700101 string host = "0.0.0.0";
Jan Tattermuschb26972f2015-09-03 17:47:14 -0700102 int port = options.Port;
Jan Tattermusch7828e812015-10-07 17:27:48 -0700103 if (options.UseTls.Value)
Jan Tattermuschb0829eb2015-03-03 09:30:55 -0800104 {
Jan Tattermuschbeffc772015-10-22 13:28:22 -0700105 server.Ports.Add(host, port, TestCredentials.CreateSslServerCredentials());
Jan Tattermuschb0829eb2015-03-03 09:30:55 -0800106 }
107 else
108 {
Jan Tattermuschb26972f2015-09-03 17:47:14 -0700109 server.Ports.Add(host, options.Port, ServerCredentials.Insecure);
Jan Tattermuschb0829eb2015-03-03 09:30:55 -0800110 }
Jan Tattermusch03e82e22015-05-06 16:37:12 -0700111 Console.WriteLine("Running server on " + string.Format("{0}:{1}", host, port));
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800112 server.Start();
113
114 server.ShutdownTask.Wait();
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800115 }
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800116 }
117}