| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- //
- // TableTest.cs
- // - Unit tests for System.Web.UI.WebControls.Table
- //
- // Author:
- // Sebastien Pouliot <[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 System;
- using System.IO;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using NUnit.Framework;
- namespace MonoTests.System.Web.UI.WebControls {
- public class TestTable : Table {
- public string Tag {
- get { return base.TagName; }
- }
- public StateBag StateBag {
- get { return base.ViewState; }
- }
- public string Render ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- base.Render (writer);
- return writer.InnerWriter.ToString ();
- }
- public Style GetStyle ()
- {
- return base.CreateControlStyle ();
- }
- }
- [TestFixture]
- public class TableTest {
- private const string imageUrl = "http://www.mono-project.com/stylesheets/images.wiki.png";
- private HtmlTextWriter GetWriter ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- return new HtmlTextWriter (sw);
- }
- [Test]
- public void DefaultProperties ()
- {
- TestTable t = new TestTable ();
- Assert.AreEqual (0, t.Attributes.Count, "Attributes.Count");
- Assert.AreEqual (0, t.StateBag.Count, "ViewState.Count");
- Assert.AreEqual (String.Empty, t.BackImageUrl, "BackImageUrl");
- Assert.AreEqual (String.Empty, t.Caption, "Caption");
- Assert.AreEqual (TableCaptionAlign.NotSet, t.CaptionAlign, "CaptionAlign");
- Assert.AreEqual (-1, t.CellPadding, "CellPadding");
- Assert.AreEqual (-1, t.CellSpacing, "CellSpacing");
- Assert.AreEqual (GridLines.None, t.GridLines, "GridLines");
- Assert.AreEqual (HorizontalAlign.NotSet, t.HorizontalAlign, "HorizontalAlign");
- Assert.AreEqual (0, t.Rows.Count, "Rows.Count");
- Assert.AreEqual ("table", t.Tag, "TagName");
- Assert.AreEqual (0, t.Attributes.Count, "Attributes.Count-2");
- Assert.AreEqual (0, t.StateBag.Count, "ViewState.Count-2");
- }
- [Test]
- public void NullProperties ()
- {
- TestTable t = new TestTable ();
- t.BackImageUrl = String.Empty; // doesn't accept null, see specific test
- Assert.AreEqual (String.Empty, t.BackImageUrl, "BackImageUrl");
- t.Caption = null; // doesn't get added to ViewState
- Assert.AreEqual (String.Empty, t.Caption, "Caption");
- t.CaptionAlign = TableCaptionAlign.NotSet;
- Assert.AreEqual (TableCaptionAlign.NotSet, t.CaptionAlign, "CaptionAlign");
- t.CellPadding = -1;
- Assert.AreEqual (-1, t.CellPadding, "CellPadding");
- t.CellSpacing = -1;
- Assert.AreEqual (-1, t.CellSpacing, "CellSpacing");
- t.GridLines = GridLines.None;
- Assert.AreEqual (GridLines.None, t.GridLines, "GridLines");
- t.HorizontalAlign = HorizontalAlign.NotSet;
- Assert.AreEqual (HorizontalAlign.NotSet, t.HorizontalAlign, "HorizontalAlign");
- Assert.AreEqual (0, t.Attributes.Count, "Attributes.Count");
- Assert.AreEqual (6, t.StateBag.Count, "ViewState.Count-1");
- }
- [Test]
- public void CleanProperties ()
- {
- TestTable t = new TestTable ();
- t.BackImageUrl = imageUrl;
- Assert.AreEqual (imageUrl, t.BackImageUrl, "BackImageUrl");
- t.Caption = "Mono";
- Assert.AreEqual ("Mono", t.Caption, "Caption");
- t.CaptionAlign = TableCaptionAlign.Top;
- Assert.AreEqual (TableCaptionAlign.Top, t.CaptionAlign, "CaptionAlign");
- t.CellPadding = 1;
- Assert.AreEqual (1, t.CellPadding, "CellPadding");
- t.CellSpacing = 2;
- Assert.AreEqual (2, t.CellSpacing, "CellSpacing");
- t.GridLines = GridLines.Both;
- Assert.AreEqual (GridLines.Both, t.GridLines, "GridLines");
- t.HorizontalAlign = HorizontalAlign.Justify;
- Assert.AreEqual (HorizontalAlign.Justify, t.HorizontalAlign, "HorizontalAlign");
- Assert.AreEqual (0, t.Attributes.Count, "Attributes.Count");
- Assert.AreEqual (7, t.StateBag.Count, "ViewState.Count");
- t.BackImageUrl = String.Empty; // doesn't accept null, see specific test
- Assert.AreEqual (String.Empty, t.BackImageUrl, "-BackImageUrl");
- t.Caption = null; // removed
- Assert.AreEqual (String.Empty, t.Caption, "-Caption");
- t.CaptionAlign = TableCaptionAlign.NotSet;
- Assert.AreEqual (TableCaptionAlign.NotSet, t.CaptionAlign, "-CaptionAlign");
- t.CellPadding = -1;
- Assert.AreEqual (-1, t.CellPadding, "-CellPadding");
- t.CellSpacing = -1;
- Assert.AreEqual (-1, t.CellSpacing, "-CellSpacing");
- t.GridLines = GridLines.None;
- Assert.AreEqual (GridLines.None, t.GridLines, "-GridLines");
- t.HorizontalAlign = HorizontalAlign.NotSet;
- Assert.AreEqual (HorizontalAlign.NotSet, t.HorizontalAlign, "-HorizontalAlign");
- Assert.AreEqual (0, t.Attributes.Count, "Attributes.Count-1");
- Assert.AreEqual (6, t.StateBag.Count, "ViewState.Count-1");
- }
- [Test]
- // LAMESPEC: undocumented (all others property I've seen takes null as the default value)
- [ExpectedException (typeof (ArgumentNullException))]
- public void BackImageUrl_Null ()
- {
- Table t = new Table ();
- t.BackImageUrl = null;
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CaptionAlign_Invalid ()
- {
- Table t = new Table ();
- t.CaptionAlign = (TableCaptionAlign)Int32.MinValue;
- }
- [Test]
- // LAMESPEC: undocumented exception but similar to Image
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void GridLines_Invalid ()
- {
- Table t = new Table ();
- t.GridLines = (GridLines)Int32.MinValue;
- }
- [Test]
- // LAMESPEC: undocumented exception but similar to Image
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void HorizontalAlign_Invalid ()
- {
- Table t = new Table ();
- t.HorizontalAlign = (HorizontalAlign)Int32.MinValue;
- }
- [Test]
- public void BorderWidth ()
- {
- Table t = new Table ();
- Assert.AreEqual (0, t.BorderWidth.Value, "GridLines.None");
- t.GridLines = GridLines.Horizontal;
- Assert.AreEqual (0, t.BorderWidth.Value, "GridLines.Horizontal");
- t.GridLines = GridLines.Vertical;
- Assert.AreEqual (0, t.BorderWidth.Value, "GridLines.Vertical");
- t.GridLines = GridLines.Both;
- Assert.AreEqual (0, t.BorderWidth.Value, "GridLines.Both");
- // note: but border="1" when rendered
- }
- [Test]
- public void Render ()
- {
- TestTable t = new TestTable ();
- string s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\n</table>", s, "empty/default");
- t.CellPadding = 1;
- s = t.Render ();
- Assert.AreEqual ("<table cellpadding=\"1\" border=\"0\">\n\n</table>", s, "CellPadding");
- t.CellPadding = -1;
- t.CellSpacing = 2;
- s = t.Render ();
- Assert.AreEqual ("<table cellspacing=\"2\" border=\"0\">\n\n</table>", s, "CellSpacing");
- t.CellSpacing = -1;
- t.GridLines = GridLines.Horizontal;
- s = t.Render ();
- Assert.AreEqual ("<table rules=\"rows\" border=\"1\">\n\n</table>", s, "GridLines.Horizontal");
- t.GridLines = GridLines.Vertical;
- s = t.Render ();
- Assert.AreEqual ("<table rules=\"cols\" border=\"1\">\n\n</table>", s, "GridLines.Vertical");
- t.GridLines = GridLines.Both;
- s = t.Render ();
- Assert.AreEqual ("<table rules=\"all\" border=\"1\">\n\n</table>", s, "GridLines.Both");
- t.GridLines = GridLines.None;
- t.BorderWidth = new Unit (2);
- s = t.Render ();
- Assert.IsTrue ((s.IndexOf ("border=\"0\"") > 0), "border=0/2");
- t.GridLines = GridLines.Horizontal;
- s = t.Render ();
- Assert.IsTrue ((s.IndexOf ("rules=\"rows\" border=\"2\"") > 0), "2/GridLines.Horizontal");
- t.GridLines = GridLines.Vertical;
- s = t.Render ();
- Assert.IsTrue ((s.IndexOf ("rules=\"cols\" border=\"2\"") > 0), "2/GridLines.Vertical");
- t.GridLines = GridLines.Both;
- s = t.Render ();
- Assert.IsTrue ((s.IndexOf ("rules=\"all\" border=\"2\"") > 0), "2/GridLines.Both");
- t.GridLines = GridLines.None;
- t.BorderWidth = new Unit ();
- t.HorizontalAlign = HorizontalAlign.Left;
- s = t.Render ();
- Assert.AreEqual ("<table align=\"left\" border=\"0\">\n\n</table>", s.ToLower (), "HorizontalAlign.Left");
- t.HorizontalAlign = HorizontalAlign.Center;
- s = t.Render ();
- Assert.AreEqual ("<table align=\"center\" border=\"0\">\n\n</table>", s.ToLower (), "HorizontalAlign.Center");
- t.HorizontalAlign = HorizontalAlign.Right;
- s = t.Render ();
- Assert.AreEqual ("<table align=\"right\" border=\"0\">\n\n</table>", s.ToLower (), "HorizontalAlign.Right");
- t.HorizontalAlign = HorizontalAlign.Justify;
- s = t.Render ();
- Assert.AreEqual ("<table align=\"justify\" border=\"0\">\n\n</table>", s.ToLower (), "HorizontalAlign.Justify");
- t.HorizontalAlign = HorizontalAlign.NotSet;
- t.Caption = "mono";
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption>\n\t\tmono\n\t</caption>\n</table>", s.ToLower (), "Caption");
- t.CaptionAlign = TableCaptionAlign.Top;
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption align=\"top\">\n\t\tmono\n\t</caption>\n</table>", s.ToLower (), "Caption/Top");
- t.CaptionAlign = TableCaptionAlign.Bottom;
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption align=\"bottom\">\n\t\tmono\n\t</caption>\n</table>", s.ToLower (), "Caption/Bottom");
- t.CaptionAlign = TableCaptionAlign.Right;
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption align=\"right\">\n\t\tmono\n\t</caption>\n</table>", s.ToLower (), "Caption/Right");
- t.CaptionAlign = TableCaptionAlign.Left;
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption align=\"left\">\n\t\tmono\n\t</caption>\n</table>", s.ToLower (), "Caption/Left");
- t.Caption = null;
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\">\n\n</table>", s, "CaptionAlign without Caption");
- t.CaptionAlign = TableCaptionAlign.NotSet;
- t.BackImageUrl = imageUrl;
- s = t.Render ();
- Assert.AreEqual ("<table border=\"0\" style=\"background-image:url(http://www.mono-project.com/stylesheets/images.wiki.png);\">\n\n</table>", s, "BackImageUrl");
- t.BackImageUrl = String.Empty;
- }
- [Test]
- public void CreateControlStyle ()
- {
- TestTable t = new TestTable ();
- t.BackImageUrl = imageUrl;
- t.CellPadding = 1;
- t.CellSpacing = 2;
- t.GridLines = GridLines.Horizontal;
- t.HorizontalAlign = HorizontalAlign.Left;
- TableStyle ts = (TableStyle)t.GetStyle ();
- // is it live ?
- ts.BackImageUrl = "mono";
- Assert.AreEqual ("mono", t.BackImageUrl, "BackImageUrl-2");
- ts.CellPadding = Int32.MaxValue;
- Assert.AreEqual (Int32.MaxValue, t.CellPadding, "CellPadding-2");
- ts.CellSpacing = 0;
- Assert.AreEqual (0, t.CellSpacing, "CellSpacing-2");
- ts.GridLines = GridLines.Vertical;
- Assert.AreEqual (GridLines.Vertical, t.GridLines, "GridLines-2");
- ts.HorizontalAlign = HorizontalAlign.Right;
- Assert.AreEqual (HorizontalAlign.Right, t.HorizontalAlign, "HorizontalAlign-2");
- }
- private string Adjust (string s)
- {
- // right now Mono doesn't generate the exact same indentation/lines as MS implementation
- // and different fx versions have different casing for enums
- return s.Replace ("\n", "").Replace ("\t", "").ToLower ();
- }
- [Test]
- public void Rows ()
- {
- TestTable t = new TestTable ();
- Assert.AreEqual (0, t.Rows.Count, "0");
- TableRow tr = new TableRow ();
- t.Rows.Add (tr);
- Assert.AreEqual (1, t.Rows.Count, "r1");
- Assert.AreEqual (1, t.Controls.Count, "c1");
- string s = t.Render ();
- Assert.AreEqual (Adjust ("<table border=\"0\">\n\t<tr>\n\n\t</tr>\n</table>"), Adjust (s), "tr-1");
- // change instance properties
- tr.HorizontalAlign = HorizontalAlign.Justify;
- s = t.Render ();
- Assert.AreEqual (Adjust ("<table border=\"0\">\n\t<tr align=\"justify\">\n\n\t</tr>\n</table>"), Adjust (s), "tr-1j");
- // add it again (same instance)
- t.Rows.Add (tr);
- Assert.AreEqual (1, t.Rows.Count, "t1bis");
- Assert.AreEqual (1, t.Controls.Count, "c1bis");
- s = t.Render ();
- Assert.AreEqual (Adjust ("<table border=\"0\">\n\t<tr align=\"justify\">\n\n\t</tr>\n</table>"), Adjust (s), "tr-1bis");
- tr.HorizontalAlign = HorizontalAlign.NotSet;
- tr = new TableRow ();
- tr.HorizontalAlign = HorizontalAlign.Justify;
- t.Rows.Add (tr);
- Assert.AreEqual (2, t.Rows.Count, "r2");
- Assert.AreEqual (2, t.Controls.Count, "c2");
- s = t.Render ();
- Assert.AreEqual (Adjust ("<table border=\"0\">\n\t<tr>\n\n\t</tr><tr align=\"justify\">\n\n\t</tr>\n</table>"), Adjust (s), "tr-2");
- tr = new TableRow ();
- tr.VerticalAlign = VerticalAlign.Bottom;
- t.Controls.Add (tr);
- Assert.AreEqual (3, t.Rows.Count, "r3");
- Assert.AreEqual (3, t.Controls.Count, "c3");
- s = t.Render ();
- Assert.AreEqual (Adjust ("<table border=\"0\">\n\t<tr>\n\n\t</tr><tr align=\"justify\">\n\n\t</tr><tr valign=\"bottom\">\n\n\t</tr>\n</table>"), Adjust (s), "tr-3");
- t.Caption = "caption";
- s = t.Render ();
- Assert.AreEqual (Adjust ("<table border=\"0\">\n\t<caption>\n\t\tcaption\n\t</caption><tr>\n\n\t</tr><tr align=\"justify\">\n\n\t</tr><tr valign=\"bottom\">\n\n\t</tr>\n</table>"), Adjust (s), "tr-2c");
- }
- [Test]
- [ExpectedException (typeof (NullReferenceException))]
- public void ControlsAdd_Null ()
- {
- new Table ().Controls.Add (null);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void ControlsAdd_LiteralControl ()
- {
- new Table ().Controls.Add (new LiteralControl ("mono"));
- }
- [Test]
- public void ControlsAdd_TableRow ()
- {
- Table t = new Table ();
- t.Controls.Add (new TableRow ());
- Assert.AreEqual (1, t.Controls.Count, "Controls");
- Assert.AreEqual (1, t.Rows.Count, "Rows");
- }
- [Test]
- public void ControlsAdd_TestTableRow ()
- {
- Table t = new Table ();
- t.Controls.Add (new TestTableRow ());
- Assert.AreEqual (1, t.Controls.Count, "Controls");
- Assert.AreEqual (1, t.Rows.Count, "Rows");
- }
- [Test]
- [ExpectedException (typeof (NullReferenceException))]
- public void ControlsAddAt_Null ()
- {
- new Table ().Controls.AddAt (0, null);
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void ControlsAddAt_Negative ()
- {
- new Table ().Controls.AddAt (Int32.MinValue, new TableRow ());
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void ControlsAddAt_LiteralControl ()
- {
- new Table ().Controls.AddAt (0, new LiteralControl ("mono"));
- }
- [Test]
- public void ControlsAddAt_TableRow ()
- {
- Table t = new Table ();
- t.Controls.AddAt (0, new TableRow ());
- Assert.AreEqual (1, t.Controls.Count, "Controls");
- Assert.AreEqual (1, t.Rows.Count, "Rows");
- }
- [Test]
- public void ControlsAddAt_TestTableRow ()
- {
- Table t = new Table ();
- t.Controls.AddAt (0, new TestTableRow ());
- Assert.AreEqual (1, t.Controls.Count, "Controls");
- Assert.AreEqual (1, t.Rows.Count, "Rows");
- }
- [Test]
- [ExpectedException (typeof (NullReferenceException))]
- public void RenderBeginTag_Null ()
- {
- Table t = new Table ();
- t.RenderBeginTag (null);
- }
- [Test]
- public void RenderBeginTag_Empty ()
- {
- HtmlTextWriter writer = GetWriter ();
- Table t = new Table ();
- t.RenderBeginTag (writer);
- string s = writer.InnerWriter.ToString ();
- Assert.AreEqual ("<table border=\"0\">\n", s, "empty");
- }
- [Test]
- public void RenderBeginTag_Attributes ()
- {
- HtmlTextWriter writer = GetWriter ();
- Table t = new Table ();
- t.CellPadding = 1;
- t.RenderBeginTag (writer);
- string s = writer.InnerWriter.ToString ();
- Assert.AreEqual ("<table cellpadding=\"1\" border=\"0\">\n", s, "CellPadding");
- }
- [Test]
- public void RenderBeginTag_Caption ()
- {
- HtmlTextWriter writer = GetWriter ();
- Table t = new Table ();
- t.Caption = "caption";
- t.RenderBeginTag (writer);
- string s = writer.InnerWriter.ToString ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption>\n\t\tcaption\n\t</caption>", s, "caption");
- }
- [Test]
- public void RenderBeginTag_Caption_Align ()
- {
- HtmlTextWriter writer = GetWriter ();
- Table t = new Table ();
- t.Caption = "caption";
- t.CaptionAlign = TableCaptionAlign.Top;
- t.RenderBeginTag (writer);
- string s = writer.InnerWriter.ToString ();
- Assert.AreEqual ("<table border=\"0\">\n\t<caption align=\"top\">\n\t\tcaption\n\t</caption>", s.ToLower (), "caption");
- }
- [Test]
- public void RenderBeginTag_Row ()
- {
- HtmlTextWriter writer = GetWriter ();
- Table t = new Table ();
- t.Rows.Add (new TableRow ());
- t.RenderBeginTag (writer);
- string s = writer.InnerWriter.ToString ();
- Assert.AreEqual ("<table border=\"0\">\n", s, "tr");
- }
- }
- }
|