move to from olive to mcs
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel.Description / ClientCredentialsTest.cs
1 //
2 // ClientCredentialsTest.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2006 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.IdentityModel.Claims;
32 using System.IdentityModel.Selectors;
33 using System.Security.Principal;
34 using System.ServiceModel;
35 using System.ServiceModel.Channels;
36 using System.ServiceModel.Description;
37 using System.ServiceModel.Dispatcher;
38 using System.ServiceModel.Security;
39 using NUnit.Framework;
40
41 namespace MonoTests.System.ServiceModel.Description
42 {
43         [TestFixture]
44         public class ClientCredentialsTest
45         {
46                 [Test]
47                 public void ClientCertificate ()
48                 {
49                         ClientCredentials c = new ClientCredentials ();
50                         Assert.AreEqual (true, c.SupportInteractive, "#1");
51                         X509CertificateInitiatorClientCredential ccert =
52                                 c.ClientCertificate;
53                         Assert.IsNull (ccert.Certificate, "#2");
54                 }
55
56                 [Test]
57                 public void HttpDigest ()
58                 {
59                         ClientCredentials c = new ClientCredentials ();
60                         // FIXME: implement
61                         HttpDigestClientCredential http = c.HttpDigest;
62                 }
63
64                 [Test]
65                 public void IssuedToken ()
66                 {
67                         ClientCredentials c = new ClientCredentials ();
68                         IssuedTokenClientCredential iss = c.IssuedToken;
69                         Assert.IsNotNull (iss, "#1");
70                         Assert.AreEqual (true, iss.CacheIssuedTokens, "#2");
71                         Assert.AreEqual (SecurityKeyEntropyMode.CombinedEntropy, iss.DefaultKeyEntropyMode, "#3");
72                         Assert.AreEqual (60, iss.IssuedTokenRenewalThresholdPercentage, "#4");
73                         Assert.AreEqual (0, iss.IssuerChannelBehaviors.Count, "#5");
74                         Assert.IsNull (iss.LocalIssuerAddress, "#6");
75                         Assert.IsNull (iss.LocalIssuerBinding, "#7");
76                         Assert.AreEqual (0, iss.LocalIssuerChannelBehaviors.Count, "#8");
77                         Assert.AreEqual (TimeSpan.MaxValue, iss.MaxIssuedTokenCachingTime, "#9");
78                 }
79
80                 [Test]
81                 public void Peer ()
82                 {
83                         ClientCredentials c = new ClientCredentials ();
84                         // FIXME: implement
85                         PeerCredential peer = c.Peer;
86                 }
87
88                 [Test]
89                 public void ServiceCertificate ()
90                 {
91                         ClientCredentials c = new ClientCredentials ();
92                         // FIXME: implement
93                         X509CertificateRecipientClientCredential scert =
94                                 c.ServiceCertificate;
95                 }
96
97                 [Test]
98                 public void UserName ()
99                 {
100                         ClientCredentials c = new ClientCredentials ();
101                         // FIXME: implement
102                         UserNamePasswordClientCredential userpass = c.UserName;
103                 }
104
105                 [Test]
106                 public void Windows ()
107                 {
108                         ClientCredentials c = new ClientCredentials ();
109                         WindowsClientCredential win = c.Windows;
110                         Assert.IsNotNull (win.ClientCredential, "#1");
111                         Assert.IsTrue (win.AllowNtlm, "#2");
112                         Assert.AreEqual (TokenImpersonationLevel.Identification, win.AllowedImpersonationLevel, "#3");
113                 }
114         }
115 }