merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / class / System.Web / Test / System.Web.UI / StateBagCas.cs
1 //
2 // StateBagCas.cs - CAS unit tests for System.Web.UI.StateBag
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.Collections;
33 using System.Security.Permissions;
34 using System.Web;
35 using System.Web.UI;
36
37 namespace MonoCasTests.System.Web.UI {
38
39         [TestFixture]
40         [Category ("CAS")]
41         public class StateBagCas : AspNetHostingMinimal {
42
43                 [Test]
44                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
45                 public void Deny_Unrestricted ()
46                 {
47                         StateBag bag = new StateBag (true);
48                         Assert.IsNotNull (bag.Add ("key", "value"), "Add");
49                         Assert.AreEqual (1, bag.Count, "Count");
50                         Assert.IsNotNull (bag.GetEnumerator (), "GetEnumerator");
51                         bag.SetItemDirty ("key", true);
52                         Assert.IsTrue (bag.IsItemDirty ("key"), "IsItemDirty");
53                         bag.Remove ("key");
54
55                         bag.Clear ();
56                         bag["key"] = "value";
57                         Assert.IsNotNull (bag["key"], "this[string]");
58                         Assert.IsNotNull (bag.Keys, "Keys");
59                         Assert.IsNotNull (bag.Values, "Values");
60 #if NET_2_0
61                         bag.SetDirty (true);
62 #endif
63                 }
64
65                 [Test]
66                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
67                 public void IStateManager_Deny_Unrestricted ()
68                 {
69                         IStateManager sm = new StateBag ();
70                         Assert.IsFalse (sm.IsTrackingViewState, "IsTrackingViewState");
71                         object state = sm.SaveViewState ();
72                         sm.LoadViewState (state);
73                         sm.TrackViewState ();
74                 }
75
76                 [Test]
77                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
78                 public void IDictionary_Deny_Unrestricted ()
79                 {
80                         IDictionary d = new StateBag ();
81                         d.Add ("key", "value");
82                         Assert.IsTrue (d.Contains ("key"), "Contains");
83                         Assert.AreEqual (1, d.Count, "Count");
84                         d.Remove ("key");
85                         d["key"] = "value";
86                         Assert.AreEqual ("value", d["key"], "this[string]");
87                         d.Clear ();
88                         Assert.IsFalse (d.IsFixedSize, "IsFixedSize");
89                         Assert.IsFalse (d.IsReadOnly, "IsReadOnly");
90
91                         ICollection c = (d as ICollection);
92                         Assert.IsFalse (c.IsSynchronized, "IsSynchronized");
93                         Assert.IsNotNull (c.SyncRoot, "SyncRoot");
94                 }
95
96                 // LinkDemand
97
98                 public override Type Type {
99                         get { return typeof (StateBag); }
100                 }
101         }
102 }