Merge pull request #704 from jgagnon/master
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel.Channels / SslStreamSecurityBindingElementTest.cs
1 //
2 // SslStreamSecurityBindingElementTest.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 using System;
29 using System.Collections.ObjectModel;
30 using System.IO;
31 using System.Security.Cryptography.X509Certificates;
32 using System.ServiceModel;
33 using System.ServiceModel.Channels;
34 using System.ServiceModel.Description;
35 using System.ServiceModel.Security;
36 using System.Text;
37 using NUnit.Framework;
38
39 namespace MonoTests.System.ServiceModel.Channels
40 {
41         [TestFixture]
42         public class SslStreamSecurityBindingElementTest
43         {
44                 [Test]
45                 [Category ("NotWorking")]
46                 public void DefaultValues ()
47                 {
48                         SslStreamSecurityBindingElement bel =
49                                 new SslStreamSecurityBindingElement ();
50                         Assert.IsNotNull (bel.IdentityVerifier, "#1");
51                         Assert.AreEqual (false, bel.RequireClientCertificate, "#2");
52                         Assert.AreEqual ("<msf:SslTransportSecurity xmlns:msf=\"http://schemas.microsoft.com/ws/2006/05/framing/policy\" />", bel.GetTransportTokenAssertion ().OuterXml, "#3");
53                 }
54
55                 StreamSecurityUpgradeProvider CreateClientProvider (params object [] parameters)
56                 {
57                         SslStreamSecurityBindingElement bel =
58                                 new SslStreamSecurityBindingElement ();
59                         BindingParameterCollection pl =
60                                 new BindingParameterCollection ();
61                         foreach (object o in parameters)
62                                 pl.Add (o);
63                         BindingContext ctx = new BindingContext (
64                                 new CustomBinding (new HttpTransportBindingElement ()), pl);
65                         return bel.BuildClientStreamUpgradeProvider (ctx)
66                                 as StreamSecurityUpgradeProvider;
67                 }
68
69                 [Test]
70                 [ExpectedException (typeof (InvalidOperationException))]
71                 [Category ("NotWorking")]
72                 public void ClientProviderCreateAcceptorBeforeOpen ()
73                 {
74                         StreamSecurityUpgradeProvider p = CreateClientProvider ();
75                         p.CreateUpgradeAcceptor ();
76                 }
77
78                 [Test]
79                 [Category ("NotWorking")]
80                 public void ClientAcceptUpgradeWithoutServiceCertificate ()
81                 {
82                         StreamSecurityUpgradeProvider p = CreateClientProvider ();
83                         Assert.IsNotNull (p, "#1");
84                         Assert.IsNull (p.Identity, "#2"); // not yet, before Open().
85                         p.Open ();
86                         StreamUpgradeAcceptor a = p.CreateUpgradeAcceptor ();
87                         try {
88                                 Stream s = a.AcceptUpgrade (new MemoryStream (new byte [] {1, 2, 3, 4, 5}));
89                                 Assert.Fail ("It should somehow raise an error."); // on Winfx it is unwise ArgumentNullException
90                         } catch (Exception) {
91                         } finally {
92                                 p.Close ();
93                         }
94                 }
95
96                 [Test]
97                 [Ignore ("find out how to fill serverCertificate")]
98                 public void ClientAcceptUpgrade ()
99                 {
100                         ServiceCredentials cred = new ServiceCredentials ();
101                         X509Certificate2 cert = 
102                                 new X509Certificate2 ("Test/Resources/test.cer");
103                         cred.ServiceCertificate.Certificate = cert;
104                         X509CertificateEndpointIdentity ident =
105                                 new X509CertificateEndpointIdentity (cert);
106                         StreamSecurityUpgradeProvider p = CreateClientProvider (cred, ident);
107                         p.Open ();
108                         try {
109                                 StreamSecurityUpgradeAcceptor a =
110                                         p.CreateUpgradeAcceptor ()
111                                         as StreamSecurityUpgradeAcceptor;
112                                 Assert.IsNotNull (a, "#1");
113                                 SecurityMessageProperty prop =
114                                         a.GetRemoteSecurity ();
115                                 Assert.IsNull (prop, "#2"); // hmm
116                                 Stream s = a.AcceptUpgrade (new MemoryStream (new byte [] {1, 2, 3, 4, 5}));
117                         } finally {
118                                 p.Close ();
119                         }
120                 }
121         }
122 }