Fix (existing and) remaining NotWorking tests for System.Uri
[mono.git] / mcs / class / System / Test / System / UriFormatExceptionCas.cs
1 //
2 // UriFormatExceptionCas.cs - CAS unit tests for System.UriFormatException
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@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 NUnit.Framework;
30
31 using System;
32 using System.Reflection;
33 using System.Runtime.Serialization;
34 using System.Security;
35 using System.Security.Permissions;
36
37 namespace MonoCasTests.System {
38
39         [TestFixture]
40         [Category ("CAS")]
41         public class UriFormatExceptionCas {
42
43                 [SetUp]
44                 public void SetUp ()
45                 {
46                         if (!SecurityManager.SecurityEnabled)
47                                 Assert.Ignore ("SecurityManager.SecurityEnabled is OFF");
48                 }
49
50                 [Test]
51                 [ExpectedException (typeof (ArgumentNullException))]
52                 [SecurityPermission (SecurityAction.Deny, SerializationFormatter = true)]
53                 public void DenySerializationFormatter_GetObjectData ()
54                 {
55                         StreamingContext sc = new StreamingContext (StreamingContextStates.All);
56                         UriFormatException ufe = new UriFormatException ();
57                         ufe.GetObjectData (null, sc);
58                 }
59
60                 [Test]
61                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
62                 public void DenyUnrestricted ()
63                 {
64                         // can we call everything without a SecurityException ?
65                         UriFormatException ufe = new UriFormatException ();
66                 }
67
68                 [Test]
69                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
70                 public void LinkDemand_Deny_Unrestricted ()
71                 {
72                         ConstructorInfo ci = typeof (UriFormatException).GetConstructor (new Type[0]);
73                         Assert.IsNotNull (ci, "default .ctor");
74                         Assert.IsNotNull (ci.Invoke (null), "invoke");
75                 }
76
77                 [Test]
78                 [SecurityPermission (SecurityAction.Deny, SerializationFormatter = true)]
79                 [ExpectedException (typeof (SecurityException))]
80                 public void LinkDemand_GetObjectData_Deny_DenySerializationFormatter ()
81                 {
82                         StreamingContext sc = new StreamingContext (StreamingContextStates.All);
83                         UriFormatException ufe = new UriFormatException ();
84                         MethodInfo mi = ufe.GetType ().GetMethod ("GetObjectData");
85                         Assert.IsNotNull (mi, "GetObjectData");
86                         Assert.IsNotNull (mi.Invoke (ufe, new object[2] { null, sc }), "invoke");
87                 }
88
89                 [Test]
90                 [SecurityPermission (SecurityAction.PermitOnly, SerializationFormatter = true)]
91                 [ExpectedException (typeof (TargetInvocationException))]
92                 // note: the inner exception is the ArgumentNullException
93                 public void LinkDemand_GetObjectData_PermitOnly_DenySerializationFormatter ()
94                 {
95                         StreamingContext sc = new StreamingContext (StreamingContextStates.All);
96                         UriFormatException ufe = new UriFormatException ();
97                         MethodInfo mi = ufe.GetType ().GetMethod ("GetObjectData");
98                         Assert.IsNotNull (mi, "GetObjectData");
99                         Assert.IsNotNull (mi.Invoke (ufe, new object[2] { null, sc }), "invoke");
100                 }
101
102                 [Test]
103                 [SecurityPermission (SecurityAction.Deny, SerializationFormatter = true)]
104                 [ExpectedException (typeof (TargetInvocationException))]
105                 // note: the inner exception is the ArgumentNullException
106                 public void LinkDemand_ISerializableGetObjectData_Deny_DenySerializationFormatter ()
107                 {
108                         StreamingContext sc = new StreamingContext (StreamingContextStates.All);
109                         UriFormatException ufe = new UriFormatException ();
110                         MethodInfo mi = ufe.GetType ().GetMethod ("System.Runtime.Serialization.ISerializable.GetObjectData",
111                                 BindingFlags.NonPublic | BindingFlags.Instance);
112                         Assert.IsNotNull (mi, "ISerializable.GetObjectData");
113                         Assert.IsNotNull (mi.Invoke (ufe, new object[2] { null, sc }), "invoke");
114                 }
115         }
116 }