[resgen] Implement conditional resources (#if/#ifdef)
[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 #if NET_4_0
69                         string originalHtml1 = @"[System.Web.HttpUnhandledException]: Exception of type &#39;System.Web.HttpUnhandledException&#39; was thrown.";
70 #else
71                         string originalHtml1 = @"[System.Web.HttpUnhandledException]: Exception of type 'System.Web.HttpUnhandledException' was thrown.";
72 #endif
73                         string originalHtml2 = @"[System.InvalidOperationException]: test";
74                         
75                         Assert.IsTrue (result.IndexOf (originalHtml1) != -1, "#A1");
76                         Assert.IsTrue (result.IndexOf (originalHtml2) != -1, "#A2");
77                 }
78         }
79
80         [TestCase ("Unhandled_Exception_Global_Asax 02", "Parsing exception is not handled in Global.asax, test 02")]
81         public sealed class Unhandled_Exception_Global_Asax_02 : ITestCase
82         {
83                 public string PhysicalPath {
84                         get {
85                                 return Path.Combine (
86                                         Consts.BasePhysicalDir,
87                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_02")
88                                 );
89                         }
90                 }
91                 
92                 public string VirtualPath  {
93                         get { return "/"; }
94                 }
95
96                 public bool SetUp (List <TestRunItem> runItems)
97                 {
98                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
99                         
100                         return true;
101                 }
102
103                 void Default_Aspx (string result, TestRunItem runItem)
104                 {
105                         string originalHtml = @"<p><strong>Parser Error Message: </strong><code>Cannot find type DoesNotExist</code></p><p><strong>Source Error: </strong></p>";
106
107                         Assert.IsTrue (result.IndexOf (originalHtml) != -1, "#A1");
108                 }
109         }
110
111         [TestCase ("Unhandled_Exception_Global_Asax 03", "Unhandled exception handled in Global.asax, test 03")]
112         public sealed class Unhandled_Exception_Global_Asax_03 : ITestCase
113         {
114                 public string PhysicalPath {
115                         get {
116                                 return Path.Combine (
117                                         Consts.BasePhysicalDir,
118                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_03")
119                                 );
120                         }
121                 }
122                 
123                 public string VirtualPath  {
124                         get { return "/"; }
125                 }
126
127                 public bool SetUp (List <TestRunItem> runItems)
128                 {
129                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
130                         
131                         return true;
132                 }
133
134                 void Default_Aspx (string result, TestRunItem runItem)
135                 {
136                         string originalHtml = @"<strong>Application error handled</strong>";
137                         
138                         Helpers.ExtractAndCompareCodeFromHtml (result, originalHtml, "#A1");
139                 }
140         }
141
142         [TestCase ("Unhandled_Exception_Global_Asax 04", "Unhandled exception handled in Global.asax, test 04")]
143         public sealed class Unhandled_Exception_Global_Asax_04 : ITestCase
144         {
145                 public string PhysicalPath {
146                         get {
147                                 return Path.Combine (
148                                         Consts.BasePhysicalDir,
149                                         Path.Combine ("Unhandled_Exception_Global_Asax", "test_04")
150                                 );
151                         }
152                 }
153                 
154                 public string VirtualPath  {
155                         get { return "/"; }
156                 }
157
158                 public bool SetUp (List <TestRunItem> runItems)
159                 {
160                         runItems.Add (new TestRunItem ("/default.aspx", Default_Aspx));
161                         
162                         return true;
163                 }
164
165                 void Default_Aspx (string result, TestRunItem runItem)
166                 {
167                         string originalHtml = @"<h2>Object moved to <a href=""http://google.com/"">here</a></h2>";
168                         
169                         Assert.IsTrue (result.IndexOf (originalHtml) != -1, "#A1");
170                 }
171         }
172 }
173