| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- //
- // ContainerControl class testing unit
- //
- // Authors:
- // Sebastien Pouliot <[email protected]>
- //
- // Copyright (C) 2006 Novell, Inc (http://www.novell.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.
- //
- using System;
- using C=System.ComponentModel;
- using System.Security.Permissions;
- using System.Windows.Forms;
- using System.Collections;
- using NUnit.Framework;
- using System.Drawing;
- using System.ComponentModel;
- namespace MonoTests.System.Windows.Forms {
- public class IContainerControlTest : Control, IContainerControl {
- public bool ActivateControl (Control active)
- {
- return true;
- }
- public Control ActiveControl {
- get { return null; }
- set { ; }
- }
- }
- public class FormCustom: Form {
- public bool record;
- public Queue events;
- public FormCustom(string name, bool record, Queue events) {
- base.Name = name;
- this.record = record;
- this.events = events;
- }
- protected override void OnValidating(C.CancelEventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnValidating", this, this.Name));
- base.OnValidating (e);
- }
- protected override void OnValidated(EventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnValidated", this, this.Name));
- base.OnValidated (e);
- }
- protected override void OnGotFocus(EventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnGotFocus", this, this.Name));
- base.OnGotFocus (e);
- }
- }
- public class ContainerControlCustom: ContainerControl {
- public bool record;
- public Queue events;
- public ContainerControlCustom(string name, bool record, Queue events) {
- base.Name = name;
- this.record = record;
- this.events = events;
- }
- protected override void OnValidating(C.CancelEventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnValidating", this, this.Name));
- base.OnValidating (e);
- }
- protected override void OnValidated(EventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnValidated", this, this.Name));
- base.OnValidated (e);
- }
-
- protected override void OnGotFocus(EventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnGotFocus", this, this.Name));
- base.OnGotFocus (e);
- }
- protected override void Select(bool directed, bool forward) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:Select", this, this.Name));
- base.Select (directed, forward);
- }
- }
- public class UserControlCustom: UserControl {
- public bool record;
- public Queue events;
- public UserControlCustom(string name, bool record, Queue events) {
- base.Name = name;
- this.record = record;
- this.events = events;
- }
- protected override void OnValidating(C.CancelEventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnValidating", this, this.Name));
- base.OnValidating (e);
- }
- protected override void OnValidated(EventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnValidated", this, this.Name));
- base.OnValidated (e);
- }
- protected override void OnGotFocus(EventArgs e) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:OnGotFocus", this, this.Name));
- base.OnGotFocus (e);
- }
- protected override void Select(bool directed, bool forward) {
- if (this.record)
- events.Enqueue(String.Format("{0}:{1}:Select", this, this.Name));
- base.Select (directed, forward);
- }
- }
- [TestFixture]
- [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
- public class ContainerControlTest : TestHelper {
- [Test]
- public void RemoveActiveControlTest ()
- {
- ContainerControl cc = new ContainerControl();
- TextBox txt = new TextBox ();
- cc.Controls.Add (txt);
- Assert.IsFalse (cc.ActiveControl == txt, "#01");
- cc.ActiveControl = txt;
- Assert.AreSame (cc.ActiveControl, txt, "#02");
- cc.Controls.Remove (txt);
- Assert.IsNull (cc.ActiveControl, "#03");
- }
- /// <summary>
- /// Test Bug 329718 - Forms: ArgEx: "Cannot activate invisible...", when open color picker twice
- /// </summary>
- [Test]
- public void RemoveActiveControlTest2 ()
- {
- ContainerControl cc = new ContainerControl ();
- TabControl tab = new TabControl ();
- TabPage page = new TabPage ();
- TextBox txt = new TextBox ();
- page.Controls.Add (txt);
- tab.TabPages.Add (page);
- cc.Controls.Add (tab);
- Assert.IsFalse (cc.ActiveControl == txt, "#01");
- cc.ActiveControl = txt;
- Console.WriteLine (cc.ActiveControl);
- Assert.AreSame (cc.ActiveControl, txt, "#02");
- cc.Controls.Remove (tab);
- Console.WriteLine (cc.ActiveControl);
- Assert.IsNull (cc.ActiveControl, "#03");
- }
- [Test]
- public void GetContainerControl ()
- {
- ContainerControl cc = new ContainerControl ();
- Assert.IsTrue (Object.ReferenceEquals (cc, cc.GetContainerControl ()), "ContainerControl.GetContainerControl");
- Button b = new Button ();
- Assert.IsNull (b.GetContainerControl (), "Button.GetContainerControl/without parent");
- b.Parent = cc;
- Assert.IsTrue (Object.ReferenceEquals (cc, b.GetContainerControl ()), "Button.GetContainerControl");
- }
- [Test]
- public void GetContainerControl_WithoutStyle ()
- {
- IContainerControlTest cct = new IContainerControlTest ();
- Assert.IsNull (cct.GetContainerControl (), "IContainerControlTest.GetContainerControl");
- Button b = new Button ();
- b.Parent = cct;
- Assert.IsNull (b.GetContainerControl (), "Button.GetContainerControl/without parent");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void ActiveControlNotChildTest ()
- {
- ContainerControl c = new ContainerControl ();
- c.ActiveControl = new Control ();
- }
- // [Test]
- public void Validation() {
- Queue events = new Queue();
- FormCustom form = new FormCustom("form1", true, events);
- ContainerControlCustom container1 = new ContainerControlCustom("container1", true, events);
- ContainerControlCustom container2 = new ContainerControlCustom("container2", true, events);
- ContainerControlCustom container3 = new ContainerControlCustom("container3", true, events);
- UserControlCustom userctl1 = new UserControlCustom("userctl1", true, events);
- UserControlCustom userctl2 = new UserControlCustom("userctl2", true, events);
- UserControlCustom userctl3 = new UserControlCustom("userctl3", true, events);
- container2.Controls.Add(userctl2);
- container2.Controls.Add(userctl3);
- container1.Controls.Add(userctl1);
- form.Controls.Add(container1);
- form.Controls.Add(container2);
- form.Controls.Add(container3);
- form.Show();
- object s;
- events.Enqueue("START");
- container3.Select();
- events.Enqueue("END");
- events.Enqueue("START");
- container1.Select();
- events.Enqueue("END");
- events.Enqueue("START");
- container2.Select();
- events.Enqueue("END");
- events.Enqueue("START");
- userctl1.Select();
- events.Enqueue("END");
- events.Enqueue("START");
- userctl2.Select();
- events.Enqueue("END");
- events.Enqueue("START");
- userctl2.Select();
- events.Enqueue("END");
- while (events.Count > 0) {
- s = events.Dequeue();
- Console.WriteLine(s.ToString());
- }
- events.Clear();
- form.Close();
- userctl1.Dispose();
- userctl2.Dispose();
- userctl3.Dispose();
- container1.Dispose();
- container1.Dispose();
- form.Dispose();
- }
-
- [Test]
- public void MnemonicCalledWhenCanSelectFalse ()
- {
- MyForm f = new MyForm ();
- f.ShowInTaskbar = false;
-
- MyControl c = new MyControl ();
-
- f.Controls.Add (c);
- f.Show ();
-
- Assert.AreEqual (false, c.CanSelect, "A1");
- f.PublicProcessMnemonic ('b');
-
- Assert.AreEqual (true, c.mnemonic_called, "A2");
- f.Dispose ();
- }
-
- private class MyForm : Form
- {
- public bool PublicProcessMnemonic (char charCode)
- {
- return this.ProcessMnemonic (charCode);
- }
- }
-
- private class MyControl : Control
- {
- public bool mnemonic_called;
-
- public MyControl ()
- {
- SetStyle (ControlStyles.Selectable, false);
- }
-
- protected override bool ProcessMnemonic (char charCode)
- {
- mnemonic_called = true;
- return base.ProcessMnemonic (charCode);
- }
- }
- #if NET_2_0
- [Test]
- [NUnit.Framework.Category ("NotWorking")] // Depends on fonts *AND* DPI, how useless is that? (Values are Vista/96DPI)
- public void AutoScaling ()
- {
- ContainerControl c = new ContainerControl ();
- c.ClientSize = new Size (100, 100);
- Assert.AreEqual (new SizeF (0, 0), c.CurrentAutoScaleDimensions, "A1");
- Assert.AreEqual (new SizeF (0, 0), c.AutoScaleDimensions, "A2");
- Assert.AreEqual (new Size (100, 100), c.ClientSize, "A3");
- c.AutoScaleMode = AutoScaleMode.Dpi;
- Assert.AreEqual (new SizeF (96, 96), c.CurrentAutoScaleDimensions, "A4");
- Assert.AreEqual (new SizeF (96, 96), c.AutoScaleDimensions, "A5");
- Assert.AreEqual (new Size (100, 100), c.ClientSize, "A6");
- c.AutoScaleMode = AutoScaleMode.Font;
- Assert.AreEqual (new SizeF (6, 13), c.CurrentAutoScaleDimensions, "A7");
- Assert.AreEqual (new SizeF (6, 13), c.AutoScaleDimensions, "A8");
- Assert.AreEqual (new Size (100, 100), c.ClientSize, "A9");
- c.Font = new Font ("Arial", 15);
- Assert.AreEqual (new SizeF (11, 23), c.CurrentAutoScaleDimensions, "A10");
- Assert.AreEqual (new SizeF (11, 23), c.AutoScaleDimensions, "A11");
- Assert.AreEqual (new Size (183, 177), c.ClientSize, "A12");
- c.Font = new Font ("Tahoma", 12);
- Assert.AreEqual (new SizeF (9, 19), c.CurrentAutoScaleDimensions, "A13");
- Assert.AreEqual (new SizeF (9, 19), c.AutoScaleDimensions, "A14");
- Assert.AreEqual (new Size (150, 146), c.ClientSize, "A15");
- c.Font = new Font ("Times New Roman", 14);
- Assert.AreEqual (new SizeF (10, 21), c.CurrentAutoScaleDimensions, "A16");
- Assert.AreEqual (new SizeF (10, 21), c.AutoScaleDimensions, "A17");
- Assert.AreEqual (new Size (167, 161), c.ClientSize, "A18");
- }
-
- [Test]
- public void ValidationChildren ()
- {
- string validating = string.Empty;
- string validated = string.Empty;
-
- Form f = new Form ();
- f.ShowInTaskbar = false;
-
- ContainerControl cc = new ContainerControl ();
- f.Controls.Add (cc);
-
- TextBox t = new TextBox ();
- t.Validating += new CancelEventHandler (delegate (Object obj, CancelEventArgs e) { validating += ("t;"); });
- t.Validated += new EventHandler (delegate (Object obj, EventArgs e) { validated += ("t;"); });
- cc.Controls.Add (t);
- TextBox t1 = new TextBox ();
- t1.Validating += new CancelEventHandler (delegate (Object obj, CancelEventArgs e) { validating += ("t1;"); });
- t1.Validated += new EventHandler (delegate (Object obj, EventArgs e) { validated += ("t1;"); });
- t1.TabStop = false;
- cc.Controls.Add (t1);
- TextBox t2 = new TextBox ();
- t2.Validating += new CancelEventHandler (delegate (Object obj, CancelEventArgs e) { validating += ("t2;"); });
- t2.Validated += new EventHandler (delegate (Object obj, EventArgs e) { validated += ("t2;"); });
- t2.Visible = false;
- cc.Controls.Add (t2);
- TextBox t3 = new TextBox ();
- t3.Validating += new CancelEventHandler (delegate (Object obj, CancelEventArgs e) { validating += ("t3;"); });
- t3.Validated += new EventHandler (delegate (Object obj, EventArgs e) { validated += ("t3;"); });
- t3.Enabled = false;
- cc.Controls.Add (t3);
- Panel p = new Panel ();
- cc.Controls.Add (p);
-
- TextBox t4 = new TextBox ();
- t4.Validating += new CancelEventHandler (delegate (Object obj, CancelEventArgs e) { validating += ("t4;"); });
- t4.Validated += new EventHandler (delegate (Object obj, EventArgs e) { validated += ("t4;"); });
- p.Controls.Add (t4);
- Label l = new Label ();
- l.Validating += new CancelEventHandler (delegate (Object obj, CancelEventArgs e) { validating += ("l;"); });
- l.Validated += new EventHandler (delegate (Object obj, EventArgs e) { validated += ("l;"); });
- cc.Controls.Add (l);
-
- f.Show ();
-
- cc.ValidateChildren ();
- Assert.AreEqual ("t;t1;t2;t3;t4;", validating, "A4a");
- Assert.AreEqual ("t;t1;t2;t3;t4;", validated, "A4b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.Enabled);
- Assert.AreEqual ("t;t1;t2;t4;l;", validating, "A5a");
- Assert.AreEqual ("t;t1;t2;t4;l;", validated, "A5b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.ImmediateChildren);
- Assert.AreEqual ("t;t1;t2;t3;l;", validating, "A6a");
- Assert.AreEqual ("t;t1;t2;t3;l;", validated, "A6b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.None);
- Assert.AreEqual ("t;t1;t2;t3;t4;l;", validating, "A7a");
- Assert.AreEqual ("t;t1;t2;t3;t4;l;", validated, "A7b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.Selectable);
- Assert.AreEqual ("t;t1;t2;t3;t4;", validating, "A8a");
- Assert.AreEqual ("t;t1;t2;t3;t4;", validated, "A8b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.TabStop);
- Assert.AreEqual ("t;t2;t3;t4;", validating, "A9a");
- Assert.AreEqual ("t;t2;t3;t4;", validated, "A9b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.Visible);
- Assert.AreEqual ("t;t1;t3;t4;l;", validating, "A10a");
- Assert.AreEqual ("t;t1;t3;t4;l;", validated, "A10b");
- validating = string.Empty; validated = string.Empty;
- cc.ValidateChildren (ValidationConstraints.Enabled | ValidationConstraints.Visible | ValidationConstraints.Selectable);
- Assert.AreEqual ("t;t1;t4;", validating, "A11a");
- Assert.AreEqual ("t;t1;t4;", validated, "A11b");
- validating = string.Empty; validated = string.Empty;
- }
- #endif
- }
- }
|