blob: 513f8722d64238299548af6fe4ec41605816f58a [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
57 [Option("use_tls")]
58 public bool UseTls { get; set; }
59
60 [HelpOption]
61 public string GetUsage()
62 {
63 var help = new HelpText
64 {
65 Heading = "gRPC C# interop testing server",
66 AddDashesToOption = true
67 };
68 help.AddPreOptionsLine("Usage:");
69 help.AddOptions(this);
70 return help;
71 }
Jan Tattermusch503bbac2015-02-26 18:19:47 -080072 }
73
74 ServerOptions options;
75
76 private InteropServer(ServerOptions options)
77 {
78 this.options = options;
79 }
80
81 public static void Run(string[] args)
82 {
Jan Tattermuschb26972f2015-09-03 17:47:14 -070083 var options = new ServerOptions();
84 if (!Parser.Default.ParseArguments(args, options))
Jan Tattermusch503bbac2015-02-26 18:19:47 -080085 {
Jan Tattermusch503bbac2015-02-26 18:19:47 -080086 Environment.Exit(1);
87 }
88
89 var interopServer = new InteropServer(options);
90 interopServer.Run();
91 }
92
93 private void Run()
94 {
Jan Tattermusch021df8a2015-08-04 20:31:11 -070095 var server = new Server
96 {
97 Services = { TestService.BindService(new TestServiceImpl()) }
98 };
Jan Tattermusch503bbac2015-02-26 18:19:47 -080099
Jan Tattermusch03e82e22015-05-06 16:37:12 -0700100 string host = "0.0.0.0";
Jan Tattermuschb26972f2015-09-03 17:47:14 -0700101 int port = options.Port;
102 if (options.UseTls)
Jan Tattermuschb0829eb2015-03-03 09:30:55 -0800103 {
Jan Tattermusch31ba0632015-08-04 22:02:55 -0700104 server.Ports.Add(host, port, TestCredentials.CreateTestServerCredentials());
Jan Tattermuschb0829eb2015-03-03 09:30:55 -0800105 }
106 else
107 {
Jan Tattermuschb26972f2015-09-03 17:47:14 -0700108 server.Ports.Add(host, options.Port, ServerCredentials.Insecure);
Jan Tattermuschb0829eb2015-03-03 09:30:55 -0800109 }
Jan Tattermusch03e82e22015-05-06 16:37:12 -0700110 Console.WriteLine("Running server on " + string.Format("{0}:{1}", host, port));
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800111 server.Start();
112
113 server.ShutdownTask.Wait();
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800114 }
Jan Tattermusch503bbac2015-02-26 18:19:47 -0800115 }
116}