| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098 |
- //
- // Tests for System.Web.UI.Page
- //
- // Authors:
- // Peter Dennis Bartok ([email protected])
- // Sebastien Pouliot <[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.Threading;
- using System.Security.Principal;
- using System.Web;
- using System.Web.UI;
- using MonoTests.SystemWeb.Framework;
- using MonoTests.stand_alone.WebHarness;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- using System.Collections;
- using System.Net;
- namespace MonoTests.System.Web.UI {
- class TestPage : Page {
- private HttpContext ctx;
- // don't call base class (so _context is never set to a non-null value)
- protected override HttpContext Context {
- get {
- if (ctx == null) {
- ctx = new HttpContext (null);
- ctx.User = new GenericPrincipal (new GenericIdentity ("me"), null);
- }
- return ctx;
- }
- }
- #if NET_2_0
- // MONO BUG - have no difinition for AsyncMode
- //public new bool AsyncMode
- //{
- // get { return base.AsyncMode; }
- // set { base.AsyncMode = value; }
- //}
- public new object GetWrappedFileDependencies(string[] virtualFileDependencies)
- {
- return base.GetWrappedFileDependencies(virtualFileDependencies);
- }
- public new void InitOutputCache (OutputCacheParameters cacheSettings)
- {
- base.InitOutputCache (cacheSettings);
- }
- // MONO BUG - have no difinition for UniqueFilePathSuffix
- //public new string UniqueFilePathSuffix
- //{
- // get { return base.UniqueFilePathSuffix; }
- //}
- #endif
- }
- class TestPage2 : Page {
- private HttpContext ctx;
- // don't call base class (so _context is never set to a non-null value)
- protected override HttpContext Context {
- get {
- if (ctx == null) {
- ctx = new HttpContext (
- new HttpRequest (String.Empty, "http://www.mono-project.com", String.Empty),
- new HttpResponse (new StringWriter ())
- );
- }
- return ctx;
- }
- }
- public HttpContext HttpContext {
- get { return Context; }
- }
- }
- [TestFixture]
- public class PageTest {
- [SetUp]
- public void SetUpTest ()
- {
- Thread.Sleep (100);
- }
- [Test]
- [ExpectedException (typeof(HttpException))]
- public void RequestExceptionTest ()
- {
- Page p;
- HttpRequest r;
- p = new Page ();
- r = p.Request;
- }
- [Test]
- #if NET_2_0
- [Category ("NotDotNet")] // page.User throw NRE in 2.0 RC
- #endif
- public void User_OverridenContext ()
- {
- TestPage page = new TestPage ();
- Assert.AreEqual ("me", page.User.Identity.Name, "User");
- }
- [Test]
- [ExpectedException (typeof (HttpException))]
- public void Request_OverridenContext ()
- {
- TestPage2 page = new TestPage2 ();
- Assert.IsNotNull (page.Request, "Request");
- // it doesn't seems to access the context via the virtual property
- }
- [Test]
- public void Request_OverridenContext_Indirect ()
- {
- TestPage2 page = new TestPage2 ();
- Assert.IsNotNull (page.HttpContext.Request, "Request");
- }
- #if NET_2_0
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderOnPreInit ()
- {
- Thread.Sleep (200);
- PageDelegate pd = new PageDelegate (Page_OnPreInit);
- WebTest t = new WebTest (PageInvoker.CreateOnPreInit (pd));
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- PreInit
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderInit");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- public static void Page_OnPreInit (Page p)
- {
- Assert.AreEqual (null, p.Header, "HeaderOnPreInit");
- p.Title = "PreInit";
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderInit ()
- {
- Thread.Sleep (200);
- PageDelegate pd = new PageDelegate (CheckHeader);
- WebTest t = new WebTest (PageInvoker.CreateOnInit (pd));
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderInit");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderInitComplete ()
- {
- Thread.Sleep (200);
- WebTest t = new WebTest ();
- PageDelegates pd = new PageDelegates ();
- pd.InitComplete = CheckHeader;
- t.Invoker = new PageInvoker (pd);
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderInitComplete");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderPreLoad ()
- {
- Thread.Sleep (200);
- WebTest t = new WebTest ();
- PageDelegates pd = new PageDelegates ();
- pd.PreLoad = CheckHeader;
- t.Invoker = new PageInvoker (pd);
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderPreLoad");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderLoad ()
- {
- Thread.Sleep (200);
- PageDelegate pd = new PageDelegate (CheckHeader);
- WebTest t = new WebTest (PageInvoker.CreateOnLoad (pd));
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderLoad");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderLoadComplete ()
- {
- Thread.Sleep (200);
- WebTest t = new WebTest ();
- PageDelegates pd = new PageDelegates ();
- pd.LoadComplete = CheckHeader;
- t.Invoker = new PageInvoker (pd);
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderLoadComplete");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderPreRender ()
- {
- Thread.Sleep (200);
- WebTest t = new WebTest ();
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = CheckHeader;
- t.Invoker = new PageInvoker (pd);
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderPreRender");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- [Test]
- [Category ("NunitWeb")]
- public void PageHeaderPreRenderComplete ()
- {
- Thread.Sleep (200);
- WebTest t = new WebTest ();
- PageDelegates pd = new PageDelegates ();
- pd.PreRenderComplete = CheckHeader;
- t.Invoker = new PageInvoker (pd);
- string html = t.Run ();
- string newHtml = html.Substring (html.IndexOf ("<head"), (html.IndexOf ("<body") - html.IndexOf ("<head")));
- string origHtml = @" <head id=""Head1""><title>
- Test
- </title></head>";
- HtmlDiff.AssertAreEqual (origHtml, newHtml, "HeaderRenderPreRenderComplete");
- Thread.Sleep (200);
- WebTest.Unload ();
- }
- public static void CheckHeader (Page p)
- {
- Assert.AreEqual ("Untitled Page", p.Title, "CheckHeader#1");
- Assert.AreEqual ("Untitled Page", p.Header.Title, "CheckHeader#2");
- p.Title = "Test0";
- Assert.AreEqual ("Test0", p.Header.Title, "CheckHeader#3");
- p.Header.Title = "Test";
- Assert.AreEqual ("Test", p.Title, "CheckHeader#4");
- }
- #endif
- #if NET_2_0
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidationGroup () {
- new WebTest (PageInvoker.CreateOnLoad (Page_ValidationGroup_Load)).Run ();
- }
- public static void Page_ValidationGroup_Load (Page page) {
- TextBox textbox;
- BaseValidator val;
- textbox = new TextBox ();
- textbox.ID = "T1";
- textbox.ValidationGroup = "VG1";
- page.Form.Controls.Add (textbox);
- val = new RequiredFieldValidator ();
- val.ControlToValidate = "T1";
- val.ValidationGroup = "VG1";
- page.Form.Controls.Add (val);
- textbox = new TextBox ();
- textbox.ID = "T2";
- textbox.ValidationGroup = "VG2";
- page.Form.Controls.Add (textbox);
- val = new RequiredFieldValidator ();
- val.ControlToValidate = "T2";
- val.ValidationGroup = "VG2";
- page.Form.Controls.Add (val);
- textbox = new TextBox ();
- textbox.ID = "T3";
- page.Form.Controls.Add (textbox);
- val = new RequiredFieldValidator ();
- val.ControlToValidate = "T3";
- page.Form.Controls.Add (val);
- Assert.AreEqual (3, page.Validators.Count, "Page_ValidationGroup#1");
- Assert.AreEqual (1, page.GetValidators ("").Count, "Page_ValidationGroup#2");
- Assert.AreEqual (1, page.GetValidators (null).Count, "Page_ValidationGroup#3");
- Assert.AreEqual (0, page.GetValidators ("Fake").Count, "Page_ValidationGroup#4");
- Assert.AreEqual (1, page.GetValidators ("VG1").Count, "Page_ValidationGroup#5");
- Assert.AreEqual (1, page.GetValidators ("VG2").Count, "Page_ValidationGroup#6");
- }
- #endif
- #if NET_2_0
- // This test are testing validation fixture using RequiredFieldValidator for example
-
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidationCollection ()
- {
- WebTest t = new WebTest (PageInvoker.CreateOnLoad (ValidationCollectionload));
- t.Run ();
- }
- public static void ValidationCollectionload (Page p)
- {
- RequiredFieldValidator validator = new RequiredFieldValidator ();
- validator.ID = "v";
- RequiredFieldValidator validator1 = new RequiredFieldValidator ();
- validator.ID = "v1";
- p.Controls.Add (validator);
- p.Controls.Add (validator1);
- Assert.AreEqual (2, p.Validators.Count, "Validators collection count fail");
- Assert.AreEqual (true, p.Validators[0].IsValid, "Validators collection value#1 fail");
- Assert.AreEqual (true, p.Validators[1].IsValid, "Validators collection value#2 fail");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest1 ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageValidationTest.aspx", "PageValidationTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageValidationTest.aspx", "PageValidationTest.aspx");
- #endif
- WebTest t = new WebTest ("PageValidationTest.aspx");
- string PageRenderHtml = t.Run ();
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("TextBox1");
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = ValidatorTest1PreRender;
- t.Invoker = new PageInvoker (pd);
- fr.Controls["TextBox1"].Value = "";
- t.Request = fr;
- PageRenderHtml = t.Run ();
- Assert.IsNotNull(t.UserData, "Validate server side method not raised fail");
- ArrayList list = t.UserData as ArrayList;
- if (list == null)
- Assert.Fail ("User data not created fail#1");
- Assert.AreEqual (1, list.Count, "Just validate with no validation group must be called fail#1");
- Assert.AreEqual ("Validate", list[0].ToString (), "Validate with no validation group must be called fail#1");
- }
- public static void ValidatorTest1PreRender (Page p)
- {
- Assert.AreEqual (1, p.Validators.Count, "Validators count fail#1");
- Assert.AreEqual (false, p.Validators[0].IsValid, "Specific validator value filed#1");
- Assert.AreEqual (false, p.IsValid, "Page validation Failed#1");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest2 ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageValidationTest.aspx", "PageValidationTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageValidationTest.aspx", "PageValidationTest.aspx");
- #endif
- WebTest t = new WebTest ("PageValidationTest.aspx");
- string PageRenderHtml = t.Run ();
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("TextBox1");
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = ValidatorTest2PreRender;
- t.Invoker = new PageInvoker (pd);
- fr.Controls["TextBox1"].Value = "test";
- t.Request = fr;
- PageRenderHtml = t.Run ();
- Assert.IsNotNull ( t.UserData, "Validate server side method not raised fail#2");
- ArrayList list = t.UserData as ArrayList;
- if (list == null)
- Assert.Fail ("User data not created fail#2");
- Assert.AreEqual (1, list.Count, "Just validate with no validation group must be called fail#2");
- Assert.AreEqual ("Validate", list[0].ToString (), "Validate with no validation group must be called fail#2");
- }
- public static void ValidatorTest2PreRender (Page p)
- {
- Assert.AreEqual (1, p.Validators.Count, "Validators count fail#2");
- Assert.AreEqual (true, p.Validators[0].IsValid, "Specific validator value fail#2");
- Assert.AreEqual (true, p.IsValid, "Page validation Fail#2");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest3 ()
- {
- WebTest t = new WebTest (PageInvoker.CreateOnLoad (ValidatorTest3Load));
- t.Run ();
- }
- public static void ValidatorTest3Load (Page p)
- {
- TextBox tbx = new TextBox ();
- tbx.ID = "tbx";
- RequiredFieldValidator vld = new RequiredFieldValidator ();
- vld.ID = "vld";
- vld.ControlToValidate = "tbx";
- p.Controls.Add (tbx);
- p.Controls.Add (vld);
- vld.Validate ();
- Assert.AreEqual (false, p.Validators[0].IsValid, "RequiredField result fail #1");
- tbx.Text = "test";
- vld.Validate ();
- Assert.AreEqual (true, p.Validators[0].IsValid, "RequiredField result fail #2");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest4 ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageValidationTest.aspx", "PageValidationTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageValidationTest.aspx", "PageValidationTest.aspx");
- #endif
- WebTest t = new WebTest ("PageValidationTest.aspx");
- string PageRenderHtml = t.Run ();
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("__EVENTTARGET");
- fr.Controls.Add ("__EVENTARGUMENT");
- fr.Controls.Add ("TextBox1");
- fr.Controls.Add ("Button1");
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = ValidatorTest4PreRender;
- t.Invoker = new PageInvoker (pd);
- fr.Controls["__EVENTTARGET"].Value = "";
- fr.Controls["__EVENTARGUMENT"].Value = "";
- fr.Controls["TextBox1"].Value = "";
- fr.Controls["Button1"].Value = "Button";
- t.Request = fr;
- PageRenderHtml = t.Run ();
- Assert.IsNotNull (t.UserData, "Validate server side method not raised fail#3");
- ArrayList list = t.UserData as ArrayList;
- if (list == null)
- Assert.Fail ("User data not created fail#3");
- Assert.AreEqual (1, list.Count, "Just validate with validation group must be called fail#3");
- Assert.AreEqual ("Validate_WithGroup", list[0].ToString (), "Validate with validation group must be called fail#3");
- }
- public static void ValidatorTest4PreRender (Page p)
- {
- Assert.AreEqual (1, p.Validators.Count, "Validators count fail#3");
- Assert.AreEqual (false, p.Validators[0].IsValid, "Specific validator value filed#3");
- Assert.AreEqual (false, p.IsValid, "Page validation Failed#3");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest5 ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageValidationTest.aspx", "PageValidationTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageValidationTest.aspx", "PageValidationTest.aspx");
- #endif
- WebTest t = new WebTest ("PageValidationTest.aspx");
- string PageRenderHtml = t.Run ();
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("__EVENTTARGET");
- fr.Controls.Add ("__EVENTARGUMENT");
- fr.Controls.Add ("TextBox1");
- fr.Controls.Add ("Button1");
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = ValidatorTest5PreRender;
- t.Invoker = new PageInvoker (pd);
- fr.Controls["__EVENTTARGET"].Value = "";
- fr.Controls["__EVENTARGUMENT"].Value = "";
- fr.Controls["TextBox1"].Value = "Test";
- fr.Controls["Button1"].Value = "Button";
- t.Request = fr;
- PageRenderHtml = t.Run ();
- Assert.IsNotNull ( t.UserData, "Validate server side method not raised fail#3");
- ArrayList list = t.UserData as ArrayList;
- if (list == null)
- Assert.Fail ("User data not created fail#3");
- Assert.AreEqual (1, list.Count, "Just validate with validation group must be called fail#3");
- Assert.AreEqual ("Validate_WithGroup", list[0].ToString (), "Validate with validation group must be called fail#3");
- }
- public static void ValidatorTest5PreRender (Page p)
- {
- Assert.AreEqual (1, p.Validators.Count, "Validators count fail#3");
- Assert.AreEqual (true, p.Validators[0].IsValid, "Specific validator value filed#3");
- Assert.AreEqual (true, p.IsValid, "Page validation Failed#3");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest6 ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageValidationTest.aspx", "PageValidationTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageValidationTest.aspx", "PageValidationTest.aspx");
- #endif
- WebTest t = new WebTest ("PageValidationTest.aspx");
- string PageRenderHtml = t.Run ();
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("__EVENTTARGET");
- fr.Controls.Add ("__EVENTARGUMENT");
- fr.Controls.Add ("TextBox1");
- fr.Controls.Add ("Button1");
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = ValidatorTest6PreRender;
- pd.Load = ValidatorTest6Load;
- t.Invoker = new PageInvoker (pd);
- fr.Controls["__EVENTTARGET"].Value = "";
- fr.Controls["__EVENTARGUMENT"].Value = "";
- fr.Controls["TextBox1"].Value = "Test";
- fr.Controls["Button1"].Value = "Button";
- t.Request = fr;
- PageRenderHtml = t.Run ();
- Assert.IsNotNull (t.UserData, "Validate server side method not raised fail#3");
- ArrayList list = t.UserData as ArrayList;
- if (list == null)
- Assert.Fail ("User data not created fail#3");
- Assert.AreEqual (1, list.Count, "Just validate with validation group must be called fail#3");
- Assert.AreEqual ("Validate_WithGroup", list[0].ToString (), "Validate with validation group must be called fail#3");
- }
- public static void ValidatorTest6PreRender (Page p)
- {
- Assert.AreEqual (1, p.Validators.Count, "Validators count fail#3");
- Assert.AreEqual (false, p.Validators[0].IsValid, "Specific validator value filed#3");
- Assert.AreEqual (false, p.IsValid, "Page validation Failed#3");
- }
- public static void ValidatorTest6Load (Page p)
- {
- if (p.IsPostBack) {
- RequiredFieldValidator rfv = p.FindControl ("RequiredFieldValidator1") as RequiredFieldValidator;
- if (rfv == null)
- Assert.Fail ("RequiredFieldValidator does not created fail");
- rfv.InitialValue = "Test";
- }
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_ValidatorTest7 ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageValidationTest.aspx", "PageValidationTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageValidationTest.aspx", "PageValidationTest.aspx");
- #endif
- WebTest t = new WebTest ("PageValidationTest.aspx");
- string PageRenderHtml = t.Run ();
- FormRequest fr = new FormRequest (t.Response, "form1");
- fr.Controls.Add ("__EVENTTARGET");
- fr.Controls.Add ("__EVENTARGUMENT");
- fr.Controls.Add ("TextBox1");
- fr.Controls.Add ("Button1");
- PageDelegates pd = new PageDelegates ();
- pd.PreRender = ValidatorTest7PreRender;
- pd.Load = ValidatorTest7Load;
- t.Invoker = new PageInvoker (pd);
- fr.Controls["__EVENTTARGET"].Value = "";
- fr.Controls["__EVENTARGUMENT"].Value = "";
- fr.Controls["TextBox1"].Value = "Test";
- fr.Controls["Button1"].Value = "Button";
- t.Request = fr;
- PageRenderHtml = t.Run ();
- Assert.IsNotNull (t.UserData, "Validate server side method not raised fail#4");
- ArrayList list = t.UserData as ArrayList;
- if (list == null)
- Assert.Fail ("User data not created fail#4");
- Assert.AreEqual (1, list.Count, "Just validate with validation group must be called fail#4");
- Assert.AreEqual ("Validate_WithGroup", list[0].ToString (), "Validate with validation group must be called fail#4");
- }
- public static void ValidatorTest7PreRender (Page p)
- {
- Assert.AreEqual (2, p.Validators.Count, "Validators count fail#4");
- Assert.AreEqual (true, p.Validators[0].IsValid, "Specific validator value filed_1#4");
- Assert.AreEqual (true, p.Validators[1].IsValid, "Specific validator value filed#4_2#4");
- Assert.AreEqual (true, p.IsValid, "Page validation Failed#4");
- }
- public static void ValidatorTest7Load (Page p)
- {
- RequiredFieldValidator validator = new RequiredFieldValidator ();
- validator.ID = "validator";
- validator.ControlToValidate = "TextBox1";
- validator.ValidationGroup = "fake";
- validator.InitialValue = "Test";
- p.Form.Controls.Add (validator);
- }
- [Test]
- [Category ("NunitWeb")]
- public void Page_Lifecycle ()
- {
- #if DOT_NET
- WebTest.CopyResource (GetType (), "MonoTests.System.Web.UI.WebControls.Resources.PageLifecycleTest.aspx", "PageLifecycleTest.aspx");
- #else
- WebTest.CopyResource (GetType (), "PageLifecycleTest.aspx", "PageLifecycleTest.aspx");
- #endif
- WebTest t = new WebTest ("PageLifecycleTest.aspx");
- string PageRenderHtml = t.Run ();
- ArrayList eventlist = t.UserData as ArrayList;
- if (eventlist == null)
- Assert.Fail ("User data does not been created fail");
- Assert.AreEqual ("OnPreInit", eventlist[0], "Live Cycle Flow #1");
- Assert.AreEqual ("OnInit", eventlist[1], "Live Cycle Flow #2");
- Assert.AreEqual ("OnInitComplete", eventlist[2], "Live Cycle Flow #3");
- Assert.AreEqual ("OnPreLoad", eventlist[3], "Live Cycle Flow #4");
- Assert.AreEqual ("OnLoad", eventlist[4], "Live Cycle Flow #5");
- Assert.AreEqual ("OnLoadComplete", eventlist[5], "Live Cycle Flow #6");
- Assert.AreEqual ("OnPreRender", eventlist[6], "Live Cycle Flow #7");
- Assert.AreEqual ("OnPreRenderComplete", eventlist[7], "Live Cycle Flow #8");
- Assert.AreEqual ("OnSaveStateComplete", eventlist[8], "Live Cycle Flow #9");
- Assert.AreEqual ("OnUnload", eventlist[9], "Live Cycle Flow #10");
- }
- /* // MONO BUG - No difinition to AddOnPreRenderCompleteAsync
- [Test]
- [Category ("NunitWeb")]
- public void AddOnPreRenderCompleteAsync ()
- {
- WebTest.CopyResource (GetType (), "AsyncPage.aspx", "AsyncPage.aspx");
- WebTest t = new WebTest ("AsyncPage.aspx");
- t.Invoker = PageInvoker.CreateOnLoad (AddOnPreRenderCompleteAsync_Load);
- string str = t.Run ();
- ArrayList eventlist = t.UserData as ArrayList;
- if (eventlist == null)
- Assert.Fail ("User data does not been created fail");
- Assert.AreEqual ("BeginGetAsyncData", eventlist[0], "BeginGetAsyncData Failed");
- Assert.AreEqual ("EndGetAsyncData", eventlist[1], "EndGetAsyncData Failed");
- }
-
- [Test]
- [Category ("NotWorking")]
- [Category ("NunitWeb")]
- public void ExecuteRegisteredAsyncTasks ()
- {
- WebTest.CopyResource (GetType (), "AsyncPage.aspx", "AsyncPage.aspx");
- WebTest t = new WebTest ("AsyncPage.aspx");
- t.Invoker = PageInvoker.CreateOnLoad (ExecuteRegisteredAsyncTasks_Load);
- string str = t.Run ();
- ArrayList eventlist = t.UserData as ArrayList;
- if (eventlist == null)
- Assert.Fail ("User data does not been created fail");
- Assert.AreEqual ("BeginGetAsyncData", eventlist[0], "BeginGetAsyncData Failed");
- Assert.AreEqual ("EndGetAsyncData", eventlist[1], "EndGetAsyncData Failed");
- }
- public static void ExecuteRegisteredAsyncTasks_Load (Page p)
- {
- BeginEventHandler bh = new BeginEventHandler (BeginGetAsyncData);
- EndEventHandler eh = new EndEventHandler (EndGetAsyncData);
- p.AddOnPreRenderCompleteAsync (bh, eh);
- p.ExecuteRegisteredAsyncTasks ();
- }
- static WebRequest myRequest;
- public static void AddOnPreRenderCompleteAsync_Load (Page p)
- {
- BeginEventHandler bh = new BeginEventHandler(BeginGetAsyncData);
- EndEventHandler eh = new EndEventHandler(EndGetAsyncData);
- p.AddOnPreRenderCompleteAsync(bh, eh);
- // Initialize the WebRequest.
- string address = "http://MyPage.aspx";
- myRequest = WebRequest.Create(address);
- }
- static IAsyncResult BeginGetAsyncData(Object src, EventArgs args, AsyncCallback cb, Object state)
- {
- if (WebTest.CurrentTest.UserData == null) {
- ArrayList list = new ArrayList ();
- list.Add ("BeginGetAsyncData");
- WebTest.CurrentTest.UserData = list;
- }
- else {
- ArrayList list = WebTest.CurrentTest.UserData as ArrayList;
- if (list == null)
- throw new NullReferenceException ();
- list.Add ("BeginGetAsyncData");
- WebTest.CurrentTest.UserData = list;
- }
- return new Customresult(); // myRequest.BeginGetResponse (cb, state);
- }
- static void EndGetAsyncData(IAsyncResult ar)
- {
- if (WebTest.CurrentTest.UserData == null) {
- ArrayList list = new ArrayList ();
- list.Add ("EndGetAsyncData");
- WebTest.CurrentTest.UserData = list;
- }
- else {
- ArrayList list = WebTest.CurrentTest.UserData as ArrayList;
- if (list == null)
- throw new NullReferenceException ();
- list.Add ("EndGetAsyncData");
- WebTest.CurrentTest.UserData = list;
- }
- }
- */
- // MONO BUG - have no difinition for AsyncMode
- //[Test]
- //public void AsyncMode ()
- //{
- // TestPage p = new TestPage ();
- // Assert.AreEqual (false, p.AsyncMode, "AsyncMode#1");
- // p.AsyncMode = true;
- // Assert.AreEqual (true, p.AsyncMode, "AsyncMode#2");
- //}
- // MONO BUG - have no difinition for AsyncTimeout
- //[Test]
- //public void AsyncTimeout ()
- //{
- // Page p = new Page ();
- // Assert.AreEqual (45, ((TimeSpan) p.AsyncTimeout).Seconds , "AsyncTimeout#1");
- // p.AsyncTimeout = new TimeSpan (0, 0, 50);
- // Assert.AreEqual (50, ((TimeSpan) p.AsyncTimeout).Seconds, "AsyncTimeout#2");
- //}
- [Test]
- public void ClientQueryString ()
- {
- // httpContext URL cannot be set.
- }
- [Test]
- public void ClientScript ()
- {
- Page p = new Page ();
- Assert.AreEqual (typeof(ClientScriptManager), p.ClientScript.GetType(), "ClientScriptManager");
- }
- // MONO BUG - have no difinition for CreateHtmlTextWriterFromType
- //[Test]
- //public void CreateHtmlTextWriterFromType ()
- //{
- // HtmlTextWriter writer = Page.CreateHtmlTextWriterFromType (null, typeof (HtmlTextWriter));
- // Assert.IsNotNull (writer, "CreateHtmlTextWriterFromType Failed");
- //}
- [Test]
- public void EnableEventValidation ()
- {
- Page p = new Page ();
- Assert.AreEqual (true, p.EnableEventValidation, "EnableEventValidation#1");
- p.EnableEventValidation = false;
- Assert.AreEqual (false, p.EnableEventValidation, "EnableEventValidation#2");
- }
- [Test]
- [Category ("NunitWeb")]
- public void Form ()
- {
- Page p = new Page ();
- Assert.AreEqual (null, p.Form, "Form#1");
- WebTest t = new WebTest (PageInvoker.CreateOnLoad (Form_Load));
- t.Run ();
- }
- public static void Form_Load (Page p)
- {
- Assert.IsNotNull (p.Form, "Form#2");
- Assert.AreEqual ("form1", p.Form.ID, "Form#3");
- Assert.AreEqual (typeof (HtmlForm), p.Form.GetType (), "Form#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void GetWrappedFileDependencies ()
- {
- TestPage p = new TestPage ();
- string []s = { "test.aspx","fake.aspx" };
- object list = p.GetWrappedFileDependencies (s);
- Assert.AreEqual (typeof(String[]), list.GetType (), "GetWrappedFileDependencie#1");
- Assert.AreEqual (2, ((String[]) list).Length, "GetWrappedFileDependencie#2");
- Assert.AreEqual ("test.aspx", ((String[]) list)[0], "GetWrappedFileDependencie#3");
- Assert.AreEqual ("fake.aspx", ((String[]) list)[1], "GetWrappedFileDependencie#4");
- }
- // MONO BUG - have no difinition for IdSeparator
- //[Test]
- //public void IdSeparator ()
- //{
- // Page p = new Page ();
- // Assert.AreEqual ('$', p.IdSeparator, "IdSeparator");
- //}
- [Test]
- [Category ("NotWorking")]
- [Category ("NunitWeb")]
- public void InitializeCulture ()
- {
- WebTest.CopyResource (GetType (), "PageCultureTest.aspx", "PageCultureTest.aspx");
- WebTest t = new WebTest ("PageCultureTest.aspx");
- string PageRenderHtml = t.Run ();
- ArrayList eventlist = t.UserData as ArrayList;
- if (eventlist == null)
- Assert.Fail ("User data does not been created fail");
- Assert.AreEqual ("InitializeCulture", eventlist[0], "Live Cycle Flow #0");
- Assert.AreEqual ("OnPreInit", eventlist[1], "Live Cycle Flow #1");
- Assert.AreEqual ("OnInit", eventlist[2], "Live Cycle Flow #2");
- Assert.AreEqual ("OnInitComplete", eventlist[3], "Live Cycle Flow #3");
- Assert.AreEqual ("OnPreLoad", eventlist[4], "Live Cycle Flow #4");
- Assert.AreEqual ("OnLoad", eventlist[5], "Live Cycle Flow #5");
- Assert.AreEqual ("OnLoadComplete", eventlist[6], "Live Cycle Flow #6");
- Assert.AreEqual ("OnPreRender", eventlist[7], "Live Cycle Flow #7");
- Assert.AreEqual ("OnPreRenderComplete", eventlist[8], "Live Cycle Flow #8");
- Assert.AreEqual ("OnSaveStateComplete", eventlist[9], "Live Cycle Flow #9");
- Assert.AreEqual ("OnUnload", eventlist[10], "Live Cycle Flow #10");
- }
- // MONO BUG - have no difinition for IsAsync
- //[Test]
- //public void IsAsync ()
- //{
- // Page p = new Page ();
- // Assert.AreEqual (false, p.IsAsync, "IsAsync");
- //}
- [Test]
- public void IsCallback ()
- {
- Page p = new Page ();
- Assert.AreEqual (false, p.IsCallback, "IsCallback");
- }
- [Test]
- public void IsCrossPagePostBack ()
- {
- Page p = new Page ();
- Assert.AreEqual (false, p.IsCrossPagePostBack, "IsCrossPagePostBack");
- }
- [Test]
- public void Items ()
- {
- Page p = new Page ();
- IDictionary d = p.Items;
- d.Add ("key", "test");
- Assert.AreEqual (1, p.Items.Count, "Items#1");
- Assert.AreEqual ("test", p.Items["key"].ToString(), "Items#2");
- }
- [Test]
- public void MaintainScrollPositionOnPostBack ()
- {
- Page p = new Page ();
- Assert.AreEqual (false, p.MaintainScrollPositionOnPostBack, "MaintainScrollPositionOnPostBack#1");
- p.MaintainScrollPositionOnPostBack = true;
- Assert.AreEqual (true, p.MaintainScrollPositionOnPostBack, "MaintainScrollPositionOnPostBack#2");
- }
- [Test]
- [Category ("NotWorking")]
- [Category("NunitWeb")]
- public void Master ()
- {
- Page p = new Page ();
- Assert.AreEqual (null, p.Master, "Master#1");
- WebTest t = new WebTest ("MyPageWithMaster.aspx");
- t.Invoker = PageInvoker.CreateOnLoad (Master_Load);
- t.Run ();
- Assert.AreEqual ("ASP.my_master", t.UserData.ToString (), "Master#2");
- }
- public static void Master_Load (Page p)
- {
- WebTest.CurrentTest.UserData = p.Master.GetType().ToString();
- }
- [Test]
- public void MasterPageFile ()
- {
- Page p = new Page ();
- Assert.AreEqual (null, p.MasterPageFile, "MasterPageFile#1");
- p.MasterPageFile = "test";
- Assert.AreEqual ("test", p.MasterPageFile, "MasterPageFile#2");
- }
- // MONO BUG - have no difinition for MaxPageStateFieldLength
- //[Test]
- //public void MaxPageStateFieldLength ()
- //{
- // Page p = new Page ();
- // Assert.AreEqual (-1, p.MaxPageStateFieldLength, "MaxPageStateFieldLength#1");
- // p.MaxPageStateFieldLength = 10;
- // Assert.AreEqual (10, p.MaxPageStateFieldLength, "MaxPageStateFieldLength#2");
- //}
- [Test]
- public void PageAdapter ()
- {
- Page p = new Page ();
- Assert.AreEqual (null, p.PageAdapter, "PageAdapter");
- }
- [Test]
- public void PreviousPage ()
- {
- // NUnit.Framework limitation for server.transfer
- }
- // MONO BUG - have no difinition for RegisterRequiresViewStateEncryption
- //[Test]
- //public void RegisterRequiresViewStateEncryption ()
- //{
- // Page p = new Page ();
- // p.ViewStateEncryptionMode = ViewStateEncryptionMode.Always;
- // p.RegisterRequiresViewStateEncryption();
- // // No changes after the Encryption
- //}
- [Test]
- public void Theme ()
- {
- Page p = new Page ();
- Assert.AreEqual (null, p.Theme, "Theme#1");
- p.Theme = "Theme.skin";
- Assert.AreEqual ("Theme.skin",p.Theme, "Theme#2");
- }
- // MONO BUG - have no difinition for UniqueFilePathSuffix
- //[Test]
- //public void UniqueFilePathSuffix ()
- //{
- // TestPage p = new TestPage ();
- // if (!p.UniqueFilePathSuffix.StartsWith ("__ufps=")) {
- // Assert.Fail ("UniqueFilePathSuffix");
- // }
- //}
- // MONO BUG - have no difinition for RegisterRequiresViewStateEncryption
- //[Test]
- //public void ViewStateEncryptionModeTest ()
- //{
- // Page p = new Page ();
- // Assert.AreEqual (ViewStateEncryptionMode.Auto, p.ViewStateEncryptionMode, "ViewStateEncryptionMode#1");
- // p.ViewStateEncryptionMode = ViewStateEncryptionMode.Never;
- // Assert.AreEqual (ViewStateEncryptionMode.Never, p.ViewStateEncryptionMode, "ViewStateEncryptionMode#2");
- //}
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void GetDataItem_Exception ()
- {
- Page p = new Page ();
- p.GetDataItem ();
- }
- [TestFixtureTearDown]
- public void TearDown ()
- {
- WebTest.Unload ();
- }
- #region help_classes
- class Customresult : IAsyncResult
- {
- #region IAsyncResult Members
- public object AsyncState
- {
- get { throw new Exception ("The method or operation is not implemented."); }
- }
- public WaitHandle AsyncWaitHandle
- {
- get { throw new Exception ("The method or operation is not implemented."); }
- }
- public bool CompletedSynchronously
- {
- get { return true; }
- }
- public bool IsCompleted
- {
- get { throw new Exception ("The method or operation is not implemented."); }
- }
- #endregion
- }
- #endregion
- #endif
- }
- }
|