New test.
[mono.git] / mcs / class / System.Web / Test / System.Web / HttpCachePolicyCas.cs
1 //
2 // HttpCachePolicyCas.cs - CAS unit tests for System.Web.HttpCachePolicyCas
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
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
29 using NUnit.Framework;
30
31 using System;
32 using System.Reflection;
33 using System.Security.Permissions;
34 using System.Web;
35
36 namespace MonoCasTests.System.Web {
37
38         [TestFixture]
39         [Category ("CAS")]
40         public class HttpCachePolicyCas : AspNetHostingMinimal {
41
42                 private HttpResponse response;
43
44                 [TestFixtureSetUp]
45                 public void FixtureSetUp ()
46                 {
47                         response = new HttpResponse (Console.Out);
48                 }
49
50                 private void Validate (HttpContext context, object data, ref HttpValidationStatus validationStatus)
51                 {
52                 }
53
54                 [Test]
55                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
56                 public void Deny_Unrestricted ()
57                 {
58                         HttpCachePolicy cache = response.Cache;
59                         Assert.IsNotNull (cache.VaryByHeaders, "VaryByHeaders");
60                         Assert.IsNotNull (cache.VaryByParams, "VaryByParams");
61                         cache.AddValidationCallback (new HttpCacheValidateHandler (Validate), null);
62                         cache.AppendCacheExtension ("mono");
63                         cache.SetCacheability (HttpCacheability.NoCache);
64                         cache.SetCacheability (HttpCacheability.NoCache, "mono");
65                         cache.SetETag ("etag");
66                         try {
67                                 cache.SetETagFromFileDependencies ();
68                         }
69                         catch (TypeInitializationException) {
70                                 // 1.1 tries to initialize HttpRuntime
71                         }
72                         catch (InvalidOperationException) {
73                                 // expected
74                         }
75                         cache.SetExpires (DateTime.MinValue);
76                         cache.SetLastModified (DateTime.Now);
77                         try {
78                                 cache.SetLastModifiedFromFileDependencies ();
79                         }
80                         catch (InvalidOperationException) {
81                                 // expected
82                         }
83                         catch (NotImplementedException) {
84                                 // mono
85                         }
86                         cache.SetMaxAge (TimeSpan.FromTicks (1000));
87                         try {
88                                 cache.SetNoServerCaching ();
89                         }
90                         catch (NotImplementedException) {
91                                 // mono
92                         }
93                         try {
94                                 cache.SetNoStore ();
95                         }
96                         catch (NotImplementedException) {
97                                 // mono
98                         }
99                         try {
100                                 cache.SetNoTransforms ();
101                         }
102                         catch (NotImplementedException) {
103                                 // mono
104                         }
105                         cache.SetProxyMaxAge (TimeSpan.FromTicks (2000));
106                         cache.SetRevalidation (HttpCacheRevalidation.None);
107                         cache.SetSlidingExpiration (true);
108                         try {
109                                 cache.SetValidUntilExpires (true);
110                         }
111                         catch (NotImplementedException) {
112                                 // mono
113                         }
114                         cache.SetVaryByCustom ("custom");
115                         cache.SetAllowResponseInBrowserHistory (true);
116
117 #if NET_2_0
118                         try {
119                                 cache.SetOmitVaryStar (false);
120                         }
121                         catch (NotImplementedException) {
122                                 // mono
123                         }
124 #endif
125                 }
126
127                 // LinkDemand
128
129                 public override object CreateControl (SecurityAction action, AspNetHostingPermissionLevel level)
130                 {
131                         // no public ctor is available but we know that it's properties don't have any restrictions
132                         MethodInfo mi = this.Type.GetProperty ("VaryByHeaders").GetGetMethod ();
133                         Assert.IsNotNull (mi, "get_VaryByHeaders");
134                         return mi.Invoke (response.Cache, null);
135                 }
136
137                 public override Type Type {
138                         get { return typeof (HttpCachePolicy); }
139                 }
140         }
141 }