New tests.
[mono.git] / mcs / class / System.Web / Test / standalone-tests / Unhandled_Exception_Global_Asax.cs
1 //
2 // Authors:
3 //   Marek Habersack (mhabersack@novell.com)
4 //
5 // (C) 2010 Novell, Inc http://novell.com/
6 //
7
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 using System;
29 using System.Collections.Generic;
30 using System.Configuration;
31 using System.Configuration.Provider;
32 using System.IO;
33 using System.Web;
34 using System.Web.Hosting;
35
36 using StandAloneRunnerSupport;
37 using StandAloneTests;
38
39 using NUnit.Framework;
40
41 namespace StandAloneTests.Unhandled_Exception_Global_Asax
42 {
43         [TestCase ("Unhandled_Exception_Global_Asax 01", "Unhandled exception not handled in Global.asax, test 01")]
44         public sealed class Unhandled_Exception_Global_Asax_01 : ITestCase
45         {
46                 public string PhysicalPath {
47                         get {
48                                 return Path.Combine (
49                                         Consts.BasePhysicalDir,
50                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_01")
51                                 );
52                         }
53                 }
54                 
55                 public string VirtualPath  {
56                         get { return "/"; }
57                 }
58
59                 public bool SetUp (List <TestRunItem> runItems)
60                 {
61                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
62                         
63                         return true;
64                 }
65
66                 void Default_Aspx (string result, TestRunItem runItem)
67                 {
68                         string originalHtml1 = @"[System.Web.HttpUnhandledException]: Exception of type 'System.Web.HttpUnhandledException' was thrown.";
69                         string originalHtml2 = @"[System.InvalidOperationException]: test";
70                         
71                         Assert.IsTrue (result.IndexOf (originalHtml1) != -1, "#A1");
72                         Assert.IsTrue (result.IndexOf (originalHtml2) != -1, "#A2");
73                 }
74         }
75
76         [TestCase ("Unhandled_Exception_Global_Asax 02", "Parsing exception is not handled in Global.asax, test 02")]
77         public sealed class Unhandled_Exception_Global_Asax_02 : ITestCase
78         {
79                 public string PhysicalPath {
80                         get {
81                                 return Path.Combine (
82                                         Consts.BasePhysicalDir,
83                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_02")
84                                 );
85                         }
86                 }
87                 
88                 public string VirtualPath  {
89                         get { return "/"; }
90                 }
91
92                 public bool SetUp (List <TestRunItem> runItems)
93                 {
94                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
95                         
96                         return true;
97                 }
98
99                 void Default_Aspx (string result, TestRunItem runItem)
100                 {
101                         string originalHtml = @"<p><strong>Parser Error Message: </strong><code>Cannot find type DoesNotExist</code></p><p><strong>Source Error: </strong></p>";
102
103                         Assert.IsTrue (result.IndexOf (originalHtml) != -1, "#A1");
104                 }
105         }
106
107         [TestCase ("Unhandled_Exception_Global_Asax 03", "Unhandled exception handled in Global.asax, test 03")]
108         public sealed class Unhandled_Exception_Global_Asax_03 : ITestCase
109         {
110                 public string PhysicalPath {
111                         get {
112                                 return Path.Combine (
113                                         Consts.BasePhysicalDir,
114                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_03")
115                                 );
116                         }
117                 }
118                 
119                 public string VirtualPath  {
120                         get { return "/"; }
121                 }
122
123                 public bool SetUp (List <TestRunItem> runItems)
124                 {
125                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
126                         
127                         return true;
128                 }
129
130                 void Default_Aspx (string result, TestRunItem runItem)
131                 {
132                         string originalHtml = @"<strong>Application error handled</strong>";
133                         
134                         Helpers.ExtractAndCompareCodeFromHtml (result, originalHtml, "#A1");
135                 }
136         }
137
138         [TestCase ("Unhandled_Exception_Global_Asax 04", "Unhandled exception handled in Global.asax, test 04")]
139         public sealed class Unhandled_Exception_Global_Asax_04 : ITestCase
140         {
141                 public string PhysicalPath {
142                         get {
143                                 return Path.Combine (
144                                         Consts.BasePhysicalDir,
145                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_04")
146                                 );
147                         }
148                 }
149                 
150                 public string VirtualPath  {
151                         get { return "/"; }
152                 }
153
154                 public bool SetUp (List <TestRunItem> runItems)
155                 {
156                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
157                         
158                         return true;
159                 }
160
161                 void Default_Aspx (string result, TestRunItem runItem)
162                 {
163                         string originalHtml = @"<h2>Object moved to <a href=""http://google.com/"">here</a></h2>";
164                         
165                         Assert.IsTrue (result.IndexOf (originalHtml) != -1, "#A1");
166                 }
167         }
168 }
169