OLD | NEW |
(Empty) | |
| 1 #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 |
| 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 public class HeaderInterceptorTest |
| 47 { |
| 48 const string Host = "localhost"; |
| 49 Server server; |
| 50 Channel channel; |
| 51 TestService.TestServiceClient client; |
| 52 |
| 53 [TestFixtureSetUp] |
| 54 public void Init() |
| 55 { |
| 56 server = new Server |
| 57 { |
| 58 Services = { TestService.BindService(new TestServiceImpl()) }, |
| 59 Ports = { { Host, ServerPort.PickUnused, ServerCredentials.Insec
ure } } |
| 60 }; |
| 61 server.Start(); |
| 62 |
| 63 channel = new Channel(Host, server.Ports.Single().BoundPort, Channel
Credentials.Insecure); |
| 64 client = TestService.NewClient(channel); |
| 65 } |
| 66 |
| 67 [TestFixtureTearDown] |
| 68 public void Cleanup() |
| 69 { |
| 70 channel.ShutdownAsync().Wait(); |
| 71 server.ShutdownAsync().Wait(); |
| 72 } |
| 73 |
| 74 [Test] |
| 75 public async Task HeaderInterceptor_CreateMetadata() |
| 76 { |
| 77 var key = "x-grpc-test-echo-initial"; |
| 78 client.HeaderInterceptor = new HeaderInterceptor((method, metadata)
=> |
| 79 { |
| 80 metadata.Add(key, "ABC"); |
| 81 }); |
| 82 |
| 83 var call = client.UnaryCallAsync(new SimpleRequest()); |
| 84 await call; |
| 85 |
| 86 var responseHeaders = await call.ResponseHeadersAsync; |
| 87 Assert.AreEqual("ABC", responseHeaders.First((entry) => entry.Key ==
key).Value); |
| 88 } |
| 89 |
| 90 [Test] |
| 91 public async Task HeaderInterceptor_AppendMetadata() |
| 92 { |
| 93 var initialKey = "x-grpc-test-echo-initial"; |
| 94 var trailingKey = "x-grpc-test-echo-trailing-bin"; |
| 95 |
| 96 client.HeaderInterceptor = new HeaderInterceptor((method, metadata)
=> |
| 97 { |
| 98 metadata.Add(initialKey, "ABC"); |
| 99 }); |
| 100 |
| 101 var headers = new Metadata |
| 102 { |
| 103 { trailingKey, new byte[] {0xaa} } |
| 104 }; |
| 105 var call = client.UnaryCallAsync(new SimpleRequest(), headers: heade
rs); |
| 106 await call; |
| 107 |
| 108 var responseHeaders = await call.ResponseHeadersAsync; |
| 109 Assert.AreEqual("ABC", responseHeaders.First((entry) => entry.Key ==
initialKey).Value); |
| 110 CollectionAssert.AreEqual(new byte[] {0xaa}, call.GetTrailers().Firs
t((entry) => entry.Key == trailingKey).ValueBytes); |
| 111 } |
| 112 } |
| 113 } |
OLD | NEW |