a6a48011253f31c8a3501d7cc30f37e7512f5737
[mono.git] / mcs / class / System.Web / Test / System.Web / HttpServerUtilityTest.cs
1 //
2 // System.Web.HttpServerUtilityTest.cs 
3 //      - Unit tests for System.Web.HttpServerUtility
4 //
5 // Author:
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System.Text;
31 using System.Web;
32
33 using NUnit.Framework;
34
35 namespace MonoTests.System.Web {
36
37         [TestFixture]
38         public class HttpServerUtilityTest {
39
40                 private HttpApplication _app;
41
42                 [TestFixtureSetUp]
43                 public void FixtureSetUp ()
44                 {
45                         _app = new HttpApplication ();
46                 }
47
48                 public HttpServerUtility Server {
49                         get { return _app.Server; }
50                 }
51
52                 [Test]
53                 public void HtmlEncode_LtGt ()
54                 {
55                         Assert.AreEqual ("&lt;script&gt;", Server.HtmlEncode ("<script>"));
56                 }
57
58                 // Notes:
59                 // * this is to avoid a regression that would cause Mono to 
60                 //   fail item #3 of the XSS vulnerabilities listed at:
61                 //   http://it-project.ru/andir/docs/aspxvuln/aspxvuln.en.xml
62                 //   we didn't fall the first time so let's ensure we never will
63                 // * The author notes that Microsoft has decided not to fix 
64                 //   this issue (hence the NotDotNet category).
65
66                 [Test]
67                 [Category ("NotDotNet")]
68 #if TARGET_JVM
69                 [Ignore ("TD #6954")]
70 #endif
71                 public void HtmlEncode_XSS ()
72                 {
73                         string problem = "\xff1cscript\xff1e";  // unicode looks alike <script>
74                         byte[] utf8data = Encoding.UTF8.GetBytes (problem);
75                         Encoding win1251 = Encoding.GetEncoding ("windows-1251");
76                         byte[] windata = Encoding.Convert (Encoding.UTF8, win1251, utf8data);
77                         // now it's a real problem
78                         Assert.AreEqual ("<script>", Encoding.ASCII.GetString (windata), "<script>");
79
80                         string encoded = Server.HtmlEncode (problem);
81                         Assert.AreEqual ("&#65308;script&#65310;", encoded, "&#65308;script&#65310;");
82                         
83                         utf8data = Encoding.UTF8.GetBytes (encoded);
84                         windata = Encoding.Convert (Encoding.UTF8, win1251, utf8data);
85                         Assert.AreEqual ("&#65308;script&#65310;", Encoding.ASCII.GetString (windata), "ok");
86                 }
87
88                 [Test]
89                 public void UrlPathEncode2()
90                 {
91                         string s = "default.xxx?sdsd=sds";
92                         string s2 = Server.UrlPathEncode(s);
93                         Assert.AreEqual(s, s2, "UrlPathEncode " + s);
94                 }               
95
96         }
97 }