| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- //
- // Tests for System.Web.UI.WebControls.Panel.cs
- //
- // Author:
- // Ben Maurer <[email protected]>
- // Yoni Klain <[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 MonoTests.stand_alone.WebHarness;
- using MonoTests.SystemWeb.Framework;
- namespace MonoTests.System.Web.UI.WebControls {
- [TestFixture]
- public class PanelTest
- {
- #region helpclasses
- class Poker : Panel {
-
- public string Render ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- base.Render (writer);
- return writer.InnerWriter.ToString ();
- }
- }
-
- class PokerS : Panel
- {
- public string Render ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- base.Render (writer);
- return writer.InnerWriter.ToString ();
- }
- #if NET_2_0
- protected override Style CreateControlStyle ()
- {
- Style s = new Style (new StateBag ());
- s.BackColor = Color.Red;
- s.BorderColor = Color.Red;
- return s;
- }
- public override void RenderBeginTag (HtmlTextWriter writer)
- {
- base.RenderBeginTag (writer);
- }
- public override void RenderEndTag (HtmlTextWriter writer)
- {
- base.RenderEndTag (writer);
- }
- public string RenderBeginTag ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- base.RenderBeginTag (writer);
- return writer.InnerWriter.ToString ();
- }
- public string RenderEndTag ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- base.RenderBeginTag (writer);
- base.RenderEndTag (writer);
- return writer.InnerWriter.ToString ();
- }
- #endif
- }
- class PokerR : Panel
- {
- public string Render ()
- {
- StringWriter sw = new StringWriter ();
- sw.NewLine = "\n";
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- sw.Write ("Render");
- base.Render (writer);
- return writer.InnerWriter.ToString ();
- }
- #if NET_2_0
- public override void RenderBeginTag (HtmlTextWriter writer)
- {
- writer.Write ("RenderBeginTag");
- }
- public override void RenderEndTag (HtmlTextWriter writer)
- {
- writer.Write ("RenderEndTag");
- }
- #endif
- }
- #endregion
- #if NET_2_0
- [TestFixtureSetUp]
- public void SetUp ()
- {
- WebTest.CopyResource (GetType (), "NoEventValidation.aspx", "NoEventValidation.aspx");
- }
- #endif
- [Test]
- [Category("NotWorking")]
- public void Defaults ()
- {
- Poker p = new Poker ();
- #if NET_2_0
- #if false
- Assert.AreEqual (ContentDirection.NotSet, p.Direction, "Direction");
- Assert.AreEqual (string.Empty, p.GroupingText, "GroupingText");
- Assert.AreEqual (ScrollBars.None, p.ScrollBars, "ScrollBars");
- Assert.AreEqual (string.Empty, p.DefaultButton, "DefaultButton");
- #endif
- //Note: "Panel does not have definition to: ScrollBars;DefaultButton;Direction;GroupingText";
- #endif
- }
-
- [Test]
- public void NoWrap ()
- {
- Poker p = new Poker ();
- p.Wrap = false;
- p.Controls.Add (new LiteralControl ("TEXT"));
- #if NET_2_0
- const string html ="<div style=\"white-space:nowrap;\">\n\tTEXT\n</div>";
- #elif NET_1_1
- const string html ="<div nowrap=\"nowrap\">\n\tTEXT\n</div>";
- #endif
- Assert.AreEqual (html, p.Render ());
- }
- #if NET_2_0
- [Test]
- public void CreateControlStyle ()
- {
- PokerS p = new PokerS ();
- Style s = p.ControlStyle;
- Assert.AreEqual (Color.Red, s.BackColor, "CreateControlStyle#1");
- Assert.AreEqual (Color.Red, s.BorderColor, "CreateControlStyle#2");
- p.ApplyStyle (s);
- string html = p.Render ();
- HtmlDiff.AssertAreEqual ("<div style=\"background-color:Red;border-color:Red;\"></div>", html, "CreateControlStyle");
- }
- [Test]
- [Category("NotWorking")]
- [Category ("NunitWeb")]
- public void DefaultButton ()
- {
- #if false
- WebTest.CopyResource (GetType (), "NoEventValidation.aspx", "NoEventValidation.aspx");
- WebTest t = new WebTest ("NoEventValidation.aspx");
- t.Invoker = PageInvoker.CreateOnInit (DefaultButton__Init);
- t.Run ();
- #endif
- // Note : "Panel have no definition to DefaultButton");
- }
- public static void DefaultButton__Init (Page p)
- {
- #if false
- Poker pl = new Poker ();
- pl.DefaultButton = "MyButton";
- Button b = new Button ();
- b.ID = "MyButton";
- p.Form.Controls.Add (b);
- p.Form.Controls.Add (pl);
- string html = pl.Render ();
- if (html.IndexOf ("onkeypress") == -1)
- Assert.Fail ("Default button script not created #1");
- if (html.IndexOf ("MyButton") == -1)
- Assert.Fail ("Default button script not created #2");
- #endif
- // Note :"Panel have no definition to DefaultButton");
- }
-
- [Test]
- [Category ("NotWorking")]
- [Category("NunitWeb")]
- #if false
- [ExpectedException(typeof(InvalidOperationException))]
- #endif
- public void DefaultButton_Exception ()
- {
- #if false
- WebTest.CopyResource (GetType (), "NoEventValidation.aspx", "NoEventValidation.aspx");
- WebTest t = new WebTest ("NoEventValidation.aspx");
- t.Invoker = PageInvoker.CreateOnInit (DefaultButton_Init);
- t.Run ();
- #endif
- // Note :"Panel have no definition to DefaultButton");
- }
- public static void DefaultButton_Init (Page p)
- {
- #if false
- Poker pl = new Poker ();
- pl.DefaultButton = "test";
- p.Form.Controls.Add (pl);
- pl.Render ();
- #endif
- // Note: "Panel have no definition to DefaultButton");
- }
- [Test]
- [Category("NotWorking")]
- public void Direction ()
- {
- Poker p = new Poker ();
- #if false
- p.Direction = ContentDirection.LeftToRight;
- string html = p.Render();
- HtmlDiff.AssertAreEqual ("<div dir=\"ltr\"></div>", html, "Direction");
- #endif
- //Note:"Panel have no definition to Direction");
- }
- [Test]
- [Category ("NotWorking")]
- public void GroupingText ()
- {
- Poker p = new Poker ();
- #if false
- p.GroupingText = "MyNameText";
- string html = p.Render ();
- HtmlDiff.AssertAreEqual ("<div><fieldset><legend>MyNameText</legend></fieldset></div>", html, "GroupingText");
- #endif
- //Note : "Panel have no definition to GroupingText");
- }
- [Test]
- public void RenderBeginTag ()
- {
- PokerS p = new PokerS ();
- string html = p.RenderBeginTag ();
- HtmlDiff.AssertAreEqual ("<div>\n", html, "RenderBeginTag");
- }
- [Test]
- public void RenderEndTag ()
- {
- PokerS p = new PokerS ();
- string html = p.RenderEndTag ();
- HtmlDiff.AssertAreEqual ("<div>\n\n</div>", html, "RenderBeginTag");
- }
- [Test]
- public void RenderFlow ()
- {
- PokerR p = new PokerR ();
- string html = p.Render ();
- Assert.AreEqual ("RenderRenderBeginTagRenderEndTag", html, "RenderFlow");
- }
- [Test]
- [Category("NotWorking")]
- public void Scroll_Bars ()
- {
- Poker p = new Poker ();
- #if false
- p.ScrollBars = ScrollBars.Horizontal;
- string html = p.Render ();
- HtmlDiff.AssertAreEqual ("<div style=\"overflow-x:scroll;\"></div>", html, "ScrollBars.Horizontal");
- p.ScrollBars = ScrollBars.Vertical;
- html = p.Render ();
- HtmlDiff.AssertAreEqual ("<div style=\"overflow-y:scroll;\"></div>", html, "ScrollBars.Vertical");
- p.ScrollBars = ScrollBars.Both;
- html = p.Render ();
- HtmlDiff.AssertAreEqual ("<div style=\"overflow-scroll;\"></div>", html, "ScrollBars.Both");
- #endif
- // Note : "Panel does not have definition to ScrollBars");
- }
- [TestFixtureTearDown]
- public void TearDown ()
- {
- WebTest.Unload ();
- }
- #endif
- }
- }
-
|