blob: e87f3b7dc1b7e707520cd09800eb898e9931e773 [file] [log] [blame]
Jan Tattermuschd0c1bfa2015-10-22 19:14:57 -07001#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.Linq;
37using System.Threading;
38using System.Threading.Tasks;
39using Grpc.Core;
40using Grpc.Core.Utils;
41using Grpc.Testing;
42using NUnit.Framework;
43
44namespace Grpc.IntegrationTesting
45{
46 /// <summary>
47 /// Runs performance tests in-process.
48 /// </summary>
49 public class RunnerClientServerTest
50 {
Jan Tattermuschd0c1bfa2015-10-22 19:14:57 -070051 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
Jan Tattermusch3ac274f2015-12-11 15:27:58 -080076
77 [Test]
78 [Category("Performance")]
79 [Ignore("Prevent running on Jenkins")]
Jan Tattermuschd0c1bfa2015-10-22 19:14:57 -070080 public async Task ClientServerRunner()
81 {
82 var config = new ClientConfig
83 {
Jan Tattermusch1cbb5672016-02-18 14:27:28 -080084 ServerTargets = { string.Format("{0}:{1}", "localhost", serverRunner.BoundPort) },
Jan Tattermuschd0c1bfa2015-10-22 19:14:57 -070085 RpcType = RpcType.UNARY,
86 LoadParams = new LoadParams { ClosedLoop = new ClosedLoopParams() },
87 PayloadConfig = new PayloadConfig
88 {
89 SimpleParams = new SimpleProtoParams
90 {
91 ReqSize = 100
92 }
Jan Tattermusch18ce9d62015-11-18 15:41:10 -080093 },
94 HistogramParams = new HistogramParams
95 {
96 Resolution = 0.01,
97 MaxPossible = 60e9
Jan Tattermuschd0c1bfa2015-10-22 19:14:57 -070098 }
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);
Jan Tattermusch18ce9d62015-11-18 15:41:10 -0800113 System.Console.WriteLine("avg micros/call " + (long) (stats.Latencies.Sum / stats.Latencies.Count / 1000.0));
Jan Tattermuschd0c1bfa2015-10-22 19:14:57 -0700114 }
115 }
116}