OLD | NEW |
(Empty) | |
| 1 #region Copyright notice and license |
| 2 |
| 3 // Copyright 2015-2016, 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 |
| 34 using System; |
| 35 using System.Collections.Generic; |
| 36 using System.Linq; |
| 37 using System.Threading; |
| 38 using System.Threading.Tasks; |
| 39 using Grpc.Core; |
| 40 using Grpc.Core.Utils; |
| 41 using Grpc.Testing; |
| 42 using NUnit.Framework; |
| 43 |
| 44 namespace Grpc.IntegrationTesting |
| 45 { |
| 46 /// <summary> |
| 47 /// Runs performance tests in-process. |
| 48 /// </summary> |
| 49 public class RunnerClientServerTest |
| 50 { |
| 51 IServerRunner serverRunner; |
| 52 |
| 53 [TestFixtureSetUp] |
| 54 public void Init() |
| 55 { |
| 56 var serverConfig = new ServerConfig |
| 57 { |
| 58 ServerType = ServerType.ASYNC_SERVER, |
| 59 PayloadConfig = new PayloadConfig |
| 60 { |
| 61 SimpleParams = new SimpleProtoParams |
| 62 { |
| 63 RespSize = 100 |
| 64 } |
| 65 } |
| 66 }; |
| 67 serverRunner = ServerRunners.CreateStarted(serverConfig); |
| 68 } |
| 69 |
| 70 [TestFixtureTearDown] |
| 71 public void Cleanup() |
| 72 { |
| 73 serverRunner.StopAsync().Wait(); |
| 74 } |
| 75 |
| 76 |
| 77 [Test] |
| 78 [Category("Performance")] |
| 79 [Ignore("Prevent running on Jenkins")] |
| 80 public async Task ClientServerRunner() |
| 81 { |
| 82 var config = new ClientConfig |
| 83 { |
| 84 ServerTargets = { string.Format("{0}:{1}", "localhost", serverRu
nner.BoundPort) }, |
| 85 RpcType = RpcType.UNARY, |
| 86 LoadParams = new LoadParams { ClosedLoop = new ClosedLoopParams(
) }, |
| 87 PayloadConfig = new PayloadConfig |
| 88 { |
| 89 SimpleParams = new SimpleProtoParams |
| 90 { |
| 91 ReqSize = 100 |
| 92 } |
| 93 }, |
| 94 HistogramParams = new HistogramParams |
| 95 { |
| 96 Resolution = 0.01, |
| 97 MaxPossible = 60e9 |
| 98 } |
| 99 }; |
| 100 |
| 101 var runner = ClientRunners.CreateStarted(config); |
| 102 |
| 103 System.Console.WriteLine("Warming up"); |
| 104 await Task.Delay(3000); |
| 105 runner.GetStats(true); // throw away warm-up data |
| 106 |
| 107 System.Console.WriteLine("Benchmarking"); |
| 108 await Task.Delay(3000); |
| 109 var stats = runner.GetStats(true); |
| 110 await runner.StopAsync(); |
| 111 |
| 112 System.Console.WriteLine(stats); |
| 113 System.Console.WriteLine("avg micros/call " + (long) (stats.Latencie
s.Sum / stats.Latencies.Count / 1000.0)); |
| 114 } |
| 115 } |
| 116 } |
OLD | NEW |