[corlib] Assume UTC if no $TZ set. Fixes #30360
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel.Description / ServiceAuthorizationBehaviorTest.cs
1 //
2 // ServiceAuthorizationBehaviorTest.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 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
29 using System;
30 using System.Collections.ObjectModel;
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.Description
38 {
39         [TestFixture]
40         public class ServiceAuthorizationBehaviorTest
41         {
42                 [Test]
43                 public void DefaultValues ()
44                 {
45                         var b = new ServiceAuthorizationBehavior ();
46                         Assert.IsNull (b.ExternalAuthorizationPolicies, "#1-1");
47                         Assert.IsFalse (b.ImpersonateCallerForAllOperations, "#1-2");
48                         Assert.AreEqual (PrincipalPermissionMode.UseWindowsGroups, b.PrincipalPermissionMode, "#1-3");
49
50                         ServiceHost host = new ServiceHost (typeof (TestService));
51                         b = host.Description.Behaviors.Find<ServiceAuthorizationBehavior> ();
52                         Assert.IsNull (b.ExternalAuthorizationPolicies, "#2-1");
53                         Assert.IsFalse (b.ImpersonateCallerForAllOperations, "#2-2");
54                         Assert.AreEqual (PrincipalPermissionMode.UseWindowsGroups, b.PrincipalPermissionMode, "#2-3");
55                 }
56
57                 [Test]
58                 public void Validate ()
59                 {
60                         var b = new ServiceAuthorizationBehavior ();
61                         IServiceBehavior sb = b;
62                         sb.Validate (new ServiceDescription (),
63                         new ServiceHost (typeof (object)));
64                 }
65
66                 [Test]
67                 [ExpectedException (typeof (InvalidOperationException))]
68                 [Category ("NotWorking")]
69                 public void ImpersonateCallerWithNoValidOperation ()
70                 {
71                         ServiceHost host = new ServiceHost (typeof (TestService));
72                         var b = host.Description.Behaviors.Find<ServiceAuthorizationBehavior> ();
73                         b.ImpersonateCallerForAllOperations = true;
74                         b.PrincipalPermissionMode = PrincipalPermissionMode.None;
75
76                         host.AddServiceEndpoint (typeof (TestService), new BasicHttpBinding (), new Uri ("http://localhost:37564"));
77
78                         host.Open ();
79                 }
80
81                 [Test]
82                 public void ApplyBehavior ()
83                 {
84                         ServiceHost host = new ServiceHost (typeof (TestService2));
85                         var b = host.Description.Behaviors.Find<ServiceAuthorizationBehavior> ();
86                         b.ImpersonateCallerForAllOperations = false;
87                         b.PrincipalPermissionMode = PrincipalPermissionMode.None;
88
89                         host.AddServiceEndpoint (typeof (TestService2), new BasicHttpBinding (), new Uri ("http://localhost:37564"));
90
91                         host.Open ();
92                         var ed = ((ChannelDispatcher) host.ChannelDispatchers [0]).Endpoints [0];
93                         var db = ed.DispatchRuntime;
94                         host.Close ();
95
96                         Assert.IsFalse (db.ImpersonateCallerForAllOperations, "#1");
97                         Assert.AreEqual (PrincipalPermissionMode.None,
98                                 db.PrincipalPermissionMode, "#2");
99                 }
100
101                 [ServiceContract]
102                 public class TestService
103                 {
104                         [OperationContract]
105                         public void Foo () {}
106                 }
107
108                 [ServiceContract]
109                 public class TestService2
110                 {
111                         [OperationContract]
112                         [OperationBehavior (Impersonation = ImpersonationOption.Allowed)]
113                         public void Foo () {}
114                 }
115         }
116 }