New test.
[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
39 namespace MonoTests.System.Web {
40         
41         class StaticPoker : StaticSiteMapProvider
42         {
43                 public void DoAddNode (SiteMapNode node)
44                 {
45                         base.AddNode (node);
46                 }
47
48                 public void DoAddNode (SiteMapNode node, SiteMapNode parentNode)
49                 {
50                         base.AddNode (node, parentNode);
51                 }
52
53                 public void DoRemoveNode (SiteMapNode node)
54                 {
55                         base.RemoveNode (node);
56                 }
57
58
59                 //
60
61                 SiteMapNode root;
62
63                 public override SiteMapNode BuildSiteMap ()
64                 {
65                         if (root != null)
66                                 return root;
67                                 
68                         root = new SiteMapNode (this, "rootKey", "rootUrl");
69
70                         return root;
71                 }
72
73                 protected override SiteMapNode GetRootNodeCore ()
74                 {
75                         return BuildSiteMap ();
76                 }
77         }
78
79         [TestFixture]
80         public class StaticSiteMapProviderTest
81         {
82                 [Test]
83                 [ExpectedException (typeof (ArgumentNullException))]
84                 public void AddNode_null ()
85                 {
86                         StaticPoker poker = new StaticPoker ();
87                         poker.DoAddNode (null);
88                 }
89
90                 [Test]
91                 [Category("NunitWeb")]
92                 public void AddNode ()
93                 {
94                         new WebTest (new HandlerInvoker (AddNode_delegate)).Run ();
95                 }
96
97                 static public void AddNode_delegate ()
98                 {
99                         StaticPoker poker = new StaticPoker();
100
101                         SiteMapNode n = new SiteMapNode (poker, "key", "url");
102
103                         poker.DoAddNode (n);
104                         Assert.AreEqual (1, poker.GetChildNodes (poker.RootNode).Count, "A1");
105
106                         poker.DoRemoveNode (n);
107                         Assert.AreEqual (0, poker.GetChildNodes (poker.RootNode).Count, "A2");
108                 }
109                 
110
111                 [Test]
112                 [ExpectedException (typeof (ArgumentNullException))]
113                 public void AddNode2_nullNode ()
114                 {
115                         StaticPoker poker = new StaticPoker ();
116                         poker.DoAddNode (null, new SiteMapNode (poker, "parentKey", "parentUrl"));
117                 }
118
119                 [Test]
120                 [Category("NunitWeb")]
121                 public void AddNode2_nullParent ()
122                 {
123                         new WebTest (new HandlerInvoker (AddNode2_nullParent_delegate)).Run ();
124                 }
125                 
126                 static public void AddNode2_nullParent_delegate ()
127                 {
128                         StaticPoker poker = new StaticPoker ();
129                         poker.DoAddNode (new SiteMapNode (poker, "childKey", "childUrl"), null);
130                 }
131
132                 [Test]
133                 [Category("NunitWeb")]
134                 public void AddNode2 ()
135                 {
136                         new WebTest (new HandlerInvoker (AddNode2_delegate)).Run ();
137                 }
138
139                 static public void AddNode2_delegate ()
140                 {
141                         StaticPoker poker = new StaticPoker ();
142                         poker.DoAddNode (new SiteMapNode (poker, "childKey", "childUrl"),
143                                          new SiteMapNode (poker, "parentKey", "parentUrl"));
144                 }
145         }
146 }
147
148 #endif