blob: 4118f99c2b2d989945c9bd8070a4e68db93f261c [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 Tattermusch678ec902016-08-08 12:54:16 +080054 [Option("port", Default = 8070)]
Jan Tattermuschb26972f2015-09-03 17:47:14 -070055 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)
Jan Tattermusch678ec902016-08-08 12:54:16 +080058 [Option("use_tls", Default = false)]
Jan Tattermusch7828e812015-10-07 17:27:48 -070059 public bool? UseTls { get; set; }
Jan Tattermusch503bbac2015-02-26 18:19:47 -080060 }
61
62 ServerOptions options;
63
64 private InteropServer(ServerOptions options)
65 {
66 this.options = options;
67 }
68
69 public static void Run(string[] args)
70 {
Jan Tattermusch90cbde82016-08-08 14:33:28 +080071 var parserResult = Parser.Default.ParseArguments<ServerOptions>(args)
72 .WithNotParsed(errors => Environment.Exit(1))
73 .WithParsed(options =>
74 {
75 var interopServer = new InteropServer(options);
76 interopServer.Run();
77 });
Jan Tattermusch503bbac2015-02-26 18:19:47 -080078 }
79
80 private void Run()
81 {
Jan Tattermusch021df8a2015-08-04 20:31:11 -070082 var server = new Server
83 {
84 Services = { TestService.BindService(new TestServiceImpl()) }
85 };
Jan Tattermusch503bbac2015-02-26 18:19:47 -080086
Jan Tattermusch03e82e22015-05-06 16:37:12 -070087 string host = "0.0.0.0";
Jan Tattermuschb26972f2015-09-03 17:47:14 -070088 int port = options.Port;
Jan Tattermusch7828e812015-10-07 17:27:48 -070089 if (options.UseTls.Value)
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080090 {
Jan Tattermuschbeffc772015-10-22 13:28:22 -070091 server.Ports.Add(host, port, TestCredentials.CreateSslServerCredentials());
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080092 }
93 else
94 {
Jan Tattermuschb26972f2015-09-03 17:47:14 -070095 server.Ports.Add(host, options.Port, ServerCredentials.Insecure);
Jan Tattermuschb0829eb2015-03-03 09:30:55 -080096 }
Jan Tattermusch03e82e22015-05-06 16:37:12 -070097 Console.WriteLine("Running server on " + string.Format("{0}:{1}", host, port));
Jan Tattermusch503bbac2015-02-26 18:19:47 -080098 server.Start();
99
100 server.ShutdownTask.Wait();
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800101 }
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800102 }
103}