Merge pull request #2807 from akoeplinger/gchandle
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel / OperationContextTest.cs
1 //
2 // OperationContextTest.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2009 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.IO;
30 using System.IdentityModel.Claims;
31 using System.Runtime.Serialization;
32 using System.Security.Cryptography.X509Certificates;
33 using System.Security.Cryptography.Xml;
34 using System.ServiceModel;
35 using System.Xml;
36 using NUnit.Framework;
37
38 using MonoTests.Helpers;
39
40 namespace MonoTests.System.ServiceModel
41 {
42         [TestFixture]
43         public class OperationContextTest
44         {
45                 [Test]
46                 [ExpectedException (typeof (ArgumentNullException))]
47                 public void NullConstructor ()
48                 {
49                         new OperationContext (null);
50                 }
51
52                 [Test]
53                 public void UserContextProperties ()
54                 {
55                         var ch = ChannelFactory<IFooChannel>.CreateChannel (new BasicHttpBinding (), new EndpointAddress ("http://localhost:" + NetworkHelpers.FindFreePort ()));
56                         var o = new OperationContext (ch);
57
58                         // FIXME: this is strange. It should return non-null value.
59                         // Assert.IsNull(o.Channel, "#1");
60
61                         Assert.IsNull (o.EndpointDispatcher, "#2");
62                         Assert.IsNull (o.Host, "#3");
63
64                         Assert.IsFalse (o.HasSupportingTokens, "#4");
65
66                         Assert.IsNull (o.IncomingMessageHeaders, "#5");
67                         Assert.IsNull (o.IncomingMessageProperties, "#6");
68                         Assert.IsNotNull (o.OutgoingMessageHeaders, "#7");
69                         Assert.IsNotNull (o.OutgoingMessageProperties, "#8");
70
71                         Assert.IsNull (o.InstanceContext, "#9");
72                         Assert.IsTrue (o.IsUserContext, "#10");
73                         Assert.IsNull (o.RequestContext, "#11");
74                         Assert.IsNull (o.ServiceSecurityContext, "#12");
75                         Assert.IsNull (o.SessionId, "#13");
76                         Assert.IsNull (o.SupportingTokens, "#14");
77                 }
78
79                 [ServiceContract]
80                 interface IFoo
81                 {
82                         [OperationContract]
83                         string Echo (string input);
84                 }
85
86                 interface IFooChannel : IFoo, IClientChannel
87                 {
88                 }
89
90                 [Test]
91                 public void Current ()
92                 {
93                         Assert.IsNull (OperationContext.Current, "Current-1");
94
95                         try {
96                                 var ch = ChannelFactory<IFooChannel>.CreateChannel (new BasicHttpBinding (), new EndpointAddress ("http://localhost:" + NetworkHelpers.FindFreePort ()));
97                                 OperationContext.Current = new OperationContext (ch);
98                                 Assert.IsNotNull (OperationContext.Current, "Current-2");
99                         }
100                         finally {
101                                 OperationContext.Current = null;
102                                 Assert.IsNull (OperationContext.Current, "Current-3");
103                         }
104                 }
105         }
106 }