| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678 |
- //
- // Tests for System.Web.UI.WebControls.CheckBoxList.cs
- //
- // Author:
- // Jackson Harper ([email protected])
- //
- //
- // Copyright (C) 2005 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 NUnit.Framework;
- using System;
- using System.IO;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Drawing;
- using System.Collections;
- using MonoTests.SystemWeb.Framework;
- using MonoTests.stand_alone.WebHarness;
- using System.Collections.Specialized;
- namespace MonoTests.System.Web.UI.WebControls {
- public class CheckBoxListPoker : CheckBoxList {
- public Style CreateStyle ()
- {
- return CreateControlStyle ();
- }
- public Control FindControlPoke (string name, int offset)
- {
- return FindControl (name, offset);
- }
- public string Render ()
- {
- HtmlTextWriter writer = new HtmlTextWriter (new StringWriter ());
- base.Render (writer);
- return writer.InnerWriter.ToString ();
- }
-
- public new bool HasFooter
- {
- get
- {
- return base.HasFooter;
- }
- }
- public new bool HasHeader
- {
- get
- {
- return base.HasHeader;
- }
- }
- public new bool HasSeparators
- {
- get
- {
- return base.HasSeparators;
- }
- }
- public new int RepeatedItemCount
- {
- get
- {
- return base.RepeatedItemCount;
- }
- }
- public new void RaisePostDataChangedEvent ()
- {
- base.RaisePostDataChangedEvent ();
- }
- protected override Style GetItemStyle (ListItemType itemType, int repeatIndex)
- {
- Style s = new Style();
- s.BackColor = Color.Red;
- s.BorderStyle = BorderStyle.Solid;
- WebTest.CurrentTest.UserData = "GetItemStyle";
- return s;
- }
- public Style DoGetItemStyle (ListItemType itemType, int repeatIndex)
- {
- return base.GetItemStyle (itemType, repeatIndex);
- }
- public new string RenderItem (ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo)
- {
- HtmlTextWriter writer = new HtmlTextWriter (new StringWriter ());
- base.RenderItem(itemType,repeatIndex,repeatInfo,writer);
- return writer.InnerWriter.ToString ();
- }
- }
- [TestFixture]
- public class CheckBoxListTest
- {
- [TestFixtureSetUp]
- public void SetUp ()
- {
- Type t = GetType ();
- WebTest.CopyResource (t, "CheckBoxList_Bug377703_1.aspx", "CheckBoxList_Bug377703_1.aspx");
- WebTest.CopyResource (t, "CheckBoxList_Bug377703_2.aspx", "CheckBoxList_Bug377703_2.aspx");
- WebTest.CopyResource (t, "CheckBoxList_Bug578770.aspx", "CheckBoxList_Bug578770.aspx");
- WebTest.CopyResource (t, "CheckBoxList_Bug600415.aspx", "CheckBoxList_Bug600415.aspx");
- }
-
- [Test]
- public void Defaults ()
- {
- CheckBoxListPoker c = new CheckBoxListPoker ();
- Assert.AreEqual (c.CellPadding, -1, "A1");
- Assert.AreEqual (c.CellSpacing, -1, "A2");
- Assert.AreEqual (c.RepeatColumns, 0, "A3");
- Assert.AreEqual (c.RepeatDirection,
- RepeatDirection.Vertical, "A4");
- Assert.AreEqual (c.RepeatLayout,
- RepeatLayout.Table, "A5");
- Assert.AreEqual (c.TextAlign, TextAlign.Right, "A6");
- Assert.AreEqual (false, c.HasFooter, "HasFooter");
- Assert.AreEqual (false, c.HasHeader, "HasHeader");
- Assert.AreEqual (false, c.HasSeparators, "HasSeparators");
- Assert.AreEqual (0, c.RepeatedItemCount, "RepeatedItemCount");
- Assert.AreEqual (null, c.DoGetItemStyle (ListItemType.Item, 0), "GetItemStyle");
- }
- [Test]
- public void CheckBoxList_Bug377703_1 ()
- {
- WebTest t = new WebTest ("CheckBoxList_Bug377703_1.aspx");
- t.Invoker = PageInvoker.CreateOnInit (CheckBoxList_Bug377703_1_OnInit);
- string origHtmlFirst = "<table id=\"cbxl1\">\r\n\t<tr>\r\n\t\t<td><input id=\"cbxl1_0\" type=\"checkbox\" name=\"cbxl1$0\" value=\"x\" /><label for=\"cbxl1_0\">x</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"cbxl1_1\" type=\"checkbox\" name=\"cbxl1$1\" value=\"y\" /><label for=\"cbxl1_1\">y</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"cbxl1_2\" type=\"checkbox\" name=\"cbxl1$2\" value=\"z\" /><label for=\"cbxl1_2\">z</label></td>\r\n\t</tr>\r\n</table>";
- string origHtmlSecond = "<table id=\"cbxl1\">\r\n\t<tr>\r\n\t\t<td><input id=\"cbxl1_0\" type=\"checkbox\" name=\"cbxl1$0\" checked=\"checked\" value=\"x\" /><label for=\"cbxl1_0\">x</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"cbxl1_1\" type=\"checkbox\" name=\"cbxl1$1\" value=\"y\" /><label for=\"cbxl1_1\">y</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"cbxl1_2\" type=\"checkbox\" name=\"cbxl1$2\" value=\"z\" /><label for=\"cbxl1_2\">z</label></td>\r\n\t</tr>\r\n</table>";
- string html = t.Run ();
- string listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlFirst, listHtml, "#A1");
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("cbxl1$0");
- fr.Controls ["cbxl1$0"].Value = "on";
- fr.Controls.Add ("ctl01");
- fr.Controls ["ctl01"].Value = "Click me twice to have the first Item become empty";
- t.Request = fr;
- html = t.Run ();
- fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("cbxl1$0");
- fr.Controls ["cbxl1$0"].Value = "on";
- fr.Controls.Add ("ctl01");
- fr.Controls ["ctl01"].Value = "Click me twice to have the first Item become empty";
- t.Request = fr;
- html = t.Run ();
- listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlSecond, listHtml, "#A2");
- }
- public static void CheckBoxList_Bug377703_1_OnInit (Page p)
- {
- CheckBoxList cbxl1 = p.FindControl ("cbxl1") as CheckBoxList;
-
- cbxl1.DataSource = new[] {
- new { ID = "x", Text = "X" },
- new { ID = "y", Text = "Y" },
- new { ID = "z", Text = "Z" },
- };
- cbxl1.DataValueField = "ID";
- cbxl1.DataTextField = "ID";
- cbxl1.DataBind();
- }
- [Test]
- public void CheckBoxList_Bug377703_2 ()
- {
- WebTest t = new WebTest ("CheckBoxList_Bug377703_2.aspx");
- t.Invoker = PageInvoker.CreateOnInit (CheckBoxList_Bug377703_2_OnInit);
- string origHtmlFirst = "<table id=\"cbxl2\">\r\n\t<tr>\r\n\t\t<td><input id=\"cbxl2_0\" type=\"checkbox\" name=\"cbxl2$0\" value=\"x\" /><label for=\"cbxl2_0\">x</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"cbxl2_1\" type=\"checkbox\" name=\"cbxl2$1\" value=\"y\" /><label for=\"cbxl2_1\">y</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"cbxl2_2\" type=\"checkbox\" name=\"cbxl2$2\" value=\"z\" /><label for=\"cbxl2_2\">z</label></td>\r\n\t</tr>\r\n</table>";
- string origHtmlSecond = "<table id=\"cbxl2\" class=\"aspNetDisabled\">\r\n\t<tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"cbxl2_0\" type=\"checkbox\" name=\"cbxl2$0\" checked=\"checked\" disabled=\"disabled\" value=\"x\" /><label for=\"cbxl2_0\">x</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"cbxl2_1\" type=\"checkbox\" name=\"cbxl2$1\" disabled=\"disabled\" value=\"y\" /><label for=\"cbxl2_1\">y</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"cbxl2_2\" type=\"checkbox\" name=\"cbxl2$2\" checked=\"checked\" disabled=\"disabled\" value=\"z\" /><label for=\"cbxl2_2\">z</label></span></td>\r\n\t</tr>\r\n</table>";
- string origHtmlThird = "<table id=\"cbxl2\" class=\"aspNetDisabled\">\r\n\t<tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"cbxl2_0\" type=\"checkbox\" name=\"cbxl2$0\" checked=\"checked\" disabled=\"disabled\" value=\"x\" /><label for=\"cbxl2_0\">x</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"cbxl2_1\" type=\"checkbox\" name=\"cbxl2$1\" disabled=\"disabled\" value=\"y\" /><label for=\"cbxl2_1\">y</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"cbxl2_2\" type=\"checkbox\" name=\"cbxl2$2\" checked=\"checked\" disabled=\"disabled\" value=\"z\" /><label for=\"cbxl2_2\">z</label></span></td>\r\n\t</tr>\r\n</table>";
- string html = t.Run ();
- string listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlFirst, listHtml, "#A1");
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("cbxl2$0");
- fr.Controls ["cbxl2$0"].Value = "on";
- fr.Controls.Add ("cbxl2$2");
- fr.Controls ["cbxl2$2"].Value = "on";
-
- fr.Controls.Add ("ctl01");
- fr.Controls ["ctl01"].Value = "Click to toggle enable status above";
- t.Request = fr;
- html = t.Run ();
- listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlSecond, listHtml, "#A2");
-
- fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("ctl02");
- fr.Controls ["ctl02"].Value = "Click to refresh page";
- t.Request = fr;
- html = t.Run ();
- listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlThird, listHtml, "#A3");
- }
- public static void CheckBoxList_Bug377703_2_OnInit (Page p)
- {
- CheckBoxList cbxl2 = p.FindControl ("cbxl2") as CheckBoxList;
-
- cbxl2.DataSource = new[] {
- new { ID = "x", Text = "X" },
- new { ID = "y", Text = "Y" },
- new { ID = "z", Text = "Z" },
- };
- cbxl2.DataValueField = "ID";
- cbxl2.DataTextField = "ID";
- cbxl2.DataBind();
- }
- [Test]
- public void CheckBoxList_Bug578770 ()
- {
- WebTest t = new WebTest ("CheckBoxList_Bug578770.aspx");
- t.Invoker = PageInvoker.CreateOnInit (CheckBoxList_Bug578770_OnInit);
- string origHtml = "<table id=\"test\">\r\n\t<tr>\r\n\t\t<td><span class=\"aspNetDisabled\"><input id=\"test_0\" type=\"checkbox\" name=\"test$0\" disabled=\"disabled\" value=\"Sun\" /><label for=\"test_0\">Sun</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span><input id=\"test_1\" type=\"checkbox\" name=\"test$1\" value=\"Mon\" /><label for=\"test_1\">Mon</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span><input id=\"test_2\" type=\"checkbox\" name=\"test$2\" value=\"Tue\" /><label for=\"test_2\">Tue</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span><input id=\"test_3\" type=\"checkbox\" name=\"test$3\" value=\"Wed\" /><label for=\"test_3\">Wed</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span><input id=\"test_4\" type=\"checkbox\" name=\"test$4\" value=\"Thu\" /><label for=\"test_4\">Thu</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span><input id=\"test_5\" type=\"checkbox\" name=\"test$5\" value=\"Fri\" /><label for=\"test_5\">Fri</label></span></td>\r\n\t</tr><tr>\r\n\t\t<td><span><input id=\"test_6\" type=\"checkbox\" name=\"test$6\" value=\"Sat\" /><label for=\"test_6\">Sat</label></span></td>\r\n\t</tr>\r\n</table>";
- string html = t.Run ();
- string listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtml, listHtml, "#A1");
- }
- public static void CheckBoxList_Bug578770_OnInit (Page p)
- {
- CheckBoxList test = p.FindControl ("test") as CheckBoxList;
- string[] weekDays = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
- test.DataSource = weekDays;
- test.DataBind();
- test.Items[0].Enabled = false;
- }
- [Test]
- public void CheckBoxList_Bug600415 ()
- {
- WebTest t = new WebTest ("CheckBoxList_Bug600415.aspx");
- string origHtmlFirst = "<table id=\"checkBoxList\">\r\n\t<tr>\r\n\t\t<td><input id=\"checkBoxList_0\" type=\"checkbox\" name=\"checkBoxList$0\" checked=\"checked\" value=\"Item 1\" /><label for=\"checkBoxList_0\">Item 1</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_1\" type=\"checkbox\" name=\"checkBoxList$1\" value=\"Item 2\" /><label for=\"checkBoxList_1\">Item 2</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_2\" type=\"checkbox\" name=\"checkBoxList$2\" checked=\"checked\" value=\"Item 3\" /><label for=\"checkBoxList_2\">Item 3</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_3\" type=\"checkbox\" name=\"checkBoxList$3\" value=\"Item 4\" /><label for=\"checkBoxList_3\">Item 4</label></td>\r\n\t</tr>\r\n</table>";
- string origHtmlSecond = "<table id=\"checkBoxList\">\r\n\t<tr>\r\n\t\t<td><input id=\"checkBoxList_0\" type=\"checkbox\" name=\"checkBoxList$0\" value=\"Item 1\" /><label for=\"checkBoxList_0\">Item 1</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_1\" type=\"checkbox\" name=\"checkBoxList$1\" value=\"Item 2\" /><label for=\"checkBoxList_1\">Item 2</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_2\" type=\"checkbox\" name=\"checkBoxList$2\" value=\"Item 3\" /><label for=\"checkBoxList_2\">Item 3</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_3\" type=\"checkbox\" name=\"checkBoxList$3\" value=\"Item 4\" /><label for=\"checkBoxList_3\">Item 4</label></td>\r\n\t</tr>\r\n</table>";
- string origHtmlThird = "<table id=\"checkBoxList\">\r\n\t<tr>\r\n\t\t<td><input id=\"checkBoxList_0\" type=\"checkbox\" name=\"checkBoxList$0\" checked=\"checked\" value=\"Item 1\" /><label for=\"checkBoxList_0\">Item 1</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_1\" type=\"checkbox\" name=\"checkBoxList$1\" checked=\"checked\" value=\"Item 2\" /><label for=\"checkBoxList_1\">Item 2</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_2\" type=\"checkbox\" name=\"checkBoxList$2\" checked=\"checked\" value=\"Item 3\" /><label for=\"checkBoxList_2\">Item 3</label></td>\r\n\t</tr><tr>\r\n\t\t<td><input id=\"checkBoxList_3\" type=\"checkbox\" name=\"checkBoxList$3\" checked=\"checked\" value=\"Item 4\" /><label for=\"checkBoxList_3\">Item 4</label></td>\r\n\t</tr>\r\n</table>";
- string html = t.Run ();
- string listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlFirst, listHtml, "#A1");
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("cmdClick");
- fr.Controls ["cmdClick"].Value = "Ok";
- t.Request = fr;
- html = t.Run ();
-
- listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlSecond, listHtml, "#A2");
- fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("checkBoxList$0");
- fr.Controls ["checkBoxList$0"].Value = "on";
- fr.Controls.Add ("checkBoxList$1");
- fr.Controls ["checkBoxList$1"].Value = "on";
- fr.Controls.Add ("checkBoxList$2");
- fr.Controls ["checkBoxList$2"].Value = "on";
- fr.Controls.Add ("checkBoxList$3");
- fr.Controls ["checkBoxList$3"].Value = "on";
- t.Request = fr;
- html = t.Run ();
- listHtml = HtmlDiff.GetControlFromPageHtml (html);
- HtmlDiff.AssertAreEqual (origHtmlThird, listHtml, "#A3");
- }
-
- [Test]
- public void RaisePostDataChangedEvent ()
- {
- CheckBoxListPoker c = new CheckBoxListPoker ();
- c.SelectedIndexChanged += new EventHandler (c_SelectedIndexChanged);
- Assert.AreEqual (false, eventSelectedIndexChanged, "RaisePostDataChangedEvent#1");
- c.RaisePostDataChangedEvent ();
- Assert.AreEqual (true, eventSelectedIndexChanged, "RaisePostDataChangedEvent#2");
- }
- bool eventSelectedIndexChanged;
- void c_SelectedIndexChanged (object sender, EventArgs e)
- {
- eventSelectedIndexChanged = true;
- }
- [Test]
- [Category("NunitWeb")]
- public void GetItemStyle ()
- {
- WebTest t = new WebTest (PageInvoker.CreateOnLoad (GetItemStyle_Load));
- string html = t.Run ();
- string ctrl = HtmlDiff.GetControlFromPageHtml (html);
- if (ctrl == string.Empty)
- Assert.Fail ("CheckBoxList not created fail");
- Assert.AreEqual ("GetItemStyle", (string) t.UserData, "GetItemStyle not done");
- if ( ctrl.IndexOf("<td style=\"background-color:Red;border-style:Solid;\">") == -1)
- Assert.Fail ("CheckBoxList style not rendered");
- }
- public static void GetItemStyle_Load (Page p)
- {
- CheckBoxListPoker c = new CheckBoxListPoker ();
- ListItem l1 = new ListItem ("item1", "value1");
- ListItem l2 = new ListItem ("item2", "value2");
- c.Items.Add (l1);
- c.Items.Add (l2);
- p.Form.Controls.Add(new LiteralControl(HtmlDiff.BEGIN_TAG));
- p.Form.Controls.Add (c);
- p.Form.Controls.Add(new LiteralControl(HtmlDiff.END_TAG));
- }
- [Test]
- public void RenderItem ()
- {
- string origHtml1 = "<input id=\"0\" type=\"checkbox\" name=\"0\" value=\"value1\" /><label for=\"0\">item1</label>";
- string origHtml2 = "<input id=\"1\" type=\"checkbox\" name=\"1\" value=\"value2\" /><label for=\"1\">item2</label>";
- CheckBoxListPoker c = new CheckBoxListPoker ();
- ListItem l1 = new ListItem ("item1", "value1");
- ListItem l2 = new ListItem ("item2", "value2");
- c.Items.Add (l1);
- c.Items.Add (l2);
- string html = c.RenderItem (ListItemType.Item, 0, null);
- HtmlDiff.AssertAreEqual (origHtml1, html, "RenderItem#1");
- html = c.RenderItem (ListItemType.Item, 1, null);
- HtmlDiff.AssertAreEqual (origHtml2, html, "RenderItem#2");
- }
- [Test]
- public void RepeatedItemCount ()
- {
- CheckBoxListPoker c = new CheckBoxListPoker ();
- ListItem l1 = new ListItem ("item1", "value1");
- ListItem l2 = new ListItem ("item2", "value2");
- Assert.AreEqual (0, c.RepeatedItemCount, "RepeatedItemCount#1");
- c.Items.Add (l1);
- c.Items.Add (l2);
- Assert.AreEqual (2, c.RepeatedItemCount, "RepeatedItemCount#2");
- }
- [Test]
- public void CleanProperties ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.CellPadding = Int32.MaxValue;
- Assert.AreEqual (c.CellPadding, Int32.MaxValue, "A1");
- c.CellSpacing = Int32.MaxValue;
- Assert.AreEqual (c.CellSpacing, Int32.MaxValue, "A2");
- c.RepeatColumns = Int32.MaxValue;
- Assert.AreEqual (c.RepeatColumns, Int32.MaxValue, "A3");
- foreach (RepeatDirection d in
- Enum.GetValues (typeof (RepeatDirection))) {
- c.RepeatDirection = d;
- Assert.AreEqual (c.RepeatDirection, d, "A4-" + d);
- }
- foreach (RepeatLayout l in
- Enum.GetValues (typeof (RepeatLayout))) {
- c.RepeatLayout = l;
- Assert.AreEqual (c.RepeatLayout, l, "A5-" + l);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CellPaddingTooLow ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.CellPadding = -2;
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CellSpacingTooLow ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.CellSpacing = -2;
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void RepeatColumsTooLow ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.RepeatColumns = -1;
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void RepeatDirection_Invalid ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.RepeatDirection = (RepeatDirection) Int32.MaxValue;
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void RepeatLayout_Invalid ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.RepeatLayout = (RepeatLayout) Int32.MaxValue;
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void TextAlign_Invalid ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.TextAlign = (TextAlign) Int32.MaxValue;
- }
- [Test]
- public void ChildCheckBoxControl ()
- {
- CheckBoxList c = new CheckBoxList ();
- Assert.AreEqual (c.Controls.Count, 1, "A1");
- Assert.AreEqual (c.Controls [0].GetType (), typeof (CheckBox), "A2");
- }
- [Test]
- public void CreateStyle ()
- {
- CheckBoxListPoker c = new CheckBoxListPoker ();
- Assert.AreEqual (c.CreateStyle ().GetType (), typeof (TableStyle), "A1");
- }
- [Test]
- public void RepeatInfoProperties ()
- {
- IRepeatInfoUser ri = new CheckBoxList ();
- Assert.IsFalse (ri.HasFooter, "A1");
- Assert.IsFalse (ri.HasHeader, "A2");
- Assert.IsFalse (ri.HasSeparators, "A3");
- Assert.AreEqual (ri.RepeatedItemCount, 0, "A4");
- }
- [Test]
- public void RepeatInfoCount ()
- {
- CheckBoxList c = new CheckBoxList ();
- IRepeatInfoUser ri = (IRepeatInfoUser) c;
- Assert.AreEqual (ri.RepeatedItemCount, 0, "A1");
- c.Items.Add ("one");
- c.Items.Add ("two");
- c.Items.Add ("three");
- Assert.AreEqual (ri.RepeatedItemCount, 3, "A2");
- }
- [Test]
- public void RepeatInfoStyle ()
- {
- IRepeatInfoUser ri = new CheckBoxList ();
- foreach (ListItemType t in Enum.GetValues (typeof (ListItemType))) {
- Assert.AreEqual (ri.GetItemStyle (t, 0), null, "A1-" + t);
- Assert.AreEqual (ri.GetItemStyle (t, 1), null, "A2-" + t);
- Assert.AreEqual (ri.GetItemStyle (t, 2), null, "A3-" + t);
- Assert.AreEqual (ri.GetItemStyle (t, 3), null, "A4-" + t);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void RepeatInfoRenderOutOfRange ()
- {
- StringWriter sw = new StringWriter ();
- HtmlTextWriter tw = new HtmlTextWriter (sw);
- IRepeatInfoUser ri = new CheckBoxList ();
- ri.RenderItem (ListItemType.Item, -1, new RepeatInfo (), tw);
- }
- [Test]
- public void RepeatInfoRenderItem ()
- {
- string origHtml = "<input id=\"0\" type=\"checkbox\" name=\"0\" value=\"one\" /><label for=\"0\">one</label>";
- StringWriter sw = new StringWriter ();
- HtmlTextWriter tw = new HtmlTextWriter (sw);
- CheckBoxList c = new CheckBoxList ();
- IRepeatInfoUser ri = (IRepeatInfoUser) c;
- RepeatInfo r = new RepeatInfo ();
- c.Items.Add ("one");
- c.Items.Add ("two");
- ri.RenderItem (ListItemType.Item, 0, r, tw);
- string html = sw.ToString ();
- Assert.AreEqual (origHtml, html, "A1");
- }
- [Test]
- public void FindControl ()
- {
- CheckBoxListPoker p = new CheckBoxListPoker ();
- p.ID = "id";
- p.Items.Add ("one");
- p.Items.Add ("two");
- p.Items.Add ("three");
- // Everything seems to return this.
- Assert.AreEqual (p.FindControlPoke (String.Empty, 0), p, "A1");
- Assert.AreEqual (p.FindControlPoke ("id", 0), p, "A2");
- Assert.AreEqual (p.FindControlPoke ("id_0", 0), p, "A3");
- Assert.AreEqual (p.FindControlPoke ("id_1", 0), p, "A4");
- Assert.AreEqual (p.FindControlPoke ("id_2", 0), p, "A5");
- Assert.AreEqual (p.FindControlPoke ("id_3", 0), p, "A6");
- Assert.AreEqual (p.FindControlPoke ("0", 0), p, "A7");
- Assert.AreEqual (p.FindControlPoke (String.Empty, 10), p, "A1");
- Assert.AreEqual (p.FindControlPoke ("id", 10), p, "A2");
- Assert.AreEqual (p.FindControlPoke ("id_0", 10), p, "A3");
- Assert.AreEqual (p.FindControlPoke ("id_1", 10), p, "A4");
- Assert.AreEqual (p.FindControlPoke ("id_2", 10), p, "A5");
- Assert.AreEqual (p.FindControlPoke ("id_3", 10), p, "A6");
- Assert.AreEqual (p.FindControlPoke ("0", 10), p, "A7");
- }
- private void Render (CheckBoxList list, string expected, string test)
- {
- StringWriter sw = new StringWriter ();
- HtmlTextWriter tw = new CleanHtmlTextWriter (sw);
- sw.NewLine = "\n";
- list.RenderControl (tw);
- HtmlDiff.AssertAreEqual (expected, sw.ToString (), test);
- }
- [Test]
- public void RenderEmpty ()
- {
- CheckBoxList c = new CheckBoxList ();
- Render (c, "", "A1");
- c.CellPadding = 1;
- Render (c, "", "A2");
- c = new CheckBoxList ();
- c.CellPadding = 1;
- Render (c, "", "A3");
- c = new CheckBoxList ();
- c.TextAlign = TextAlign.Left;
- Render (c, "", "A4");
- }
- [Test]
- [Category("NotDotNet")] // MS's implementation throws NRE's from these
- public void Render ()
- {
- string origHtml1 = "<table>\n\t<tr>\n\t\t<td><input id=\"0\" name=\"0\" type=\"checkbox\" value=\"foo\"/><label for=\"0\">foo</label></td>\n\t</tr>\n</table>";
- string origHtml2 = "<table>\n\t<tr>\n\t\t<td><input id=\"0\" name=\"0\" type=\"checkbox\" value=\"foo\"/><label for=\"0\">foo</label></td>\n\t</tr>\n</table>";
- CheckBoxList c;
- c = new CheckBoxList ();
- c.Items.Add ("foo");
- Render (c, origHtml1, "A5");
- c = new CheckBoxList ();
- c.Items.Add ("foo");
- Render (c, origHtml2, "A6");
- }
- // bug 51648
- [Test]
- [Category("NotDotNet")] // MS's implementation throws NRE's from these
- public void TestTabIndex ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.TabIndex = 5;
- c.Items.Add ("Item1");
- string exp = @"<table>
- <tr>
- <td><input id=""0"" name=""0"" tabindex=""5"" type=""checkbox"" value=""Item1""/><label for=""0"">Item1</label></td>
- </tr>
- </table>";
- Render (c, exp, "B1");
- }
- // bug 48802
- [Test]
- [Category("NotDotNet")] // MS's implementation throws NRE's from these
- public void TestDisabled ()
- {
- CheckBoxList c = new CheckBoxList ();
- c.Enabled = false;
- c.Items.Add ("Item1");
- string exp = @"<table class=""aspNetDisabled"">
- <tr>
- <td><span class=""aspNetDisabled""><input disabled=""disabled"" id=""0"" name=""0"" type=""checkbox"" value=""Item1""/><label for=""0"">Item1</label></span></td>
- </tr>
- </table>";
- Render (c, exp, "C1");
- }
- class TestCheckBoxList : CheckBoxList
- {
- public void CallVerifyMultiSelect()
- {
- base.VerifyMultiSelect();
- }
- }
- [Test]
- public void VerifyMultiSelectTest()
- {
- TestCheckBoxList list = new TestCheckBoxList();
- list.CallVerifyMultiSelect();
- }
- [TestFixtureTearDown]
- public void teardown ()
- {
- WebTest.Unload ();
- }
- }
- }
|