2007-03-22 Adar Wesley <adarw@mainsoft.com>
[mono.git] / mcs / class / System.Web / Test / System.Web / HttpUtilityCas.cs
1 //
2 // HttpUtilityCas.cs - CAS unit tests for System.Web.HttpUtility
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.IO;
33 using System.Security;
34 using System.Security.Permissions;
35 using System.Text;
36 using System.Web;
37
38 namespace MonoCasTests.System.Web {
39
40         [TestFixture]
41         [Category ("CAS")]
42         public class HttpUtilityCas : AspNetHostingMinimal {
43
44                 private StringWriter sw;
45
46                 [TestFixtureSetUp]
47                 public void FixtureSetUp ()
48                 {
49                         sw = new StringWriter ();
50                 }
51
52                 [Test]
53                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
54                 public void StaticMethods_Deny_Unrestricted ()
55                 {
56                         try {
57                                 Assert.IsNull (HttpUtility.HtmlAttributeEncode (null), "HtmlAttributeEncode(string)");
58                         }
59                         catch (NullReferenceException) {
60                                 // ms 1.x
61                         }
62                         try {
63                                 HttpUtility.HtmlAttributeEncode (null, sw);
64                         }
65                         catch (NullReferenceException) {
66                                 // ms 1.x
67                         }
68
69                         Assert.AreEqual (String.Empty, HttpUtility.HtmlDecode (String.Empty), "HtmlDecode(string)");
70                         HttpUtility.HtmlDecode (String.Empty, sw);
71
72                         Assert.AreEqual (String.Empty, HttpUtility.HtmlEncode (String.Empty), "HtmlEncode(string)");
73                         HttpUtility.HtmlEncode (String.Empty, sw);
74
75                         Assert.AreEqual (String.Empty, HttpUtility.UrlDecode (String.Empty), "UrlDecode(string)");
76                         Assert.AreEqual (String.Empty, HttpUtility.UrlDecode (String.Empty, Encoding.ASCII), "UrlDecode(string,Encoding)");
77                         Assert.AreEqual (String.Empty, HttpUtility.UrlDecode (new byte[0], Encoding.ASCII), "UrlDecode(byte[],Encoding)");
78                         Assert.AreEqual (String.Empty, HttpUtility.UrlDecode (new byte[0], 0, 0, Encoding.ASCII), "UrlDecode(byte[],int,int,Encoding)");
79
80                         Assert.AreEqual (0, HttpUtility.UrlDecodeToBytes (String.Empty).Length, "UrlDecodeToBytes(string)");
81                         Assert.AreEqual (0, HttpUtility.UrlDecodeToBytes (String.Empty, Encoding.ASCII).Length, "UrlDecodeToBytes(string,Encoding)");
82                         Assert.AreEqual (0, HttpUtility.UrlDecodeToBytes (new byte[0]).Length, "UrlDecodeToBytes(byte[])");
83                         Assert.AreEqual (0, HttpUtility.UrlDecodeToBytes (new byte[0], 0, 0).Length, "UrlDecodeToBytes(byte[],int,int)");
84
85                         Assert.AreEqual (String.Empty, HttpUtility.UrlEncode (String.Empty), "UrlEncode(string)");
86                         Assert.AreEqual (String.Empty, HttpUtility.UrlEncode (String.Empty, Encoding.ASCII), "UrlEncode(string,Encoding)");
87                         Assert.AreEqual (String.Empty, HttpUtility.UrlEncode (new byte[0]), "UrlEncode(byte[],Encoding)");
88                         Assert.AreEqual (String.Empty, HttpUtility.UrlEncode (new byte[0], 0, 0), "UrlEncode(byte[],int,int,Encoding)");
89
90                         Assert.AreEqual (0, HttpUtility.UrlEncodeToBytes (String.Empty).Length, "UrlEncodeToBytes(string)");
91                         Assert.AreEqual (0, HttpUtility.UrlEncodeToBytes (String.Empty, Encoding.ASCII).Length, "UrlEncodeToBytes(string,Encoding)");
92                         Assert.AreEqual (0, HttpUtility.UrlEncodeToBytes (new byte[0]).Length, "UrlEncodeToBytes(byte[])");
93                         Assert.AreEqual (0, HttpUtility.UrlEncodeToBytes (new byte[0], 0, 0).Length, "UrlEncodeToBytes(byte[],int,int)");
94
95                         Assert.AreEqual (String.Empty, HttpUtility.UrlEncodeUnicode (String.Empty), "UrlEncodeUnicode(string)");
96
97                         Assert.AreEqual (0, HttpUtility.UrlEncodeUnicodeToBytes (String.Empty).Length, "UrlEncodeUnicodeToBytes(string)");
98
99                         Assert.AreEqual (String.Empty, HttpUtility.UrlPathEncode (String.Empty), "UrlPathEncode(string)");
100 #if NET_2_0
101                         try {
102                                 Assert.IsNotNull (HttpUtility.ParseQueryString (String.Empty), "ParseQueryString(string)");
103                         }
104                         catch (NotImplementedException) {
105                                 // mono
106                         }
107                         try {
108                                 Assert.IsNotNull (HttpUtility.ParseQueryString (String.Empty, Encoding.ASCII), "ParseQueryString(string)");
109                         }
110                         catch (NotImplementedException) {
111                                 // mono
112                         }
113 #endif
114                 }
115
116                 // LinkDemand
117
118                 public override Type Type {
119                         get { return typeof (HttpUtility); }
120                 }
121         }
122 }