2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / Test / System.IO / FileLoadExceptionCas.cs
blob1a75444508a60d985d56eb72ab72ec6328a82b5f
1 //
2 // FileLoadExceptionCas.cs - CAS unit tests for System.IO.FileLoadException
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.
29 using NUnit.Framework;
31 using System;
32 using System.IO;
33 using System.Security;
34 using System.Security.Permissions;
36 namespace MonoCasTests.System.IO {
38 [TestFixture]
39 [Category ("CAS")]
40 public class FileLoadExceptionCas {
42 [SetUp]
43 public void SetUp ()
45 if (!SecurityManager.SecurityEnabled)
46 Assert.Ignore ("SecurityManager.SecurityEnabled is OFF");
50 [Test]
51 public void NoRestriction ()
53 FileLoadException fle = new FileLoadException ("message", "filename",
54 new FileLoadException ("inner message", "inner filename"));
56 Assert.AreEqual ("message", fle.Message, "Message");
57 Assert.AreEqual ("filename", fle.FileName, "FileName");
58 Assert.IsNull (fle.FusionLog, "FusionLog");
59 Assert.IsNotNull (fle.ToString (), "ToString");
62 [Test]
63 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
64 [ExpectedException (typeof (SecurityException))]
65 public void FullRestriction ()
67 FileLoadException fle = new FileLoadException ("message", "filename",
68 new FileLoadException ("inner message", "inner filename"));
70 Assert.AreEqual ("message", fle.Message, "Message");
71 Assert.AreEqual ("filename", fle.FileName, "FileName");
72 Assert.IsNull (fle.FusionLog, "FusionLog");
73 // ToString doesn't work in this case and strangely throws a FileLoadException
74 Assert.IsNotNull (fle.ToString (), "ToString");
77 [Test]
78 [SecurityPermission (SecurityAction.PermitOnly, ControlEvidence = true, ControlPolicy = true)]
79 public void GetFusionLog_Pass ()
81 FileLoadException fle = new FileLoadException ("message", "filename");
82 Assert.AreEqual ("message", fle.Message, "Message");
83 Assert.AreEqual ("filename", fle.FileName, "FileName");
84 Assert.IsNull (fle.FusionLog, "FusionLog");
85 // note: ToString doesn't work in this case
88 [Test]
89 [SecurityPermission (SecurityAction.Deny, ControlEvidence = true)]
90 [ExpectedException (typeof (SecurityException))]
91 public void GetFusionLog_Fail_ControlEvidence ()
93 FileLoadException fle = new FileLoadException ();
94 Assert.IsNull (fle.FusionLog, "FusionLog");
97 [Test]
98 [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
99 [ExpectedException (typeof (SecurityException))]
100 public void GetFusionLog_Fail_ControlPolicy ()
102 FileLoadException fle = new FileLoadException ();
103 Assert.IsNull (fle.FusionLog, "FusionLog");
104 // we don't have to throw the exception to have FusionLog
105 // informations restricted (even if there could be no
106 // data in this state).
110 [Test]
111 public void Throw_NoRestriction ()
113 try {
114 throw new FileLoadException ("message", "filename",
115 new FileLoadException ("inner message", "inner filename"));
117 catch (FileLoadException fle) {
118 Assert.AreEqual ("message", fle.Message, "Message");
119 Assert.AreEqual ("filename", fle.FileName, "FileName");
120 Assert.IsNull (fle.FusionLog, "FusionLog");
121 Assert.IsNotNull (fle.ToString (), "ToString");
125 [Test]
126 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
127 [ExpectedException (typeof (SecurityException))]
128 public void Throw_FullRestriction ()
130 try {
131 throw new FileLoadException ("message", "filename",
132 new FileLoadException ("inner message", "inner filename"));
134 catch (FileLoadException fle) {
135 Assert.AreEqual ("message", fle.Message, "Message");
136 Assert.AreEqual ("filename", fle.FileName, "FileName");
137 // both FusionLog and ToString doesn't work in this case
138 // but strangely we get a FileLoadException
139 Assert.IsNull (fle.FusionLog, "FusionLog");
140 Assert.IsNotNull (fle.ToString (), "ToString");
144 [Test]
145 [SecurityPermission (SecurityAction.Deny, ControlEvidence = true)]
146 [ExpectedException (typeof (SecurityException))]
147 public void Throw_GetFusionLog_Fail_ControlEvidence ()
149 try {
150 throw new FileLoadException ("message", "filename",
151 new FileLoadException ("inner message", "inner filename"));
153 catch (FileLoadException fle) {
154 Assert.IsNull (fle.FusionLog, "FusionLog");
158 [Test]
159 [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
160 [ExpectedException (typeof (SecurityException))]
161 public void Throw_GetFusionLog_Fail_ControlPolicy ()
163 try {
164 throw new FileLoadException ("message", "filename",
165 new FileLoadException ("inner message", "inner filename"));
167 catch (FileLoadException fle) {
168 Assert.IsNull (fle.FusionLog, "FusionLog");