HtmlInputCheckBoxTest.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. //
  2. // HtmlInputCheckBoxTest.cs
  3. // - Unit tests for System.Web.UI.HtmlControls.HtmlInputCheckBox
  4. //
  5. // Author:
  6. // Dick Porter <[email protected]>
  7. //
  8. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  9. //
  10. // Permission is hereby granted, free of charge, to any person obtaining
  11. // a copy of this software and associated documentation files (the
  12. // "Software"), to deal in the Software without restriction, including
  13. // without limitation the rights to use, copy, modify, merge, publish,
  14. // distribute, sublicense, and/or sell copies of the Software, and to
  15. // permit persons to whom the Software is furnished to do so, subject to
  16. // the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. //
  29. using System;
  30. using System.IO;
  31. using System.Web.UI;
  32. using System.Web.UI.HtmlControls;
  33. using NUnit.Framework;
  34. namespace MonoTests.System.Web.UI.HtmlControls {
  35. public class TestHtmlInputCheckBox : HtmlInputCheckBox {
  36. public string Render ()
  37. {
  38. HtmlTextWriter writer = new HtmlTextWriter (new StringWriter ());
  39. base.Render (writer);
  40. return writer.InnerWriter.ToString ();
  41. }
  42. }
  43. [TestFixture]
  44. public class HtmlInputCheckBoxTest {
  45. [Test]
  46. public void DefaultProperties ()
  47. {
  48. HtmlInputCheckBox c = new HtmlInputCheckBox ();
  49. Assert.AreEqual (1, c.Attributes.Count, "Attributes.Count");
  50. Assert.IsFalse (c.Checked, "Checked");
  51. Assert.AreEqual (1, c.Attributes.Count, "Attributes.Count after");
  52. }
  53. [Test]
  54. public void NullProperties ()
  55. {
  56. HtmlInputCheckBox c = new HtmlInputCheckBox ();
  57. Assert.AreEqual (1, c.Attributes.Count, "Attributes.Count");
  58. c.Checked = true;
  59. Assert.IsTrue (c.Checked, "Checked");
  60. Assert.AreEqual (2, c.Attributes.Count, "Attributes.Count after");
  61. }
  62. [Test]
  63. public void CleanProperties ()
  64. {
  65. HtmlInputCheckBox c = new HtmlInputCheckBox ();
  66. c.Checked = true;
  67. Assert.AreEqual (2, c.Attributes.Count, "Attributes.Count");
  68. c.Checked = false;
  69. Assert.AreEqual (1, c.Attributes.Count, "Attributes.Count after");
  70. }
  71. [Test]
  72. public void Render ()
  73. {
  74. TestHtmlInputCheckBox c = new TestHtmlInputCheckBox ();
  75. c.ID = "*1*";
  76. string s = c.Render ();
  77. Assert.IsTrue (s.IndexOf (" type=\"checkbox\"") > 0, "type");
  78. c.Checked = true;
  79. s = c.Render ();
  80. #if NET_2_0
  81. Assert.AreEqual ("<input name=\"*1*\" type=\"checkbox\" id=\"*1*\" checked=\"checked\" />", s);
  82. #else
  83. Assert.AreEqual ("<input name=\"*1*\" id=\"*1*\" type=\"checkbox\" checked=\"checked\" />", s);
  84. #endif
  85. }
  86. }
  87. }