[runtime] Fixed get_process_module module name.
[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 namespace MonoTests.System.ServiceModel
39 {
40         [TestFixture]
41         public class OperationContextTest
42         {
43                 [Test]
44                 [ExpectedException (typeof (ArgumentNullException))]
45                 public void NullConstructor ()
46                 {
47                         new OperationContext (null);
48                 }
49
50                 [Test]
51                 public void UserContextProperties ()
52                 {
53                         var ch = ChannelFactory<IFooChannel>.CreateChannel (new BasicHttpBinding (), new EndpointAddress ("http://localhost:37564"));
54                         var o = new OperationContext (ch);
55
56                         // FIXME: this is strange. It should return non-null value.
57                         // Assert.IsNull(o.Channel, "#1");
58
59                         Assert.IsNull (o.EndpointDispatcher, "#2");
60                         Assert.IsNull (o.Host, "#3");
61
62                         Assert.IsFalse (o.HasSupportingTokens, "#4");
63
64                         Assert.IsNull (o.IncomingMessageHeaders, "#5");
65                         Assert.IsNull (o.IncomingMessageProperties, "#6");
66                         Assert.IsNotNull (o.OutgoingMessageHeaders, "#7");
67                         Assert.IsNotNull (o.OutgoingMessageProperties, "#8");
68
69                         Assert.IsNull (o.InstanceContext, "#9");
70                         Assert.IsTrue (o.IsUserContext, "#10");
71                         Assert.IsNull (o.RequestContext, "#11");
72                         Assert.IsNull (o.ServiceSecurityContext, "#12");
73                         Assert.IsNull (o.SessionId, "#13");
74                         Assert.IsNull (o.SupportingTokens, "#14");
75                 }
76
77                 [ServiceContract]
78                 interface IFoo
79                 {
80                         [OperationContract]
81                         string Echo (string input);
82                 }
83
84                 interface IFooChannel : IFoo, IClientChannel
85                 {
86                 }
87
88                 [Test]
89                 public void Current ()
90                 {
91                         Assert.IsNull (OperationContext.Current, "Current-1");
92
93                         try {
94                                 var ch = ChannelFactory<IFooChannel>.CreateChannel (new BasicHttpBinding (), new EndpointAddress ("http://localhost:37564"));
95                                 OperationContext.Current = new OperationContext (ch);
96                                 Assert.IsNotNull (OperationContext.Current, "Current-2");
97                         }
98                         finally {
99                                 OperationContext.Current = null;
100                                 Assert.IsNull (OperationContext.Current, "Current-3");
101                         }
102                 }
103         }
104 }