| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- //
- // ChtmlTextWriterTest.cs: Unit tests for System.Web.UI.ChtmlTextWriter
- //
- // Author:
- // Cesar Lopez Nataren <[email protected]>
- //
- // Copyright (C) 2006 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.
- //
- #if NET_2_0
- using System;
- using System.IO;
- using System.Web.UI;
- using NUnit.Framework;
- using System.Collections;
- namespace MonoTests.System.Web.UI {
- public class ChtmlTextWriterTester : ChtmlTextWriter {
- public ChtmlTextWriterTester (TextWriter writer)
- : this (writer, DefaultTabString)
- {
- }
- public ChtmlTextWriterTester (TextWriter writer, string tabString)
- : base (writer, tabString)
- {
- }
- public bool IsRecognizedAttribute (string elementName, string attributeName)
- {
- Hashtable elem_attrs = (Hashtable) RecognizedAttributes [elementName];
- if (elem_attrs == null)
- return false;
- return elem_attrs [attributeName] != null;
- }
- public string PublicGetAttributeName (HtmlTextWriterAttribute attrKey)
- {
- return GetAttributeName (attrKey);
- }
- public bool PublicOnAttributeRender (string name, string value, HtmlTextWriterAttribute attr)
- {
- return OnAttributeRender (name, value, attr);
- }
- public bool PublicOnStyleAttributeRender (string name, string value, HtmlTextWriterStyle key)
- {
- return OnStyleAttributeRender (name, value, key);
- }
- public bool PublicOnTagRender (string name, HtmlTextWriterTag tag)
- {
- return OnTagRender (name, tag);
- }
- public Hashtable PublicGlobalSuppressedAttributes {
- get { return GlobalSuppressedAttributes; }
- }
- public Hashtable PublicSuppressedAttributes {
- get { return SuppressedAttributes; }
- }
- }
- [TestFixture]
- public class ChtmlTextWriterTest {
- ChtmlTextWriterTester chtml;
- StringWriter writer;
- string absent_element = "absent-elem";
- string absent_attr = "absent-attr";
- [SetUp]
- public void SetupTests ()
- {
- writer = new StringWriter ();
- chtml = new ChtmlTextWriterTester (writer);
- }
- [Test]
- public void AddRecognizedAttributeTest ()
- {
- chtml.AddRecognizedAttribute (absent_element, absent_attr);
- Assertion.AssertEquals ("#A01", true, chtml.IsRecognizedAttribute (absent_element, absent_attr));
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void AddRecognizedAttribute2 ()
- {
- AddRecognizedAttributeTest ();
- AddRecognizedAttributeTest ();
- }
- [Test]
- public void RemoveRecognizedAttributeTest ()
- {
- AddRecognizedAttributeTest ();
- chtml.RemoveRecognizedAttribute (absent_element, absent_attr);
- Assertion.AssertEquals ("#B01", false, chtml.IsRecognizedAttribute (absent_element, absent_attr));
- string version_two = "v2";
- chtml.RemoveRecognizedAttribute (absent_element + version_two, absent_attr + version_two);
- }
- [Test]
- public void WriteBreakTest ()
- {
- string br = "<br>";
- chtml.WriteBreak ();
- Assertion.AssertEquals ("#C01", true, br == writer.ToString ());
- }
- [Test]
- public void WriteEncodedTest ()
- {
- string encoded_text = "<custID> & <invoice#>";
- string unencoded_text = "<custID> & <invoice#>";
- chtml.WriteEncodedText (encoded_text);
- Assertion.AssertEquals ("#D01", true, unencoded_text == writer.ToString ());
- }
- [Test]
- public void OnAttributeRenderTest ()
- {
- HtmlTextWriterAttribute [] enum_values = (HtmlTextWriterAttribute []) Enum.GetValues (typeof (HtmlTextWriterAttribute));
- int i = 0;
- foreach (HtmlTextWriterAttribute attr in enum_values) {
- try {
- chtml.PublicOnAttributeRender (chtml.PublicGetAttributeName (attr), "accesskey", attr);
- } catch (ArgumentNullException e) {
- i++;
- }
- }
- Assertion.AssertEquals ("#E01", enum_values.Length, i);
- }
- [Test]
- public void OnStyleAttributeRenderTest ()
- {
- bool expected;
- int i = 0;
- foreach (HtmlTextWriterStyle tag in Enum.GetValues (typeof (HtmlTextWriterStyle))) {
- expected = (tag == HtmlTextWriterStyle.Display);
- Assertion.AssertEquals ("#F0" + i++, expected, chtml.PublicOnStyleAttributeRender ("foo", "foo", tag));
- }
- }
- [Test]
- public void OnTagRenderTest ()
- {
- int i = 0;
- bool expected;
- foreach (HtmlTextWriterTag tag in Enum.GetValues (typeof (HtmlTextWriterTag))) {
- expected = (tag != HtmlTextWriterTag.Span);
- Assertion.AssertEquals ("#G0" + i++, expected, chtml.PublicOnTagRender ("foo", tag));
- }
- }
- }
- }
- #endif
|