Merge pull request #1909 from esdrubal/reflection
[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                 [Test]
44                 public void DefaultConstructor ()
45                 {
46                         var rc = new RequestContext ();
47
48                         Assert.AreEqual (null, rc.HttpContext, "#A1");
49                         Assert.AreEqual (null, rc.RouteData, "#A2");
50                 }
51                 [Test]
52                 public void Constructor_HttpContextBase_RouteData ()
53                 {
54                         RequestContext rc;
55
56                         AssertExtensions.Throws<ArgumentNullException> (() => {
57                                 rc = new RequestContext (null, new RouteData ());
58                         }, "#A1");
59
60                         var ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
61                         AssertExtensions.Throws<ArgumentNullException> (() => {
62                                 rc = new RequestContext (ctx, null);
63                         }, "#A2");
64                 }
65
66                 [Test]
67                 public void HttpContext ()
68                 {
69                         var ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
70                         var rc = new RequestContext (ctx, new RouteData ());
71
72                         Assert.AreSame (ctx, rc.HttpContext, "#A1");
73                         ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
74                         rc.HttpContext = ctx;
75                         Assert.AreSame (ctx, rc.HttpContext, "#A2");
76
77                         rc.HttpContext = null;
78                         Assert.IsNull (rc.HttpContext, "#A3");
79                 }
80
81                 [Test]
82                 public void RouteData ()
83                 {
84                         var ctx = new HttpContextWrapper (new HttpContext (new HttpRequest ("filename", "http://localhost/filename", String.Empty), new HttpResponse (new StringWriter ())));
85                         var rd = new RouteData ();
86                         var rc = new RequestContext (ctx, rd);
87
88                         Assert.AreSame (rd, rc.RouteData, "#A1");
89                         rd = new RouteData ();
90                         rc.RouteData = rd;
91                         Assert.AreSame (rd, rc.RouteData, "#A2");
92
93                         rc.RouteData = null;
94                         Assert.IsNull (rc.RouteData, "#A3");
95                 }
96         }
97 }