Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel / ServiceHostTest.cs
1 //
2 // ServiceHostTest.cs
3 //
4 // Author:
5 //      Ankit Jain  <jankit@novell.com>
6 //      Atsushi Enomoto  <atsushi@ximian.com>
7 //
8 // Copyright (C) 2005-2006 Novell, Inc.  http://www.novell.com
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29 using System;
30 using System.Collections.Generic;
31 using System.ServiceModel;
32 using System.ServiceModel.Channels;
33 using System.ServiceModel.Description;
34 using System.ServiceModel.Dispatcher;
35 using NUnit.Framework;
36
37 namespace MonoTests.System.ServiceModel
38 {
39         [TestFixture]
40         public class ServiceHostTest
41         {
42                 class MyHost : ServiceHost
43                 {
44                         public MyHost (Type type, Uri uri)
45                                 : base (type, uri)
46                         {
47                         }
48
49                         public IDictionary<string,ContractDescription> ExposedContracts {
50                                 get { return ImplementedContracts; }
51                         }
52                 }
53
54                 [Test]
55                 public void Ctor ()
56                 {
57                         MyHost host = new MyHost (typeof (Foo), new Uri ("http://localhost"));
58                         Assert.IsNotNull (host.Description, "#1");
59                         Assert.AreEqual (typeof (Foo), host.Description.ServiceType, "#1-2");
60                         Assert.IsNotNull (host.BaseAddresses, "#2");
61                         Assert.AreEqual (1, host.BaseAddresses.Count, "#3");
62
63                         Assert.IsNotNull (host.ChannelDispatchers, "#4");
64                         Assert.AreEqual (0, host.ChannelDispatchers.Count, "#5");
65                         Assert.IsNotNull (host.Authorization, "#6");
66                         Assert.IsNotNull (host.ExposedContracts, "#7");
67                         // Foo is already in the contracts.
68                         Assert.AreEqual (1, host.ExposedContracts.Count, "#8");
69                         // this loop iterates only once.
70                         foreach (KeyValuePair<string,ContractDescription> e in host.ExposedContracts) {
71                                 // hmm... so, seems like the key is just the full name of the contract type.
72                                 Assert.AreEqual ("MonoTests.System.ServiceModel.ServiceHostTest+Foo", e.Key, "#9");
73                                 ContractDescription cd = e.Value;
74                                 Assert.AreEqual ("Foo", cd.Name, "#10");
75                                 Assert.AreEqual ("http://tempuri.org/", cd.Namespace, "#11");
76                         }
77                 }
78
79                 [Test]
80                 [ExpectedException (typeof (ArgumentNullException))]
81                 public void CtorNull ()
82                 {
83                         new ServiceHost (typeof (Foo), null);
84                 }
85
86                 [Test]
87                 [ExpectedException (typeof (ArgumentException))]
88                 public void CtorServiceTypeNotClass ()
89                 {
90                         new ServiceHost (typeof (IBar), new Uri ("http://localhost"));
91                 }
92
93                 [Test]
94                 [ExpectedException (typeof (ArgumentException))]
95                 public void CtorRelativeBaseAddress ()
96                 {
97                         new ServiceHost (typeof (Foo), new Uri ("test", UriKind.Relative));
98                 }
99                 
100                 [Test]
101                 [ExpectedException (typeof (ArgumentException))]
102                 public void CtorMultipleAddressPerScheme ()
103                 {
104                         new ServiceHost ( typeof (Foo), 
105                                         new Uri ("http://localhost", UriKind.Absolute),
106                                         new Uri ("http://someotherhost", UriKind.Absolute));
107                 }
108
109                 [Test]
110                 public void AddServiceEndpoint ()
111                 {
112                         ServiceHost host = new ServiceHost (typeof (Foo), new Uri ("http://localhost/echo"));
113                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "rel");
114                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "svc");
115
116                         Assert.IsNotNull (host.Description, "#6");
117                         Assert.IsNotNull (host.Description.Endpoints, "#7");
118                         Assert.AreEqual (host.Description.Endpoints.Count, 2, "#8");
119                         Assert.AreEqual ("http://localhost/echo/rel", host.Description.Endpoints [0].Address.Uri.AbsoluteUri,  "#9");
120                 }
121
122                 [Test]
123                 [ExpectedException (typeof (InvalidOperationException))]
124                 public void AddServiceEndpoint1 ()
125                 {
126                         ServiceHost host = new ServiceHost (typeof (Foo), new Uri ("ftp://localhost/echo"));
127                         // ftp does not match BasicHttpBinding
128                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "rel");
129                 }
130
131                 [Test]
132                 [ExpectedException (typeof (InvalidOperationException))]
133                 public void AddServiceEndpoint2 ()
134                 {
135                         ServiceHost host = new ServiceHost (typeof (Foo), new Uri ("http://localhost/echo"));
136                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "rel");
137                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "rel"); // duplicate URI
138
139                         host.Open ();
140                         host.Close (); // should not reach here. It is to make sure to close unexpectedly opened host.
141                 }
142
143                 [Test]
144                 [ExpectedException (typeof (InvalidOperationException))]
145                 public void AddServiceEndpoint2_2 ()
146                 {
147                         ServiceHost host = new ServiceHost (typeof (Foo), new Uri ("http://localhost/echo"));
148                         // same as above, but through Endpoints.Add()
149                         host.Description.Endpoints.Add (new ServiceEndpoint (ContractDescription.GetContract (typeof (Foo)), new BasicHttpBinding (), new EndpointAddress ("http://localhost/echo/rel")));
150                         host.Description.Endpoints.Add (new ServiceEndpoint (ContractDescription.GetContract (typeof (Foo)), new BasicHttpBinding (), new EndpointAddress ("http://localhost/echo/rel")));
151
152                         host.Open ();
153                         host.Close (); // should not reach here. It is to make sure to close unexpectedly opened host.
154                 }
155
156                 [Test]
157                 [ExpectedException (typeof (InvalidOperationException))]
158                 public void AddServiceEndpoint2_3 ()
159                 {
160                         ServiceHost host = new ServiceHost (typeof (HogeFuga), new Uri ("http://localhost/echo"));
161                         host.Description.Endpoints.Add (new ServiceEndpoint (ContractDescription.GetContract (typeof (IHoge)), new BasicHttpBinding (), new EndpointAddress ("http://localhost/echo")));
162                         host.Description.Endpoints.Add (new ServiceEndpoint (ContractDescription.GetContract (typeof (IFuga)), new BasicHttpBinding (), new EndpointAddress ("http://localhost/echo")));
163
164                         // Different contracts unlike previous two cases.
165                         // If two or more endpoints are bound to the same listen
166                         // URI, then they must share the same instance.
167
168                         host.Open ();
169                         host.Close (); // should not reach here. It is to make sure to close unexpectedly opened host.
170                 }
171
172                 [Test]
173                 public void AddServiceEndpoint2_4 ()
174                 {
175                         ServiceHost host = new ServiceHost (typeof (HogeFuga), new Uri ("http://localhost:37564"));
176                         var binding = new BasicHttpBinding ();
177                         host.AddServiceEndpoint (typeof (IHoge), binding, new Uri ("http://localhost:37564"));
178                         host.AddServiceEndpoint (typeof (IFuga), binding, new Uri ("http://localhost:37564"));
179
180                         // Use the same binding, results in one ChannelDispatcher (actually two, for metadata/debug behavior).
181                         host.Open ();
182                         try {
183                                 Assert.AreEqual (2, host.ChannelDispatchers.Count, "#1");
184                                 foreach (ChannelDispatcher cd in host.ChannelDispatchers) {
185                                         if (cd.BindingName != binding.Name)
186                                                 continue; // mex
187                                         Assert.AreEqual (2, cd.Endpoints.Count, "#2");
188                                 }
189                         } finally {
190                                 host.Close ();
191                         }
192                 }
193
194                 [Test]
195                 [ExpectedException (typeof (InvalidOperationException))]
196                 public void AddServiceEndpoint3 ()
197                 {
198                         ServiceHost host = new ServiceHost (typeof (Foo), new Uri ("http://localhost/echo"));
199                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "rel");
200                         host.AddServiceEndpoint (typeof (Foo), new BasicHttpBinding (), "http://localhost/echo/rel"); // duplicate URI when resolved
201
202                         host.Open ();
203                         host.Close (); // should not reach here. It is to make sure to close unexpectedly opened host.
204                 }
205
206                 [Test]
207                 public void Open ()
208                 {
209                         ServiceHost host = new ServiceHost (typeof (ZeroOperationsImpl));
210                         host.AddServiceEndpoint (typeof (IHaveZeroOperarationsContract), new BasicHttpBinding (), "http://localhost/echo");
211
212                         try {
213                                 host.Open ();
214                                 Assert.Fail ("InvalidOperationException expected");
215                         } 
216                         catch (InvalidOperationException e) {
217                                 //"ContractDescription 'IHaveZeroOperarationsContract' has zero operations; a contract must have at least one operation."
218                                 StringAssert.Contains ("IHaveZeroOperarationsContract", e.Message);
219                         }
220                         finally {
221                                 if (host.State == CommunicationState.Opened)
222                                         host.Close (); // It is to make sure to close unexpectedly opened host if the test fail.
223                         }
224                 }
225
226                 [Test]
227                 public void AddServiceEndpoint4 ()
228                 {
229                         ServiceHost host = new ServiceHost (typeof (Baz), new Uri ("http://localhost/echo"));
230                         host.AddServiceEndpoint ("MonoTests.System.ServiceModel.ServiceHostTest+IBaz", new BasicHttpBinding (), "rel");
231                 }
232
233                 [Test]
234                 [ExpectedException (typeof (InvalidOperationException))]
235                 public void AddServiceEndpoint5 ()
236                 {
237                         ServiceHost host = new ServiceHost (typeof (Baz), new Uri ("http://localhost/echo"));
238
239                         // Full type name is expected here (see AddServiceEndpoint4).
240                         host.AddServiceEndpoint ("IBaz", new BasicHttpBinding (), "rel");
241                 }
242
243                 [Test]
244                 [ExpectedException (typeof (InvalidOperationException))]
245                 public void AddServiceEndpoint6 ()
246                 {
247                         ServiceHost host = new ServiceHost (typeof (Foo), new Uri ("http://localhost/echo"));
248                         host.AddServiceEndpoint ("ISuchTypeDoesNotExist", new BasicHttpBinding (), "rel");
249                 }
250
251                 [Test]
252                 [ExpectedException (typeof (InvalidOperationException))]
253                 public void AddServiceEndpointMexWithNoImpl ()
254                 {
255                         using (ServiceHost h = new ServiceHost (typeof (Foo), new Uri ("http://localhost:8080"))) {
256                                 // it expects ServiceMetadataBehavior
257                                 h.AddServiceEndpoint (ServiceMetadataBehavior.MexContractName, MetadataExchangeBindings.CreateMexHttpBinding (), "mex");
258                         }
259                 }
260
261                 [Test]
262                 public void AddServiceEndpointMetadataExchange ()
263                 {
264                         // MyMetadataExchange implements IMetadataExchange
265                         ServiceHost host = new ServiceHost (typeof (MyMetadataExchange));
266                         host.AddServiceEndpoint ("IMetadataExchange",
267                                                  new BasicHttpBinding (),
268                                                  "http://localhost:8080/");
269                 }
270
271                 [Test]
272                 [ExpectedException (typeof (InvalidOperationException))]
273                 public void AddServiceEndpointMetadataExchangeFullNameFails ()
274                 {
275                         ServiceHost host = new ServiceHost (typeof (MyMetadataExchange));
276                         host.AddServiceEndpoint ("System.ServiceModel.Description.IMetadataExchange",
277                                                  new BasicHttpBinding (),
278                                                  "http://localhost:8080");
279                 }
280
281                 [Test]
282                 public void InstanceWithNonSingletonMode ()
283                 {
284                         ServiceHost host = new ServiceHost (
285                                 new NonSingletonService ());
286                         Assert.IsNotNull (host.Description.Behaviors.Find<ServiceBehaviorAttribute> ().GetWellKnownSingleton (), "premise1");
287                         host.AddServiceEndpoint (
288                                 typeof (NonSingletonService),
289                                 new BasicHttpBinding (),
290                                 new Uri ("http://localhost:37564/s1"));
291
292                         // in case Open() didn't fail, we need to close the host.
293                         // And even if Close() caused the expected exception,
294                         // the test should still fail.
295                         try {
296                                 host.Open ();
297                                 try {
298                                         if (host.State == CommunicationState.Opened)
299                                                 host.Close ();
300                                 } catch (InvalidOperationException) {
301                                 }
302                                 Assert.Fail ("InstanceContextMode was not checked");
303                         } catch (InvalidOperationException) {
304                         }
305                 }
306
307
308                 [Test]
309                 public void InstanceWithSingletonMode ()
310                 {
311                         SingletonService instance = new SingletonService ();
312                         ServiceHost host = new ServiceHost (instance);
313                         Assert.IsNotNull (host.Description.Behaviors.Find<ServiceBehaviorAttribute> ().GetWellKnownSingleton (), "#1");
314                         host.AddServiceEndpoint (
315                                 typeof (SingletonService),
316                                 new BasicHttpBinding (),
317                                 new Uri ("http://localhost:37564/s2"));
318
319                         // in case Open() didn't fail, we need to close the host.
320                         // And even if Close() caused the expected exception,
321                         // the test should still fail.
322                         try {
323                                 host.Open ();
324                                 ChannelDispatcher cd = (ChannelDispatcher) host.ChannelDispatchers [0];
325                                 DispatchRuntime dr = cd.Endpoints [0].DispatchRuntime;
326                                 Assert.IsNotNull (dr.InstanceContextProvider, "#2");
327                                 InstanceContext ctx = dr.InstanceContextProvider.GetExistingInstanceContext (null, null);
328                                 Assert.IsNotNull (ctx, "#3");
329                                 Assert.AreEqual (instance, ctx.GetServiceInstance (), "#4");
330                         } finally {
331                                 if (host.State == CommunicationState.Opened)
332                                         host.Close ();
333                         }
334                 }
335
336                 [ServiceContract]
337                 interface IBar
338                 {
339                 }
340
341                 [ServiceContract]
342                 class Foo
343                 {
344                         [OperationContract]
345                         public void SayWhat () { }
346                 }
347
348                 [ServiceContract]
349                 interface IBaz
350                 {
351                         [OperationContract]
352                         string Echo (string source);
353                 }
354                 
355                 [ServiceContract]
356                 interface IHoge
357                 {
358                         [OperationContract]
359                         void DoX ();
360                 }
361
362                 [ServiceContract]
363                 interface IFuga
364                 {
365                         [OperationContract]
366                         void DoY ();
367                 }
368
369                 [ServiceContract]
370                 interface IHaveZeroOperarationsContract
371                 {
372                         string Echo (string source);
373                 }
374
375                 class ZeroOperationsImpl : IHaveZeroOperarationsContract
376                 {
377                         public string Echo(string source)
378                         {
379                                 return null;
380                         }
381                 }
382
383                 class HogeFuga : IHoge, IFuga
384                 {
385                         public void DoX () {}
386                         public void DoY () {}
387                 }
388
389                 class Baz : IBaz
390                 {
391                         public string Echo (string source)
392                         {
393                                 return source;
394                         }
395                 }
396
397                 class MyMetadataExchange : IMetadataExchange
398                 {
399                         public Message Get (Message req)
400                         {
401                                 throw new NotImplementedException ();
402                         }
403
404                         public IAsyncResult BeginGet (Message request, AsyncCallback cb, object state)
405                         {
406                                 throw new NotImplementedException ();
407                         }
408
409                         public Message EndGet (IAsyncResult result)
410                         {
411                                 throw new NotImplementedException ();
412                         }
413                 }
414
415                 [ServiceContract]
416                 public class NonSingletonService
417                 {
418                         [OperationContract]
419                         public void Process (string input)
420                         {
421                         }
422                 }
423
424                 [ServiceContract]
425                 [ServiceBehavior (InstanceContextMode = InstanceContextMode.Single)]
426                 public class SingletonService
427                 {
428                         [OperationContract]
429                         public void Process (string input)
430                         {
431                         }
432                 }
433         }
434 }