| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- // 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.
- //
- // Copyright (c) 2006 Novell, Inc.
- //
- // Authors:
- // Jackson Harper [email protected]
- using System;
- using System.Data;
- using System.Collections;
- using System.Windows.Forms;
- using NUnit.Framework;
- namespace MonoTests.System.Windows.Forms {
- [TestFixture]
- public class BindingTest {
- [SetUp]
- protected virtual void SetUp ()
- {
- }
- [TearDown]
- protected virtual void TearDown ()
- {
- }
- [Test]
- public void CtorTest ()
- {
- string prop = "PROPERTY NAME";
- object data_source = new object ();
- string data_member = "DATA MEMBER";
- Binding b = new Binding (prop, data_source, data_member);
- Assert.IsNull (b.BindingManagerBase, "ctor1");
- Console.WriteLine ("MEMBER INFO: " + b.BindingMemberInfo);
- Assert.IsNotNull (b.BindingMemberInfo, "ctor2");
- Assert.IsNull (b.Control, "ctor3");
- Assert.IsFalse (b.IsBinding, "ctor4");
- Assert.AreSame (b.PropertyName, prop, "ctor5");
- Assert.AreSame (b.DataSource, data_source, "ctor6");
- }
- [Test]
- public void CtorNullTest ()
- {
- Binding b = new Binding (null, null, null);
- Assert.IsNull (b.PropertyName, "ctornull1");
- Assert.IsNull (b.DataSource, "ctornull2");
- }
- [Test]
- /* create control and set binding context */
- public void BindingContextChangedTest ()
- {
- Control c = new Control ();
- // Test BindingContextChanged Event
- c.BindingContextChanged += new EventHandler (Event_Handler1);
- BindingContext bcG1 = new BindingContext ();
- eventcount = 0;
- c.BindingContext = bcG1;
- Assert.AreEqual (1, eventcount, "A1");
- }
- [Test]
- [Category ("NotWorking")]
- /* create control and show control */
- public void BindingContextChangedTest2 ()
- {
- Form f = new Form ();
- f.ShowInTaskbar = false;
- Control c = new Control ();
- f.Controls.Add (c);
- c.BindingContextChanged += new EventHandler (Event_Handler1);
- eventcount = 0;
- f.Show ();
- #if NET_2_0
- Assert.AreEqual (1, eventcount, "A1");
- #else
- Assert.AreEqual (2, eventcount, "A1");
- #endif
- f.Dispose();
- }
- [Test]
- /* create control, set binding context, and show control */
- public void BindingContextChangedTest3 ()
- {
- Form f = new Form ();
- f.ShowInTaskbar = false;
- Control c = new Control ();
- f.Controls.Add (c);
- c.BindingContextChanged += new EventHandler (Event_Handler1);
- eventcount = 0;
- c.BindingContext = new BindingContext ();;
- f.Show ();
- Assert.AreEqual (1, eventcount, "A1");
- f.Dispose ();
- }
- int eventcount;
- public void Event_Handler1 (object sender, EventArgs e)
- {
- Console.WriteLine (Environment.StackTrace);
- eventcount++;
- }
- [Test]
- public void DataBindingCountTest1 ()
- {
- Control c = new Control ();
- Assert.AreEqual (0, c.DataBindings.Count, "1");
- c.DataBindings.Add (new Binding ("Text", c, "Name"));
- Assert.AreEqual (1, c.DataBindings.Count, "2");
- Binding b = c.DataBindings[0];
- Assert.AreEqual (c, b.Control, "3");
- Assert.AreEqual (c, b.DataSource, "4");
- Assert.AreEqual ("Text", b.PropertyName, "5");
- Assert.AreEqual ("Name", b.BindingMemberInfo.BindingField, "6");
- }
- [Test]
- public void DataBindingCountTest2 ()
- {
- Control c = new Control ();
- Control c2 = new Control ();
- Assert.AreEqual (0, c.DataBindings.Count, "1");
- c.DataBindings.Add (new Binding ("Text", c2, "Name"));
- Assert.AreEqual (1, c.DataBindings.Count, "2");
- Assert.AreEqual (0, c2.DataBindings.Count, "3");
- Binding b = c.DataBindings[0];
- Assert.AreEqual (c, b.Control, "4");
- Assert.AreEqual (c2, b.DataSource, "5");
- Assert.AreEqual ("Text", b.PropertyName, "6");
- Assert.AreEqual ("Name", b.BindingMemberInfo.BindingField, "7");
- }
- }
- }
|