fixed tests
[mono.git] / mcs / class / System.Web / Test / System.Web / StaticSiteMapProviderTest.cs
1 //
2 // System.Web.StaticSiteMapProviderTest.cs - Unit tests for System.Web.StaticSiteMapProvider
3 //
4 // Author:
5 //      Chris Toshok <toshok@ximian.com>
6 //
7 // Copyright (C) 2006 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 #if NET_2_0
30
31 using System;
32 using System.Text;
33 using System.Web;
34 using System.Collections.Specialized;
35 using NUnit.Framework;
36 using System.Diagnostics;
37 using MonoTests.SystemWeb.Framework;
38 using System.Web.UI;
39
40 namespace MonoTests.System.Web {
41         
42         class StaticPoker : StaticSiteMapProvider
43         {
44                 public void DoAddNode (SiteMapNode node)
45                 {
46                         base.AddNode (node);
47                 }
48
49                 public void DoAddNode (SiteMapNode node, SiteMapNode parentNode)
50                 {
51                         base.AddNode (node, parentNode);
52                 }
53
54                 public void DoRemoveNode (SiteMapNode node)
55                 {
56                         base.RemoveNode (node);
57                 }
58
59
60                 //
61
62                 SiteMapNode root;
63
64                 public override SiteMapNode BuildSiteMap ()
65                 {
66                         if (root != null)
67                                 return root;
68                                 
69                         root = new SiteMapNode (this, "rootKey", "rootUrl");
70
71                         return root;
72                 }
73
74                 protected override SiteMapNode GetRootNodeCore ()
75                 {
76                         return BuildSiteMap ();
77                 }
78         }
79
80         [TestFixture]
81         public class StaticSiteMapProviderTest
82         {
83                 [Test]
84                 [ExpectedException (typeof (ArgumentNullException))]
85                 public void AddNode_null ()
86                 {
87                         StaticPoker poker = new StaticPoker ();
88                         poker.DoAddNode (null);
89                 }
90
91                 [Test]
92                 [Category("NunitWeb")]
93                 public void AddNode ()
94                 {
95                         new WebTest (new HandlerInvoker (AddNode_delegate)).Run ();
96                 }
97
98                 static public void AddNode_delegate ()
99                 {
100                         StaticPoker poker = new StaticPoker();
101
102                         SiteMapNode n = new SiteMapNode (poker, "key", "url");
103
104                         poker.DoAddNode (n,poker.RootNode);
105                         Assert.AreEqual (1, poker.GetChildNodes (poker.RootNode).Count, "A1");
106
107                         poker.DoRemoveNode(n);
108                         Assert.AreEqual (0, poker.GetChildNodes (poker.RootNode).Count, "A2");
109                 }
110                 
111
112                 [Test]
113                 [Category ("NunitWeb")]
114                 public void AddNode_duplicate_url () {
115                         new WebTest (new HandlerInvoker (AddNode_delegate2)).Run ();
116                 }
117
118                 static public void AddNode_delegate2 () {
119                         StaticPoker poker = new StaticPoker ();
120
121                         SiteMapNode n1 = new SiteMapNode (poker, "key1", "");
122                         SiteMapNode n2 = new SiteMapNode (poker, "key2", "");
123
124                         poker.DoAddNode (n1, poker.RootNode);
125                         poker.DoAddNode (n2, poker.RootNode);
126                         Assert.AreEqual (2, poker.GetChildNodes (poker.RootNode).Count, "A1");
127                 }
128
129                 [Test]
130                 [ExpectedException (typeof (ArgumentNullException))]
131                 public void AddNode2_nullNode ()
132                 {
133                         StaticPoker poker = new StaticPoker ();
134                         poker.DoAddNode (null, new SiteMapNode (poker, "parentKey", "parentUrl"));
135                 }
136
137                 [Test]
138                 [Category("NunitWeb")]
139                 public void AddNode2_nullParent ()
140                 {
141                         new WebTest (new HandlerInvoker (AddNode2_nullParent_delegate)).Run ();
142                 }
143                 
144                 static public void AddNode2_nullParent_delegate ()
145                 {
146                         StaticPoker poker = new StaticPoker ();
147                         poker.DoAddNode (new SiteMapNode (poker, "childKey", "childUrl"), null);
148                 }
149
150                 [Test]
151                 [Category("NunitWeb")]
152                 public void AddNode2 ()
153                 {
154                         new WebTest (new HandlerInvoker (AddNode2_delegate)).Run ();
155                 }
156
157                 static public void AddNode2_delegate ()
158                 {
159                         StaticPoker poker = new StaticPoker ();
160                         poker.DoAddNode (new SiteMapNode (poker, "childKey", "childUrl"),
161                                          new SiteMapNode (poker, "parentKey", "parentUrl"));
162                 }
163
164                 [Test]
165                 [Category ("NunitWeb")]
166                 [Category("NotWorking")]
167                 public void IsAccessibleFrom1 ()
168                 {
169                         new WebTest (PageInvoker.CreateOnLoad (IsAccessibleFrom1_delegate)).Run ();
170                 }
171
172                 static public void IsAccessibleFrom1_delegate (Page page)
173                 {
174                         StaticPoker p = new StaticPoker ();
175                         SiteMapNode n = new SiteMapNode (p, "childKey", "http://childUrl/");
176                         n.Roles = null;
177                         bool b = p.IsAccessibleToUser (HttpContext.Current, n);
178                         Assert.IsTrue (b, "#1");
179                 }
180
181                 [TestFixtureTearDown]
182                 public void TearDown ()
183                 {
184                         WebTest.Unload ();
185                 }
186         }
187 }
188
189 #endif