[SRE] Improved token fixups processing.
[mono.git] / mcs / class / System.Web.Routing / Test / System.Web.Routing / RequestContext.cs
1 //
2 // RequestContext.cs
3 //
4 // Authors:
5 //      Marek Habersack <mhabersack@novell.com>
6 //
7 // Copyright (C) 2010 Novell Inc. http://novell.com
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 using System;
31 using System.IO;
32 using System.Text;
33 using System.Web;
34 using System.Web.Routing;
35
36 using NUnit.Framework;
37
38 namespace MonoTests.System.Web.Routing
39 {
40         [TestFixture]
41         public class RequestContextTest
42         {
43 #if NET_4_0
44                 [Test]
45                 public void DefaultConstructor ()
46                 {
47                         var rc = new RequestContext ();
48
49                         Assert.AreEqual (null, rc.HttpContext, "#A1");
50                         Assert.AreEqual (null, rc.RouteData, "#A2");
51                 }
52 #endif
53                 [Test]
54                 public void Constructor_HttpContextBase_RouteData ()
55                 {
56                         RequestContext rc;
57
58                         AssertExtensions.Throws<ArgumentNullException> (() => {
59                                 rc = new RequestContext (null, new RouteData ());
60                         }, "#A1");
61
62                         var ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
63                         AssertExtensions.Throws<ArgumentNullException> (() => {
64                                 rc = new RequestContext (ctx, null);
65                         }, "#A2");
66                 }
67
68                 [Test]
69                 public void HttpContext ()
70                 {
71                         var ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
72                         var rc = new RequestContext (ctx, new RouteData ());
73
74                         Assert.AreSame (ctx, rc.HttpContext, "#A1");
75 #if NET_4_0
76                         ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
77                         rc.HttpContext = ctx;
78                         Assert.AreSame (ctx, rc.HttpContext, "#A2");
79
80                         rc.HttpContext = null;
81                         Assert.IsNull (rc.HttpContext, "#A3");
82 #endif
83                 }
84
85                 [Test]
86                 public void RouteData ()
87                 {
88                         var ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
89                         var rd = new RouteData ();
90                         var rc = new RequestContext (ctx, rd);
91
92                         Assert.AreSame (rd, rc.RouteData, "#A1");
93 #if NET_4_0
94                         rd = new RouteData ();
95                         rc.RouteData = rd;
96                         Assert.AreSame (rd, rc.RouteData, "#A2");
97
98                         rc.RouteData = null;
99                         Assert.IsNull (rc.RouteData, "#A3");
100 #endif
101                 }
102         }
103 }