[eglib] Prefer <langinfo.h> to <localcharset.h>
[mono.git] / mcs / class / System.Web / Test / standalone-tests / OutputCacheProvider.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 #if NET_4_0
29 using System;
30 using System.Collections.Generic;
31 using System.Configuration;
32 using System.Configuration.Provider;
33 using System.IO;
34 using System.Web;
35 using System.Web.Hosting;
36
37 using StandAloneRunnerSupport;
38 using StandAloneTests;
39
40 using NUnit.Framework;
41
42 namespace StandAloneTests.OutputCacheProvider
43 {
44         [TestCase ("OutputCacheProvider 01", "OutputCacheProvider - custom provider test")]
45         public sealed class OutputCacheProvider_01 : ITestCase
46         {
47                 public string PhysicalPath {
48                         get {
49                                 return Path.Combine (
50                                         Consts.BasePhysicalDir,
51                                         Path.Combine ("OutputCacheProvider", "OutputCacheProviderTest_01")
52                                 );
53                         }
54                 }
55                 
56                 public string VirtualPath  {
57                         get { return "/"; }
58                 }
59
60                 public bool SetUp (List <TestRunItem> runItems)
61                 {
62                         runItems.Add (new TestRunItem ("/Default.aspx", Default_Aspx));
63                         
64                         return true;
65                 }
66
67                 void Default_Aspx (string result, TestRunItem runItem)
68                 {
69                         string originalHtml = @"<pre id=""output"">Default provider name: TestInMemoryProvider
70 Null context: TestInMemoryProvider
71 Default context: TestInMemoryProvider
72 </pre>";
73                         
74                         Helpers.ExtractAndCompareCodeFromHtml (result, originalHtml, "#A1");
75                 }
76         }
77
78         [TestCase ("OutputCacheProvider 02", "OutputCacheProvider - missing provider test")]
79         public sealed class OutputCacheProvider_02 : ITestCase
80         {
81                 public string PhysicalPath {
82                         get {
83                                 return Path.Combine (
84                                         Consts.BasePhysicalDir,
85                                         Path.Combine ("OutputCacheProvider", "OutputCacheProviderTest_02")
86                                 );
87                         }
88                 }
89                 
90                 public string VirtualPath  {
91                         get { return "/"; }
92                 }
93
94                 public bool SetUp (List <TestRunItem> runItems)
95                 {
96                         runItems.Add (new TestRunItem ("/Default.aspx", Default_Aspx));
97                         
98                         return true;
99                 }
100
101                 void Default_Aspx (string result, TestRunItem runItem)
102                 {
103                         Assert.IsTrue (Helpers.HasException (result, typeof (ConfigurationErrorsException)), "#A1");
104                 }
105         }
106
107         [TestCase ("OutputCacheProvider 03", "OutputCacheProvider - per request provider test")]
108         public sealed class OutputCacheProvider_03 : ITestCase
109         {
110                 public string PhysicalPath {
111                         get {
112                                 return Path.Combine (
113                                         Consts.BasePhysicalDir,
114                                         Path.Combine ("OutputCacheProvider", "OutputCacheProviderTest_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                         runItems.Add (new TestRunItem ("/Default.aspx?ocp=InMemory", Default_InMemory_Aspx));
127                         runItems.Add (new TestRunItem ("/Default.aspx?ocp=AnotherInMemory", Default_AnotherInMemory_Aspx));
128                         runItems.Add (new TestRunItem ("/Default.aspx?ocp=invalid", Default_Invalid_Aspx));
129                         
130                         return true;
131                 }
132
133                 void Default_Aspx (string result, TestRunItem runItem)
134                 {
135                         string originalHtml = @"<pre id=""output"">Default provider name: AspNetInternalProvider
136 Default context: AspNetInternalProvider
137 </pre>";
138                         
139                         Helpers.ExtractAndCompareCodeFromHtml (result, originalHtml, "#A1");
140                 }
141
142                 void Default_InMemory_Aspx (string result, TestRunItem runItem)
143                 {
144                         string originalHtml = @"<pre id=""output"">Default provider name: AspNetInternalProvider
145 Default context: TestInMemoryProvider
146 </pre>";
147                         
148                         Helpers.ExtractAndCompareCodeFromHtml (result, originalHtml, "#A1");
149                 }
150
151                 void Default_AnotherInMemory_Aspx (string result, TestRunItem runItem)
152                 {
153                         string originalHtml = @"<pre id=""output"">Default provider name: AspNetInternalProvider
154 Default context: TestAnotherInMemoryProvider
155 </pre>";
156                         
157                         Helpers.ExtractAndCompareCodeFromHtml (result, originalHtml, "#A1");
158                 }
159
160                 void Default_Invalid_Aspx (string result, TestRunItem runItem)
161                 {
162                         Assert.IsTrue (Helpers.HasException (result, typeof (ProviderException)), "#A1");
163                 }
164         }
165 }
166 #endif