* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web / Test / System.Web.UI.WebControls / BaseDataBoundControlTest.cs
1 //
2 // Tests for System.Web.UI.WebControls.BaseDataBoundControl.cs 
3 //
4 // Author:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7
8 //
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using NUnit.Framework;
33 using System;
34 using System.IO;
35 using System.Globalization;
36 using System.Web;
37 using System.Web.UI;
38 using System.Web.UI.WebControls;
39
40 namespace MonoTests.System.Web.UI.WebControls
41 {
42         [TestFixture]   
43         public class BaseDataBoundControlTest { 
44                 class Poker : BaseDataBoundControl {
45                         public Poker () {
46                                 TrackViewState ();
47                         }
48
49                         public object SaveState () {
50                                 return SaveViewState ();
51                         }
52
53                         public void LoadState (object state) {
54                                 LoadViewState (state);
55                         }
56
57                         protected override void PerformSelect () 
58                         {
59                                 Console.WriteLine ("PerformSelect\n{0}", Environment.StackTrace);
60                         }
61
62                         protected override void ValidateDataSource (object dataSource)
63                         {
64                                 Console.WriteLine ("PerformSelect\n{0}", Environment.StackTrace);
65                         }
66
67                         public bool GetIsBoundUsingDataSourceID ()
68                         {
69                                 return IsBoundUsingDataSourceID;
70                         }
71
72                         public bool GetInitialized ()
73                         {
74                                 return Initialized;
75                         }
76                 }
77                 
78                 [Test]
79                 public void Defaults ()
80                 {
81                         Poker p = new Poker ();
82
83                         Assert.IsNull (p.DataSource, "A1");
84                         Assert.AreEqual ("", p.DataSourceID, "A2");
85                         Assert.IsFalse (p.GetIsBoundUsingDataSourceID(), "A3");
86                         Assert.IsFalse (p.GetInitialized(), "A4");
87                 }
88
89                 [Test]
90                 public void ViewState ()
91                 {
92                         Poker p = new Poker ();
93                         Poker copy = new Poker ();
94
95                         p.DataSourceID = "hi";
96                         object state = p.SaveState ();
97                         copy.LoadState (state);
98
99                         Assert.AreEqual ("hi", copy.DataSourceID, "A1");
100                 }
101         }
102 }
103 #endif