| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- //
- // Tests for System.Web.UI.WebControls.HierarchicalDataBoundControl.cs
- //
- // Author:
- // Igor Zelmanovich ([email protected])
- //
- //
- // Copyright (C) 2006 Mainsoft, Inc (http://www.mainsoft.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- #if NET_2_0
- using NUnit.Framework;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.Adapters;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.Adapters;
- using System.IO;
- using System.Drawing;
- using System.Threading;
- using MyWebControl = System.Web.UI.WebControls;
- using System.Collections;
- using MonoTests.SystemWeb.Framework;
- using MonoTests.stand_alone.WebHarness;
- using System.Text.RegularExpressions;
- using System.Reflection;
- namespace MonoTests.System.Web.UI.WebControls
- {
- [Serializable]
- [TestFixture]
- public class HierarchicalDataBoundControlTest
- {
- class MyHierarchicalDataBoundControl : HierarchicalDataBoundControl
- {
- private StringBuilder dataBindTrace;
- public string DataBindTrace {
- get { return dataBindTrace.ToString (); }
- }
- public override void DataBind () {
- dataBindTrace = new StringBuilder ();
- dataBindTrace.Append("[Start DataBind]");
- base.DataBind ();
- dataBindTrace.Append ("[End DataBind]");
- }
- protected override void PerformSelect () {
- dataBindTrace.Append ("[Start PerformSelect]");
- base.PerformSelect ();
- dataBindTrace.Append ("[End PerformSelect]");
- }
- protected override void PerformDataBinding () {
- dataBindTrace.Append ("[Start PerformDataBinding]");
- base.PerformDataBinding ();
- dataBindTrace.Append ("[End PerformDataBinding]");
- }
- public HierarchicalDataSourceView GetData (string path) {
- dataBindTrace.Append ("[Start GetData]");
- return base.GetData (path);
- }
- protected override void OnDataBinding (EventArgs e) {
- dataBindTrace.Append ("[Start OnDataBinding]");
- base.OnDataBinding (e);
- dataBindTrace.Append ("[End OnDataBinding]");
- }
- protected override void OnDataBound (EventArgs e) {
- dataBindTrace.Append ("[Start OnDataBound]");
- base.OnDataBound (e);
- dataBindTrace.Append ("[End OnDataBound]");
- }
- internal void DoValidateDataSource (object dataSource)
- {
- ValidateDataSource (dataSource);
- }
- internal ControlAdapter controlAdapter;
- protected override global::System.Web.UI.Adapters.ControlAdapter ResolveAdapter ()
- {
- return controlAdapter;
- }
- }
-
- [Test]
- public void HierarchicalDataBoundControl_DataBindFlow () {
- Page p = new Page ();
- MyHierarchicalDataBoundControl hc = new MyHierarchicalDataBoundControl ();
- p.Controls.Add (hc);
- hc.DataBind ();
- string expected = "[Start DataBind][Start PerformSelect][Start OnDataBinding][End OnDataBinding][Start PerformDataBinding][End PerformDataBinding][Start OnDataBound][End OnDataBound][End PerformSelect][End DataBind]";
- Assert.AreEqual (expected, hc.DataBindTrace, "DataBindFlow");
- }
- [Test]
- public void HierarchicalDataBoundControl_ValidateDataSource_Null ()
- {
- MyHierarchicalDataBoundControl hc = new MyHierarchicalDataBoundControl ();
- hc.DoValidateDataSource (null);
- }
- class MyHierarchicalDataBoundControlAdapter : HierarchicalDataBoundControlAdapter
- {
- internal bool perform_data_binding_called;
- protected override void PerformDataBinding ()
- {
- perform_data_binding_called = true;
- }
- }
-
- class MyControlAdapter : ControlAdapter
- {
- }
- [Test]
- public void PerformDataBinding_UsesAdapter ()
- {
- MyHierarchicalDataBoundControl c = new MyHierarchicalDataBoundControl ();
- MyHierarchicalDataBoundControlAdapter a = new MyHierarchicalDataBoundControlAdapter();;
- c.controlAdapter = a;
- c.DataBind ();
- Assert.IsTrue (a.perform_data_binding_called, "PerformDataBinding_UsesAdapter");
- }
- [Test]
- public void PerformDataBinding_WorksWithControlAdapter ()
- {
- MyHierarchicalDataBoundControl c = new MyHierarchicalDataBoundControl ();
- MyControlAdapter a = new MyControlAdapter();
- c.controlAdapter = a;
- c.DataBind ();
- }
- public class TestHierarchy : IHierarchicalEnumerable
- {
- List<TestNode> list;
-
- public TestHierarchy (List<TestNode> source)
- {
- list = source;
- }
- public IHierarchyData GetHierarchyData (object enumeratedItem)
- {
- return enumeratedItem as TestNode;
- }
- public IEnumerator GetEnumerator ()
- {
- return list.GetEnumerator ();
- }
- }
- public class TestNode : IHierarchyData
- {
- string name;
- TestNode parent;
- List<TestNode> childNodes;
- public TestNode (string name, TestNode parent, List<TestNode> children)
- {
- this.name = name;
- this.parent = parent;
- this.childNodes = children;
- }
- public string Name
- {
- get { return name; }
- }
- public IHierarchicalEnumerable GetChildren ()
- {
- return new TestHierarchy (childNodes);
- }
- public IHierarchyData GetParent ()
- {
- return parent;
- }
- public bool HasChildren
- {
- get
- {
- if (childNodes == null)
- return false;
- return childNodes.Count > 0;
- }
- }
- public object Item
- {
- get { return this; }
- }
- public string Path
- {
- get
- {
- TestNode node = this;
- string s = name;
- while ((node = (TestNode)node.GetParent ()) != null)
- s = node.Name + ": " + s;
- return s.Trim ();
- }
- }
- public string Type
- {
- get { return this.ToString (); }
- }
- }
-
- [Test]
- public void TestIHierarchicalEnumerableDataSource ()
- {
- List<TestNode> list = new List<TestNode> ();
- list.Add (new TestNode ("test", null, null));
- TestHierarchy hierarchy = new TestHierarchy (list);
- MyHierarchicalDataBoundControl c = new MyHierarchicalDataBoundControl ();
- c.DataSource = hierarchy;
- c.DataBind ();
- HierarchicalDataSourceView view = c.GetData ("");
- Assert.IsNotNull (view);
- }
- }
- }
- #endif
|